From 0a107dfd1a53fc00aa34b001fcb2e7ce21759f35 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 7 Mar 2015 23:55:08 +0000 Subject: [PATCH 0001/1381] Add package scanner --- package_scanner.nim | 101 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 package_scanner.nim diff --git a/package_scanner.nim b/package_scanner.nim new file mode 100644 index 0000000..8f9bc3f --- /dev/null +++ b/package_scanner.nim @@ -0,0 +1,101 @@ + +# A very simple Nim package scanner. +# +# Scan the package list from: +# https://github.com/nim-lang/packages/blob/master/packages.json +# +# Check the packages for: +# * Missing/unknown license +# * Missing description +# * Missing name +# * Missing/unknown method +# * Missing/unreachable repository +# +# Usage: nim c -d:ssl -r package_scanner.nim +# +# Copyright 2015 Federico Ceratto +# Released under GPLv3 License, see /usr/share/common-licenses/GPL-3 + +import httpclient +import net +import json + +const + PKG_LIST_URL = "https://raw.githubusercontent.com/nim-lang/packages/master/packages.json" + + LICENSES = @[ + "Allegro 4 Giftware", + "BSD", + "BSD3", + "CC0", + "GPL", + "GPLv2", + "GPLv3", + "LGPLv2", + "LGPLv3", + "MIT", + "MS-PL", + "WTFPL", + "libpng", + "zlib" + ] + + VCS_TYPES = @["git", "hg"] + +proc check(): int = + var + name: string + url: string + + + echo "" + let + pkg_list = parseJson(getContent(PKG_LIST_URL)) + + for pdata in pkg_list: + if not pdata.hasKey("name"): + echo "E: missing package name" + result.inc() + continue + + name = pdata["name"].str + if not pdata.hasKey("method"): + echo "E: ", name, "has no method" + result.inc() + + elif not (pdata["method"].str in VCS_TYPES): + echo "E: ", name, "has an unknown method: ", pdata["method"].str + result.inc() + + if not pdata.hasKey("license"): + echo "E: ", name, "has no license" + result.inc() + elif not (pdata["license"].str in LICENSES): + echo "W: ", name, "has an unexpected license: ", pdata["license"] + + if not pdata.hasKey("description"): + echo "E: ", name, "has no description" + result.inc() + + if not pdata.hasKey("web"): + echo "E: ", name, "has no URL" + result.inc() + continue + + for pdata in pkg_list: + if pdata.hasKey("name") and pdata.hasKey("web"): + name = pdata["name"].str + url = pdata["web"].str + try: + discard getContent(url, timeout=3000) + + except HttpRequestError, TimeoutError, AssertionError: + echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() + result.inc() + + echo "Error count: ", result + return + +when isMainModule: + quit(check()) + From da041b8c609d9d75f81e385896b42f2fa24143a5 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 10 Mar 2015 17:19:37 +0000 Subject: [PATCH 0002/1381] Add .travis.yml --- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..944e760 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ + +os: + - linux + +language: c + +env: + - BRANCH="travis" + - BRANCH="devel" + +install: + - git clone -b $BRANCH git://github.com/Araq/Nim.git; cd Nim; git clone -b $BRANCH --depth 1 git://github.com/nim-lang/csources; cd csources && sh build.sh; cd ..; bin/nim c koch; ./koch boot -d:release; cd .. + +before_script: + - set -e + - set -x + - export PATH=`pwd`/Nim/bin:$PATH + +script: + - nim c -d:ssl -r package_scanner.nim + +notifications: + email: false # noisy From bd63ce70cbc4e1b3056a191f5f501bcf85e072aa Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Sat, 14 Mar 2015 14:04:06 -0400 Subject: [PATCH 0003/1381] No one has complained might as well remove it --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index f4103af..d8902d1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -***Due to a mistake on my part (@flaviut), your branches may be out of date. Simply rebase on top of this repo to fix that. Sorry for any inconvenience.*** - # Nim packages This is a central listing of all packages for From e44088f6873b6871085f46fbcace7c6758421410 Mon Sep 17 00:00:00 2001 From: Gerke Max Preussner Date: Mon, 16 Mar 2015 10:10:01 -0400 Subject: [PATCH 0004/1381] Added io-myo. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 4a31aaf..f9ea377 100644 --- a/packages.json +++ b/packages.json @@ -1299,5 +1299,14 @@ "description": "Modules providing information about the OS.", "license": "MIT", "web": "https://github.com/nim-lang/osinfo" + }, + { + "name": "io-myo", + "url": "git://github.com/nimious/io-myo.git", + "method": "git", + "tags": ["binding", "myo", "thalmic", "armband", "gesture"], + "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", + "license": "MIT", + "web": "https://github.com/nimious/io-myo" } ] From acf0520e5ece9882f8f2eecaa4bb6f82f3c73164 Mon Sep 17 00:00:00 2001 From: Gerke Max Preussner Date: Tue, 17 Mar 2015 00:26:17 -0400 Subject: [PATCH 0005/1381] Added io-oculus. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index f9ea377..8e2a9c0 100644 --- a/packages.json +++ b/packages.json @@ -1308,5 +1308,14 @@ "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", "license": "MIT", "web": "https://github.com/nimious/io-myo" + }, + { + "name": "io-oculus", + "url": "git://github.com/nimious/io-oculus.git", + "method": "git", + "tags": ["binding", "oculus", "rift", "vr", "libovr", "ovr", "dk1", "dk2", "gearvr"], + "description": "Bindings for the Oculus VR SDK.", + "license": "MIT", + "web": "https://github.com/nimious/io-oculus" } ] From 3bca9f8f5086f3cd83fff039bc775c31246b0c41 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 2 Apr 2015 15:52:24 +0300 Subject: [PATCH 0006/1381] Added closure_compiler. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 8e2a9c0..6d63721 100644 --- a/packages.json +++ b/packages.json @@ -1317,5 +1317,14 @@ "description": "Bindings for the Oculus VR SDK.", "license": "MIT", "web": "https://github.com/nimious/io-oculus" + }, + { + "name": "closure_compiler", + "url": "git://github.com/yglukhov/closure_compiler.git", + "method": "git", + "tags": ["binding", "closure", "compiler", "javascript"], + "description": "Bindings for Closure Compiler web API.", + "license": "MIT", + "web": "https://github.com/yglukhov/closure_compiler" } ] From 43277dcf5afb51f885759437de962aa7c9434119 Mon Sep 17 00:00:00 2001 From: gmpreussner Date: Sat, 11 Apr 2015 10:34:45 -0400 Subject: [PATCH 0007/1381] Added io-serialport. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 6d63721..2f20712 100644 --- a/packages.json +++ b/packages.json @@ -1326,5 +1326,14 @@ "description": "Bindings for Closure Compiler web API.", "license": "MIT", "web": "https://github.com/yglukhov/closure_compiler" + }, + { + "name": "io-serialport", + "url": "git://github.com/nimious/io-serialport.git", + "method": "git", + "tags": ["binding", "libserialport", "serial", "communication"], + "description": "Bindings for libserialport, the cross-platform serial communication library.", + "license": "MIT", + "web": "https://github.com/nimious/io-serialport" } ] From c8ded3d2cf148783e187cda749d8afabe8168493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Mar=C3=B8?= Date: Sun, 12 Apr 2015 16:14:58 +0200 Subject: [PATCH 0008/1381] Added beanstalkd --- packages.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages.json b/packages.json index 6d63721..b48b14d 100644 --- a/packages.json +++ b/packages.json @@ -1326,5 +1326,15 @@ "description": "Bindings for Closure Compiler web API.", "license": "MIT", "web": "https://github.com/yglukhov/closure_compiler" + }, + { + "name": "beanstalkd", + "url": "git@github.com:tormaroe/beanstalkd.nim.git", + "method": "git", + "tags": ["queue", "messaging"], + "description": "A beanstalkd work queue client library.", + "license": "MIT", + "web": "https://github.com/tormaroe/beanstalkd.nim" } + ] From a25431247b56f9ee2ba713a86955943e8a7a664a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Mar=C3=B8?= Date: Sun, 12 Apr 2015 16:21:31 +0200 Subject: [PATCH 0009/1381] Added library tag --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b48b14d..d279b0f 100644 --- a/packages.json +++ b/packages.json @@ -1331,7 +1331,7 @@ "name": "beanstalkd", "url": "git@github.com:tormaroe/beanstalkd.nim.git", "method": "git", - "tags": ["queue", "messaging"], + "tags": ["library", "queue", "messaging"], "description": "A beanstalkd work queue client library.", "license": "MIT", "web": "https://github.com/tormaroe/beanstalkd.nim" From 51a802cacda68f55e390cfe2afa1d4c4aab32ab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Mar=C3=B8?= Date: Sun, 12 Apr 2015 18:59:47 +0200 Subject: [PATCH 0010/1381] Fixed git url --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d279b0f..7a314e3 100644 --- a/packages.json +++ b/packages.json @@ -1329,7 +1329,7 @@ }, { "name": "beanstalkd", - "url": "git@github.com:tormaroe/beanstalkd.nim.git", + "url": "git://github.com/tormaroe/beanstalkd.nim.git", "method": "git", "tags": ["library", "queue", "messaging"], "description": "A beanstalkd work queue client library.", From f2d6e994d8f93dc2ffe5dc7773b8b6b2477fb3e3 Mon Sep 17 00:00:00 2001 From: Rob Speer Date: Thu, 23 Apr 2015 11:45:01 -0400 Subject: [PATCH 0011/1381] add rspeer/wiki2text --- packages.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2467a73..32fbd62 100644 --- a/packages.json +++ b/packages.json @@ -1344,6 +1344,14 @@ "description": "A beanstalkd work queue client library.", "license": "MIT", "web": "https://github.com/tormaroe/beanstalkd.nim" + }, + { + "name": "wiki2text", + "url": "git://github.com/rspeer/wiki2text.git", + "method": "git", + "tags": ["nlp", "wiki", "xml", "text"], + "description": "Quickly extracts natural-language text from a MediaWiki XML file.", + "license": "MIT", + "web": "https://github.com/rspeer/wiki2text" } - ] From 189ea3b3f8d6f9808d9336f9620cbca111aafb02 Mon Sep 17 00:00:00 2001 From: Philip Wernersbach Date: Mon, 27 Apr 2015 17:19:30 -0400 Subject: [PATCH 0012/1381] Add qt5_qtsql. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 32fbd62..4f5c294 100644 --- a/packages.json +++ b/packages.json @@ -1353,5 +1353,14 @@ "description": "Quickly extracts natural-language text from a MediaWiki XML file.", "license": "MIT", "web": "https://github.com/rspeer/wiki2text" + }, + { + "name": "qt5_qtsql", + "url": "https://github.com/philip-wernersbach/nim-qt5_qtsql.git", + "method": "git", + "tags": ["library", "wrapper", "database", "qt", "qt5", "qtsql", "sqlite", "postgres", "mysql"], + "description": "Binding for Qt 5's Qt SQL library that integrates with the features of the Nim language. Uses one API for multiple database engines.", + "license": "MIT", + "web": "https://github.com/philip-wernersbach/nim-qt5_qtsql" } ] From 53b84d9774abb9c5508821d639e2d475719fdeb7 Mon Sep 17 00:00:00 2001 From: Philip Wernersbach Date: Mon, 27 Apr 2015 17:22:12 -0400 Subject: [PATCH 0013/1381] Add orient. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 4f5c294..4b1cb33 100644 --- a/packages.json +++ b/packages.json @@ -1362,5 +1362,14 @@ "description": "Binding for Qt 5's Qt SQL library that integrates with the features of the Nim language. Uses one API for multiple database engines.", "license": "MIT", "web": "https://github.com/philip-wernersbach/nim-qt5_qtsql" + }, + { + "name": "orient", + "url": "https://github.com/philip-wernersbach/nim-orient", + "method": "git", + "tags": ["library", "wrapper", "database", "orientdb", "pure"], + "description": "OrientDB driver written in pure Nim, uses the OrientDB 2.0 Binary Protocol with Binary Serialization.", + "license": "MPL", + "web": "https://github.com/philip-wernersbach/nim-orient" } ] From 6967f39beac803293d292738e49a0cad0b02dc6c Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Wed, 29 Apr 2015 16:47:50 +0100 Subject: [PATCH 0014/1381] Add syslog module --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 4b1cb33..a050071 100644 --- a/packages.json +++ b/packages.json @@ -1371,5 +1371,14 @@ "description": "OrientDB driver written in pure Nim, uses the OrientDB 2.0 Binary Protocol with Binary Serialization.", "license": "MPL", "web": "https://github.com/philip-wernersbach/nim-orient" + }, + { + "name": "syslog", + "url": "https://github.com/FedericoCeratto/nim-syslog", + "method": "git", + "tags": ["library", "pure"], + "description": "Syslog module.", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-syslog" } ] From d4b93717b24522f88076da4df8fdc0fbb1730f9c Mon Sep 17 00:00:00 2001 From: def Date: Thu, 30 Apr 2015 17:38:38 +0200 Subject: [PATCH 0015/1381] Add NimES --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index a050071..53cee46 100644 --- a/packages.json +++ b/packages.json @@ -1380,5 +1380,14 @@ "description": "Syslog module.", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-syslog" + }, + { + "name": "nimes", + "url": "https://github.com/def-/nimes", + "method": "git", + "tags": ["emulator", "nes", "game", "sdl", "javascript"], + "description": "NES emulator using SDL2, also compiles to JavaScript with emscripten.", + "license": "MPL", + "web": "https://github.com/def-/nimes" } ] From c3af135f6c58a041c905eb5917bb2b121980db46 Mon Sep 17 00:00:00 2001 From: def Date: Mon, 4 May 2015 05:16:02 +0200 Subject: [PATCH 0016/1381] Add syscall --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 53cee46..43d0748 100644 --- a/packages.json +++ b/packages.json @@ -1389,5 +1389,14 @@ "description": "NES emulator using SDL2, also compiles to JavaScript with emscripten.", "license": "MPL", "web": "https://github.com/def-/nimes" + }, + { + "name": "syscall", + "url": "https://github.com/def-/nim-syscall", + "method": "git", + "tags": ["library"], + "description": "Raw system calls for Nim", + "license": "MPL", + "web": "https://github.com/def-/nim-syscall" } ] From 0e9e1d94fb9eb31701e62c93afc54fc3dc55f2c4 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Tue, 5 May 2015 22:54:30 +0300 Subject: [PATCH 0017/1381] Update packages.json --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 43d0748..c6b7ef5 100644 --- a/packages.json +++ b/packages.json @@ -1398,5 +1398,14 @@ "description": "Raw system calls for Nim", "license": "MPL", "web": "https://github.com/def-/nim-syscall" + }, + { + "name": "jnim", + "url": "https://github.com/yglukhov/jnim", + "method": "git", + "tags": ["library", "java", "jvm", "bridge", "bindings"], + "description": "Nim - Java bridge", + "license": "MIT", + "web": "https://github.com/yglukhov/jnim" } ] From 711b8f22911ee6ee092a1d899c35a041a924bd40 Mon Sep 17 00:00:00 2001 From: andri lim Date: Wed, 6 May 2015 17:39:38 +0700 Subject: [PATCH 0018/1381] add nimPDF package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index c6b7ef5..709b90a 100644 --- a/packages.json +++ b/packages.json @@ -1407,5 +1407,14 @@ "description": "Nim - Java bridge", "license": "MIT", "web": "https://github.com/yglukhov/jnim" + }, + { + "name": "nimPDF", + "url": "https://github.com/jangko/nimpdf", + "method": "git", + "tags": ["library", "PDF", "document"], + "description": "library for generating PDF files", + "license": "MIT", + "web": "https://github.com/jangko/nimpdf" } ] From 4242aa03503d01fc8e3a4d9d71c8a0edf3a8bc7f Mon Sep 17 00:00:00 2001 From: Graeme Yeates Date: Wed, 6 May 2015 11:03:14 -0400 Subject: [PATCH 0019/1381] Add RingBuffer package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index c6b7ef5..3900443 100644 --- a/packages.json +++ b/packages.json @@ -1228,6 +1228,15 @@ "license": "MIT", "web": "https://github.com/achesak/nim-pythonpathlib" }, + { + "name": "RingBuffer", + "url": "git@github.com:megawac/RingBuffer.nim.git", + "method": "git", + "tags": ["sequence", "seq", "circular", "ring", "buffer"], + "description": "Circular buffer implementation", + "license": "MIT", + "web": "https://github.com/megawac/RingBuffer.nim" + }, { "name": "nimrat", "url": "git://github.com/apense/nimrat", From c2cf33f97a7f52dc03796e6a0d1a57f3ef334647 Mon Sep 17 00:00:00 2001 From: Senketsu Date: Tue, 12 May 2015 15:39:49 +0200 Subject: [PATCH 0020/1381] Update packages.json --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 0ac47a8..5a771bf 100644 --- a/packages.json +++ b/packages.json @@ -1426,4 +1426,13 @@ "license": "MIT", "web": "https://github.com/jangko/nimpdf" } + { + "name": "nshout", + "url": "https://github.com/Senketsu/nshout", + "method": "git", + "tags": ["library", "shouter", "libshout","wrapper","bindings","audio","web"], + "description": "Nim bindings for libshout", + "license": "MIT", + "web": "https://github.com/Senketsu/nshout" + } ] From d4e4290d5c5d96cccde4f523636d46d0457660b6 Mon Sep 17 00:00:00 2001 From: Senketsu Date: Tue, 12 May 2015 16:59:23 +0200 Subject: [PATCH 0021/1381] Comma fix --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 5a771bf..77af121 100644 --- a/packages.json +++ b/packages.json @@ -1425,7 +1425,7 @@ "description": "library for generating PDF files", "license": "MIT", "web": "https://github.com/jangko/nimpdf" - } + }, { "name": "nshout", "url": "https://github.com/Senketsu/nshout", From 199717516b51da1e0c52f44cd7ced52a2df30acc Mon Sep 17 00:00:00 2001 From: Federico Omoto Date: Tue, 12 May 2015 13:45:10 -0300 Subject: [PATCH 0022/1381] Add LLVM package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 0ac47a8..fda4386 100644 --- a/packages.json +++ b/packages.json @@ -1425,5 +1425,14 @@ "description": "library for generating PDF files", "license": "MIT", "web": "https://github.com/jangko/nimpdf" + }, + { + "name": "LLVM", + "url": "https://github.com/FedeOmoto/llvm", + "method": "git", + "tags": ["LLVM", "bindings", "wrapper"], + "description": "LLVM bindings for the Nim language.", + "license": "MIT", + "web": "http://fedeomoto.github.io/llvm/" } ] From 4c092a6eb3628dd611d05fa167bfcaf89ae7cf14 Mon Sep 17 00:00:00 2001 From: Willy Date: Thu, 14 May 2015 08:42:09 -0400 Subject: [PATCH 0023/1381] Added library nuuid Added a Nim source only UUID generator library --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index de832ad..08dca02 100644 --- a/packages.json +++ b/packages.json @@ -1443,5 +1443,14 @@ "description": "Nim bindings for libshout", "license": "MIT", "web": "https://github.com/Senketsu/nshout" + }, + { + "name": "nuuid", + "url": "https://github.com/wheineman/nim-only-uuid", + "method": "git", + "tags": ["library", "uuid", "guid"], + "description": "A Nim source only UUID generator", + "license": "MIT", + "web": "https://github.com/wheineman/nim-only-uuid" } ] From bb637eb4f10c07cc3de26b748aa1d448421da9d6 Mon Sep 17 00:00:00 2001 From: Maurizio Tomasi Date: Thu, 14 May 2015 21:56:40 +0200 Subject: [PATCH 0024/1381] New package fftw3 --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 08dca02..ee58121 100644 --- a/packages.json +++ b/packages.json @@ -1452,5 +1452,14 @@ "description": "A Nim source only UUID generator", "license": "MIT", "web": "https://github.com/wheineman/nim-only-uuid" + }, + { + "name": "fftw3", + "url": "https://github.com/ziotom78/nimfftw3", + "method": "git", + "tags": ["library", "nim", "math", "fft"], + "description": "Bindings to the FFTW library", + "license": "MIT", + "web": "https://github.com/ziotom78/nimfftw3" } ] From dc8aea4fb3c6af913e5e1c6ff7cb411cfab3dac0 Mon Sep 17 00:00:00 2001 From: Willy Date: Fri, 15 May 2015 16:38:02 -0400 Subject: [PATCH 0025/1381] Added nrpl to packages.json --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index ee58121..e005365 100644 --- a/packages.json +++ b/packages.json @@ -1461,5 +1461,14 @@ "description": "Bindings to the FFTW library", "license": "MIT", "web": "https://github.com/ziotom78/nimfftw3" + }, + { + "name": "nrpl", + "url": "https://github.com/wheineman/nrpl", + "method": "git", + "tags": ["REPL", "application"], + "description": "A rudimentary Nim REPL", + "license": "MIT", + "web": "https://github.com/wheineman/nrpl" } ] From d94815c776ebb7baaa8a53b693499ea2dc53d759 Mon Sep 17 00:00:00 2001 From: saratchandra92 Date: Sun, 17 May 2015 16:54:04 +0530 Subject: [PATCH 0026/1381] Update packages.json --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index e005365..01ee9b6 100644 --- a/packages.json +++ b/packages.json @@ -1470,5 +1470,14 @@ "description": "A rudimentary Nim REPL", "license": "MIT", "web": "https://github.com/wheineman/nrpl" + }, + { + "name": "nim-geocoding", + "url": "https://github.com/saratchandra92/nim-geocoding", + "method": "git" + "tags": ["library", "geocoding", "maps"] + "decription": "A simple library for Google Maps Geocoding API", + "license": "MIT" + "web": "https://github.com/saratchandra92/nim-geocoding" } ] From c5330811e47e2c2b73a6f0e928ac3f314e4797cb Mon Sep 17 00:00:00 2001 From: saratchandra92 Date: Sun, 17 May 2015 16:56:28 +0530 Subject: [PATCH 0027/1381] Update packages.json --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 01ee9b6..0d892b2 100644 --- a/packages.json +++ b/packages.json @@ -1474,10 +1474,10 @@ { "name": "nim-geocoding", "url": "https://github.com/saratchandra92/nim-geocoding", - "method": "git" - "tags": ["library", "geocoding", "maps"] + "method": "git", + "tags": ["library", "geocoding", "maps"], "decription": "A simple library for Google Maps Geocoding API", - "license": "MIT" + "license": "MIT", "web": "https://github.com/saratchandra92/nim-geocoding" } ] From 296dac7a7d3b894be5bb3f9bf355a842d1cdeb93 Mon Sep 17 00:00:00 2001 From: saratchandra92 Date: Sun, 17 May 2015 17:40:50 +0530 Subject: [PATCH 0028/1381] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d8902d1..fcde753 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ object should have the following fields (unless the field is marked as optional): * name - The name of the package, this should match the name in the package's - babel file. + nimble file. * url - The url from which to retrieve the package. * method - The method that should be used to retrieve this package. Currently "git" and "hg" is supported. From 320296ed12a03bb80acbdac953bcf31fc781b4d9 Mon Sep 17 00:00:00 2001 From: gmpreussner Date: Sun, 17 May 2015 14:01:11 -0400 Subject: [PATCH 0029/1381] Added io-egl and io-gles. --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 0d892b2..18e66a3 100644 --- a/packages.json +++ b/packages.json @@ -1479,5 +1479,23 @@ "decription": "A simple library for Google Maps Geocoding API", "license": "MIT", "web": "https://github.com/saratchandra92/nim-geocoding" + }, + { + "name": "io-gles", + "url": "git://github.com/nimious/io-gles.git", + "method": "git", + "tags": ["binding", "khronos", "gles", "opengl es"], + "description": "Bindings for OpenGL ES, the embedded 3D graphics library.", + "license": "MIT", + "web": "https://github.com/nimious/io-gles" + }, + { + "name": "io-egl", + "url": "git://github.com/nimious/io-egl.git", + "method": "git", + "tags": ["binding", "khronos", "egl", "opengl", "opengl es", "openvg"], + "description": "Bindings for EGL, the native platform interface for rendering APIs.", + "license": "MIT", + "web": "https://github.com/nimious/io-egl" } ] From 70d7cbaaf55dfff0a781ae8787c7d61489676ee1 Mon Sep 17 00:00:00 2001 From: Grzegorz Adam Hankiewicz Date: Sun, 17 May 2015 20:02:07 +0200 Subject: [PATCH 0030/1381] Removes dead ouroboros package. --- packages.json | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/packages.json b/packages.json index 0d892b2..5b3e68b 100644 --- a/packages.json +++ b/packages.json @@ -397,16 +397,6 @@ "web": "https://github.com/micklat/NimBorg" }, - { - "name": "ouroboros", - "url": "git://github.com/gradha/nim-ouroboros/", - "method": "git", - "tags": ["library", "embedded data", "appended data", "alchemy"], - "description": "API to read appended files from your own binary", - "license": "MIT", - "web": "https://github.com/gradha/nim-ouroboros" - }, - { "name": "sha1", "url": "https://github.com/onionhammer/sha1", From 200f500d12d90c00fb1ab4b7abb46f65b921ed62 Mon Sep 17 00:00:00 2001 From: Sarat Chandra Date: Mon, 18 May 2015 13:25:49 +0530 Subject: [PATCH 0031/1381] Fixed a typo. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0d892b2..fd5e90b 100644 --- a/packages.json +++ b/packages.json @@ -1476,7 +1476,7 @@ "url": "https://github.com/saratchandra92/nim-geocoding", "method": "git", "tags": ["library", "geocoding", "maps"], - "decription": "A simple library for Google Maps Geocoding API", + "description": "A simple library for Google Maps Geocoding API", "license": "MIT", "web": "https://github.com/saratchandra92/nim-geocoding" } From 3b0c1291ae27d392ca1c4e1a582585ab01f82b5e Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 May 2015 20:40:46 +0100 Subject: [PATCH 0032/1381] Improved travis file and package scanner. --- .travis.yml | 11 +++++------ package_scanner.nim | 25 +++++++++++++------------ 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 944e760..09af11f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,14 @@ - os: - linux language: c -env: - - BRANCH="travis" - - BRANCH="devel" - install: - - git clone -b $BRANCH git://github.com/Araq/Nim.git; cd Nim; git clone -b $BRANCH --depth 1 git://github.com/nim-lang/csources; cd csources && sh build.sh; cd ..; bin/nim c koch; ./koch boot -d:release; cd .. + - | + wget http://nim-lang.org/download/nim-0.11.2.tar.xz + tar xf nim-0.11.2.tar.xz + cd nim-0.11.2 + sh build.sh before_script: - set -e diff --git a/package_scanner.nim b/package_scanner.nim index 8f9bc3f..9977f2e 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -1,8 +1,7 @@ # A very simple Nim package scanner. # -# Scan the package list from: -# https://github.com/nim-lang/packages/blob/master/packages.json +# Scans the package list from this repository. # # Check the packages for: # * Missing/unknown license @@ -19,9 +18,9 @@ import httpclient import net import json +import os const - PKG_LIST_URL = "https://raw.githubusercontent.com/nim-lang/packages/master/packages.json" LICENSES = @[ "Allegro 4 Giftware", @@ -50,7 +49,7 @@ proc check(): int = echo "" let - pkg_list = parseJson(getContent(PKG_LIST_URL)) + pkg_list = parseJson(readFile(getCurrentDir() / "packages.json")) for pdata in pkg_list: if not pdata.hasKey("name"): @@ -60,25 +59,25 @@ proc check(): int = name = pdata["name"].str if not pdata.hasKey("method"): - echo "E: ", name, "has no method" + echo "E: ", name, " has no method" result.inc() elif not (pdata["method"].str in VCS_TYPES): - echo "E: ", name, "has an unknown method: ", pdata["method"].str + echo "E: ", name, " has an unknown method: ", pdata["method"].str result.inc() if not pdata.hasKey("license"): - echo "E: ", name, "has no license" + echo "E: ", name, " has no license" result.inc() elif not (pdata["license"].str in LICENSES): - echo "W: ", name, "has an unexpected license: ", pdata["license"] + echo "W: ", name, " has an unexpected license: ", pdata["license"] if not pdata.hasKey("description"): - echo "E: ", name, "has no description" + echo "E: ", name, " has no description" result.inc() if not pdata.hasKey("web"): - echo "E: ", name, "has no URL" + echo "E: ", name, " has no URL" result.inc() continue @@ -87,11 +86,13 @@ proc check(): int = name = pdata["name"].str url = pdata["web"].str try: - discard getContent(url, timeout=3000) + discard getContent(url, timeout=400) - except HttpRequestError, TimeoutError, AssertionError: + except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() result.inc() + except AssertionError: + echo "W: ", name, ": httpclient failed ", url, " ", getCurrentExceptionMsg() echo "Error count: ", result return From 784490c6858057de096f2092b6c256a901452e18 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 May 2015 20:44:15 +0100 Subject: [PATCH 0033/1381] Fix PATH in travis file. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 09af11f..20476ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ install: before_script: - set -e - set -x - - export PATH=`pwd`/Nim/bin:$PATH + - export PATH=`pwd`/nim-0.11.2/bin:$PATH script: - nim c -d:ssl -r package_scanner.nim From f4bcaab089ca71679aaeff3b75292a9eaf14a7e0 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 May 2015 20:47:01 +0100 Subject: [PATCH 0034/1381] Fix PWD in travis file. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 20476ac..ac14ac4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ install: tar xf nim-0.11.2.tar.xz cd nim-0.11.2 sh build.sh + cd .. before_script: - set -e From f14f008be36ef39fcccf714d0c6426cb1405d1c4 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 May 2015 21:53:55 +0100 Subject: [PATCH 0035/1381] Add travis CI image to readme. Check URL not WEB in scanner. --- README.md | 4 ++-- package_scanner.nim | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fcde753..db4d91e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Nim packages +# Nim packages [![Build Status](https://travis-ci.org/nim-lang/packages.svg?branch=master)](https://travis-ci.org/nim-lang/packages) This is a central listing of all packages for [Nimble](https://github.com/nim-lang/nimble), a package manager for the @@ -11,7 +11,7 @@ To add your own package, fork this repository, edit [Packages.json](packages.json) is a simple array of objects. Each package object should have the following fields (unless the field is marked as optional): - + * name - The name of the package, this should match the name in the package's nimble file. * url - The url from which to retrieve the package. diff --git a/package_scanner.nim b/package_scanner.nim index 9977f2e..e2d22ac 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -76,7 +76,7 @@ proc check(): int = echo "E: ", name, " has no description" result.inc() - if not pdata.hasKey("web"): + if not pdata.hasKey("url"): echo "E: ", name, " has no URL" result.inc() continue From 3584ec634009296459e443a8f6d458428fe95bc7 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 May 2015 22:15:45 +0100 Subject: [PATCH 0036/1381] Increase timeout in package_scanner. --- package_scanner.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_scanner.nim b/package_scanner.nim index e2d22ac..e775e29 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -86,7 +86,7 @@ proc check(): int = name = pdata["name"].str url = pdata["web"].str try: - discard getContent(url, timeout=400) + discard getContent(url, timeout=1000) except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() From 936ce721383bd880c435e98029e98bdb8935d03b Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 May 2015 22:19:41 +0100 Subject: [PATCH 0037/1381] Fix links for optionals and tuples packages. --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 4abb9f6..0bfeb1f 100644 --- a/packages.json +++ b/packages.json @@ -1162,7 +1162,7 @@ "tags": ["library", "option", "optional", "maybe"], "description": "Option types", "license": "MIT", - "web": "http://www.vision.caltech.edu/~mmcgill/optionals.html" + "web": "https://github.com/MasonMcGill/optionals" }, { "name": "tuples", @@ -1171,7 +1171,7 @@ "tags": ["library", "tuple", "metaprogramming"], "description": "Tuple manipulation utilities", "license": "MIT", - "web": "http://www.vision.caltech.edu/~mmcgill/tuples.html" + "web": "https://github.com/MasonMcGill/optionals" }, { "name": "fuse", From a7d0818aedd400d7d7d483754ba0aecf959922f0 Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Tue, 19 May 2015 00:31:32 -0500 Subject: [PATCH 0038/1381] update nake's license --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0bfeb1f..47ac406 100644 --- a/packages.json +++ b/packages.json @@ -125,7 +125,7 @@ "method": "git", "tags": ["build", "automation", "sortof"], "description": "make-like for Nimrod. Describe your builds as tasks!", - "license": "DATWPL", + "license": "MIT", "web": "https://github.com/fowlmouth/nake" }, From 2cc75a54b6746bc1ce35c37db8a3160b248428a1 Mon Sep 17 00:00:00 2001 From: gmpreussner Date: Tue, 19 May 2015 20:22:37 -0400 Subject: [PATCH 0039/1381] Added io-sixense. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 47ac406..31e6a71 100644 --- a/packages.json +++ b/packages.json @@ -1487,5 +1487,14 @@ "description": "Bindings for EGL, the native platform interface for rendering APIs.", "license": "MIT", "web": "https://github.com/nimious/io-egl" + }, + { + "name": "io-sixense", + "url": "git://github.com/nimious/io-sixense.git", + "method": "git", + "tags": ["binding", "sixense", "razer hydra", "stem system", "vr"], + "description": "Bindings for the Sixense Core API.", + "license": "MIT", + "web": "https://github.com/nimious/io-sixense" } ] From 5a8555f75dd148bdf7694840383df4ee8485809c Mon Sep 17 00:00:00 2001 From: "Mahlon E. Smith" Date: Tue, 19 May 2015 18:45:19 -0700 Subject: [PATCH 0040/1381] Add the tnetstring library. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 47ac406..c95331c 100644 --- a/packages.json +++ b/packages.json @@ -1487,5 +1487,14 @@ "description": "Bindings for EGL, the native platform interface for rendering APIs.", "license": "MIT", "web": "https://github.com/nimious/io-egl" + }, + { + "name": "tnetstring", + "url": "https://mahlon@bitbucket.org/mahlon/nim-tnetstring", + "method": "hg", + "tags": ["tnetstring", "library", "serialization" ], + "description": "Parsing and serializing for the TNetstring format.", + "license": "MIT", + "web": "http://bitbucket.org/mahlon/nim-tnetstring" } ] From e664646be738cc41c032d47e1dea01e32cd61676 Mon Sep 17 00:00:00 2001 From: jangko Date: Thu, 21 May 2015 01:16:37 +0700 Subject: [PATCH 0041/1381] add msgpack4nim package --- packages.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages.json b/packages.json index 0f5fa5b..170a19d 100644 --- a/packages.json +++ b/packages.json @@ -1505,5 +1505,13 @@ "description": "Parsing and serializing for the TNetstring format.", "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-tnetstring" + }, + { + "name": "msgpack4nim", + "url": "https://github.com/jangko/msgpack4nim", + "method": "git", + "tags": ["msgpack", "library", "serialization", "deserialization"], + "license": "MIT", + "web": "https://github.com/jangko/msgpack4nim" } ] From 2ac1b44887267c837baf04ac7d8997bd2b0d72f9 Mon Sep 17 00:00:00 2001 From: jangko Date: Thu, 21 May 2015 01:18:07 +0700 Subject: [PATCH 0042/1381] add msgpack4nim package --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index 170a19d..cd80a7c 100644 --- a/packages.json +++ b/packages.json @@ -1511,6 +1511,7 @@ "url": "https://github.com/jangko/msgpack4nim", "method": "git", "tags": ["msgpack", "library", "serialization", "deserialization"], + "description": "Another MessagePack implementation written in pure nim", "license": "MIT", "web": "https://github.com/jangko/msgpack4nim" } From 63c16bb092db7ecf067545aebf0745811b2ead31 Mon Sep 17 00:00:00 2001 From: fenekku Date: Wed, 20 May 2015 21:27:47 -0400 Subject: [PATCH 0043/1381] referred to Nim in moustachu's description --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cd80a7c..c9dd7e0 100644 --- a/packages.json +++ b/packages.json @@ -1016,7 +1016,7 @@ "url": "https://github.com/fenekku/moustachu.git", "method": "git", "tags": ["web", "html", "template", "mustache"], - "description": "Mustache templating for Nimrod.", + "description": "Mustache templating for Nim.", "license": "MIT", "web": "https://github.com/fenekku/moustachu" }, From 93e7b101de83d0192638e8d237a895cff4fcb2c1 Mon Sep 17 00:00:00 2001 From: bluenote10 Date: Thu, 21 May 2015 15:40:05 +0200 Subject: [PATCH 0044/1381] Added nim-heap, nim-stringinterpolation --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index c9dd7e0..0e17685 100644 --- a/packages.json +++ b/packages.json @@ -1514,5 +1514,23 @@ "description": "Another MessagePack implementation written in pure nim", "license": "MIT", "web": "https://github.com/jangko/msgpack4nim" + }, + { + "name": "nim-heap", + "url": "https://github.com/bluenote10/nim-heap", + "method": "git", + "tags": ["heap", "priority queue"], + "description": "Simple binary heap implementation", + "license": "MIT", + "web": "https://github.com/bluenote10/nim-heap" + }, + { + "name": "nim-stringinterpolation", + "url": "https://github.com/bluenote10/nim-stringinterpolation", + "method": "git", + "tags": ["string formatting", "string interpolation"], + "description": "String interpolation with printf syntax", + "license": "MIT", + "web": "https://github.com/bluenote10/nim-stringinterpolation" } ] From 0cb47c2d4d74852578b64edf2fda84d32c4d856f Mon Sep 17 00:00:00 2001 From: fenekku Date: Thu, 21 May 2015 11:03:16 -0400 Subject: [PATCH 0045/1381] improved(?) package_scanner! --- package_scanner.nim | 77 ++++++++++++++++++++++++++++----------------- 1 file changed, 48 insertions(+), 29 deletions(-) diff --git a/package_scanner.nim b/package_scanner.nim index e775e29..c3312bf 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -4,11 +4,12 @@ # Scans the package list from this repository. # # Check the packages for: -# * Missing/unknown license -# * Missing description # * Missing name # * Missing/unknown method # * Missing/unreachable repository +# * Missing tags +# * Missing description +# * Missing/unknown license # # Usage: nim c -d:ssl -r package_scanner.nim # @@ -41,24 +42,44 @@ const VCS_TYPES = @["git", "hg"] +proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = + # The fetch is a lie! + # TODO: Make this check the actual repo url and check if there is a + # nimble file in it + result = true + var url: string + + if not urlJson.isNil: + url = urlJson.str + + try: + discard getContent(url, timeout=1000) + except HttpRequestError, TimeoutError: + echo "E: ", name, ": unable to fetch repository ", url, " ", + getCurrentExceptionMsg() + result = false + except AssertionError: + echo "W: ", name, ": httpclient failed ", url, " ", + getCurrentExceptionMsg() + + proc check(): int = var name: string - url: string - echo "" + let pkg_list = parseJson(readFile(getCurrentDir() / "packages.json")) for pdata in pkg_list: - if not pdata.hasKey("name"): + name = if pdata.hasKey("name"): pdata["name"].str else: nil + + if name.isNil: echo "E: missing package name" result.inc() - continue - name = pdata["name"].str - if not pdata.hasKey("method"): + elif not pdata.hasKey("method"): echo "E: ", name, " has no method" result.inc() @@ -66,36 +87,34 @@ proc check(): int = echo "E: ", name, " has an unknown method: ", pdata["method"].str result.inc() - if not pdata.hasKey("license"): - echo "E: ", name, " has no license" + elif not pdata.hasKey("url"): + echo "E: ", name, " has no URL" result.inc() - elif not (pdata["license"].str in LICENSES): - echo "W: ", name, " has an unexpected license: ", pdata["license"] - if not pdata.hasKey("description"): + elif not canFetchNimbleRepository(name, pdata["web"]): + result.inc() + + elif not pdata.hasKey("tags"): + echo "E: ", name, " has no tags" + result.inc() + + elif not pdata.hasKey("description"): echo "E: ", name, " has no description" result.inc() - if not pdata.hasKey("url"): - echo "E: ", name, " has no URL" + elif not pdata.hasKey("license"): + echo "E: ", name, " has no license" result.inc() - continue - for pdata in pkg_list: - if pdata.hasKey("name") and pdata.hasKey("web"): - name = pdata["name"].str - url = pdata["web"].str - try: - discard getContent(url, timeout=1000) + else: + # Other warnings should go here + if not (pdata["license"].str in LICENSES): + echo "W: ", name, " has an unexpected license: ", pdata["license"] - except HttpRequestError, TimeoutError: - echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() - result.inc() - except AssertionError: - echo "W: ", name, ": httpclient failed ", url, " ", getCurrentExceptionMsg() - echo "Error count: ", result - return + echo "" + echo "Problematic packages count: ", result + when isMainModule: quit(check()) From 8269a2d63c9869fac85109fd98eed1bb38aba8b7 Mon Sep 17 00:00:00 2001 From: James Date: Thu, 21 May 2015 19:13:09 -0700 Subject: [PATCH 0046/1381] Add delaunay package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 0e17685..a8777a8 100644 --- a/packages.json +++ b/packages.json @@ -1532,5 +1532,14 @@ "description": "String interpolation with printf syntax", "license": "MIT", "web": "https://github.com/bluenote10/nim-stringinterpolation" + }, + { + "name": "delaunay", + "url": "https://github.com/Nycto/DelaunayNim", + "method": "git", + "tags": ["delaunay", "library", "algorithms", "graph"], + "description": "2D Delaunay triangulations", + "license": "MIT", + "web": "https://github.com/Nycto/DelaunayNim" } ] From 1273f4c03d809d9209738351a4e131ef86a4ace2 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 22 May 2015 17:57:20 -0700 Subject: [PATCH 0047/1381] Add linenoise package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index a8777a8..869ac68 100644 --- a/packages.json +++ b/packages.json @@ -1541,5 +1541,14 @@ "description": "2D Delaunay triangulations", "license": "MIT", "web": "https://github.com/Nycto/DelaunayNim" + }, + { + "name": "linenoise", + "url": "https://github.com/fallingduck/linenoise-nim", + "method": "git", + "tags": ["linenoise", "library", "wrapper", "commandline"], + "description": "Wrapper for linenoise, a free, self-contained alternative to GNU readline.", + "license": "BSD", + "web": "https://github.com/fallingduck/linenoise-nim" } ] From 81d8d1a3277ce8d26cb14406bf60fc5254afaa01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Mon, 25 May 2015 03:22:01 +0700 Subject: [PATCH 0048/1381] add struct package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 869ac68..8be2216 100644 --- a/packages.json +++ b/packages.json @@ -1550,5 +1550,14 @@ "description": "Wrapper for linenoise, a free, self-contained alternative to GNU readline.", "license": "BSD", "web": "https://github.com/fallingduck/linenoise-nim" + }, + { + "name": "struct", + "url": "https://github.com/rgv151/struct.nim", + "method": "git", + "tags": ["struct", "library", "python", "pack", "unpack"], + "description": "Python-like 'struct' for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/struct.nim" } ] From 37a766409bf561ead819b0231c38ae44d733723e Mon Sep 17 00:00:00 2001 From: achesak Date: Mon, 25 May 2015 14:54:50 -0500 Subject: [PATCH 0049/1381] Added uri2. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 8be2216..f3df672 100644 --- a/packages.json +++ b/packages.json @@ -1559,5 +1559,14 @@ "description": "Python-like 'struct' for Nim", "license": "MIT", "web": "https://github.com/rgv151/struct.nim" + }, + { + "name": "uri2", + "url: "git://github.com/achesak/nim-uri2", + "method": "git", + "tags": ["uri", "url", "library"], + "description": "Nim module for better URI handling", + "license": "MIT", + "web": "https://github.com/achesak/nim-uri2" } ] From 4f21e9156df9de0a70cd3dfe28ae8031520d85fd Mon Sep 17 00:00:00 2001 From: achesak Date: Mon, 25 May 2015 14:55:42 -0500 Subject: [PATCH 0050/1381] Fixed typo. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index f3df672..b73354e 100644 --- a/packages.json +++ b/packages.json @@ -1562,7 +1562,7 @@ }, { "name": "uri2", - "url: "git://github.com/achesak/nim-uri2", + "url": "git://github.com/achesak/nim-uri2", "method": "git", "tags": ["uri", "url", "library"], "description": "Nim module for better URI handling", From 6fe480f0a2f78aa3d9d13e497047f9e9667501ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Wed, 27 May 2015 03:21:43 +0700 Subject: [PATCH 0051/1381] Add hmac package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index b73354e..a4181b1 100644 --- a/packages.json +++ b/packages.json @@ -1568,5 +1568,14 @@ "description": "Nim module for better URI handling", "license": "MIT", "web": "https://github.com/achesak/nim-uri2" + }, + { + "name": "hmac", + "url": "https://github.com/rgv151/hmac.nim", + "method": "git", + "tags": ["hmac", "authentication", "hash", "sha1", "md5"], + "description": "HMAC-SHA1 and HMAC-MD5 hashing in Nim ", + "license": "MIT", + "web": "https://github.com/rgv151/hmac.nim" } ] From ce6d567220c3a3aa34bd5d136d986e83eaf7730f Mon Sep 17 00:00:00 2001 From: "Mahlon E. Smith" Date: Tue, 26 May 2015 16:06:33 -0700 Subject: [PATCH 0052/1381] Add the mongrel2 nim module. --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b73354e..bc8f5c1 100644 --- a/packages.json +++ b/packages.json @@ -1568,5 +1568,14 @@ "description": "Nim module for better URI handling", "license": "MIT", "web": "https://github.com/achesak/nim-uri2" - } + }, + { + "name": "mongrel2", + "url": "https://mahlon@bitbucket.org/mahlon/nim-mongrel2", + "method": "hg", + "tags": ["mongrel2", "library", "www" ], + "description": "Handler framework for the Mongrel2 web server.", + "license": "MIT", + "web": "http://bitbucket.org/mahlon/nim-mongrel2" + }, ] From 86cabfb1a36c872ecf6f3f1fc196620f0b7998b6 Mon Sep 17 00:00:00 2001 From: apense Date: Wed, 27 May 2015 20:56:53 -0400 Subject: [PATCH 0053/1381] Added ShimSham to the list See https://github.com/apense/shimsham. At version 0.1.0-alpha --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index bc8f5c1..5e8ff0e 100644 --- a/packages.json +++ b/packages.json @@ -1578,4 +1578,13 @@ "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-mongrel2" }, + { + "name": "shimsham", + "url": "https://github.com/apense/shimsham", + "method": "git", + "tags": ["crypto", "hash", "hashing", "digest"], + "description": "Hashing/Digest collection in pure Nim", + "license": "MIT", + "web": "https://github.com/apense/shimsham" + }, ] From eac6b521264c15555897442c503e86ccfae80669 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 28 May 2015 11:55:13 +0100 Subject: [PATCH 0054/1381] Remove trailing comma --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bc8f5c1..19ced94 100644 --- a/packages.json +++ b/packages.json @@ -1577,5 +1577,5 @@ "description": "Handler framework for the Mongrel2 web server.", "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-mongrel2" - }, + } ] From ac7849cbf529feab4de147a069ad815c6862096c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Thu, 28 May 2015 19:02:13 +0700 Subject: [PATCH 0055/1381] add base32 package --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 1842032..adc9767 100644 --- a/packages.json +++ b/packages.json @@ -1574,7 +1574,7 @@ "url": "https://github.com/rgv151/hmac.nim", "method": "git", "tags": ["hmac", "authentication", "hash", "sha1", "md5"], - "description": "HMAC-SHA1 and HMAC-MD5 hashing in Nim ", + "description": "HMAC-SHA1 and HMAC-MD5 hashing in Nim", "license": "MIT", "web": "https://github.com/rgv151/hmac.nim" }, @@ -1596,5 +1596,14 @@ "description": "Hashing/Digest collection in pure Nim", "license": "MIT", "web": "https://github.com/apense/shimsham" + }, + { + "name": "base32", + "url": "https://github.com/rgv151/base32.nim", + "method": "git", + "tags": ["base32", "encode", "decode"], + "description": "Base32 library for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/base32.nim" } ] From 709270885325b24f602b683d632468b780040aed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Fri, 29 May 2015 02:45:58 +0700 Subject: [PATCH 0056/1381] add otp package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index adc9767..8b4d808 100644 --- a/packages.json +++ b/packages.json @@ -1605,5 +1605,14 @@ "description": "Base32 library for Nim", "license": "MIT", "web": "https://github.com/rgv151/base32.nim" + }, + { + "name": "otp", + "url": "https://github.com/rgv151/otp.nim", + "method": "git", + "tags": ["otp", "hotp", "totp", "time", "password", "one", "google", "authenticator"], + "description": "One Time Password library for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/otp.nim" } ] From 082e02b56c7fa5fb2d2aa86d241f0bf4f67586d4 Mon Sep 17 00:00:00 2001 From: bluenote10 Date: Mon, 1 Jun 2015 19:15:30 +0200 Subject: [PATCH 0057/1381] libs renamed; libovr added renamed nim-heap to binaryheap and nim-stringinterpolation to stringinterpolation --- packages.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 8b4d808..548b67a 100644 --- a/packages.json +++ b/packages.json @@ -1516,7 +1516,7 @@ "web": "https://github.com/jangko/msgpack4nim" }, { - "name": "nim-heap", + "name": "binaryheap", "url": "https://github.com/bluenote10/nim-heap", "method": "git", "tags": ["heap", "priority queue"], @@ -1525,7 +1525,7 @@ "web": "https://github.com/bluenote10/nim-heap" }, { - "name": "nim-stringinterpolation", + "name": "stringinterpolation", "url": "https://github.com/bluenote10/nim-stringinterpolation", "method": "git", "tags": ["string formatting", "string interpolation"], @@ -1533,6 +1533,15 @@ "license": "MIT", "web": "https://github.com/bluenote10/nim-stringinterpolation" }, + { + "name": "libovr", + "url": "https://github.com/bluenote10/nim-ovr", + "method": "git", + "tags": ["Oculus Rift", "virtual reality"], + "description": "Nim bindings for libOVR (Oculus Rift)", + "license": "MIT", + "web": "https://github.com/bluenote10/nim-ovr" + }, { "name": "delaunay", "url": "https://github.com/Nycto/DelaunayNim", From 48efd0b7c4ca3f4a2c67e0485917ea3c4029feeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Thu, 4 Jun 2015 01:00:19 +0700 Subject: [PATCH 0058/1381] add q package Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 548b67a..22faa06 100644 --- a/packages.json +++ b/packages.json @@ -1623,5 +1623,14 @@ "description": "One Time Password library for Nim", "license": "MIT", "web": "https://github.com/rgv151/otp.nim" + }, + { + "name": "q", + "url": "https://github.com/rgv151/q.nim", + "method": "git", + "tags": ["css", "selector", "query", "match", "find", "html", "xml", "jquery"], + "description": "Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax", + "license": "MIT", + "web": "https://github.com/rgv151/q.nim" } ] From f27e7e1a5de11929a63af811d8485077fb042642 Mon Sep 17 00:00:00 2001 From: Federico Omoto Date: Thu, 4 Jun 2015 19:58:15 -0300 Subject: [PATCH 0059/1381] Add bignum package --- packages.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 22faa06..bf361fc 100644 --- a/packages.json +++ b/packages.json @@ -986,12 +986,12 @@ }, { "name": "gmp", - "url": "git://github.com/cowboy-coders/nim-gmp", + "url": "https://github.com/FedeOmoto/nim-gmp", "method": "git", "tags": ["library", "bignum", "numbers", "math"], "description": "wrapper for the GNU multiple precision arithmetic library (GMP)", "license": "LGPLv3 or GPLv2", - "web": "https://github.com/cowboy-coders/nim-gmp" + "web": "https://github.com/FedeOmoto/nim-gmp" }, { "name": "ludens", @@ -1423,7 +1423,7 @@ "tags": ["LLVM", "bindings", "wrapper"], "description": "LLVM bindings for the Nim language.", "license": "MIT", - "web": "http://fedeomoto.github.io/llvm/" + "web": "https://github.com/FedeOmoto/llvm" }, { "name": "nshout", @@ -1632,5 +1632,14 @@ "description": "Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax", "license": "MIT", "web": "https://github.com/rgv151/q.nim" + }, + { + "name": "bignum", + "url": "https://github.com/FedeOmoto/bignum", + "method": "git", + "tags": ["bignum", "gmp", "wrapper"], + "description": "Wrapper around the GMP bindings for the Nim language.", + "license": "MIT", + "web": "https://github.com/FedeOmoto/bignum" } ] From 699809dbc7e849fc304b8118a32ba1d1c22aa17c Mon Sep 17 00:00:00 2001 From: James Date: Thu, 4 Jun 2015 19:49:17 -0700 Subject: [PATCH 0060/1381] Add rbtree package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 22faa06..030a13c 100644 --- a/packages.json +++ b/packages.json @@ -1632,5 +1632,14 @@ "description": "Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax", "license": "MIT", "web": "https://github.com/rgv151/q.nim" + }, + { + "name": "rbtree", + "url": "https://github.com/Nycto/RBTreeNim", + "method": "git", + "tags": ["tree", "binary search tree", "rbtree", "red black tree"], + "description": "Red/Black Trees", + "license": "MIT", + "web": "https://github.com/Nycto/RBTreeNim" } ] From 50fe048f1068044389d36380346b9b2c821b54da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Tue, 9 Jun 2015 01:32:20 +0700 Subject: [PATCH 0061/1381] add AnyBar client --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index c919819..49c127c 100644 --- a/packages.json +++ b/packages.json @@ -1650,5 +1650,14 @@ "description": "Red/Black Trees", "license": "MIT", "web": "https://github.com/Nycto/RBTreeNim" + }, + { + "name": "anybar", + "url": "https://github.com/rgv151/anybar.nim", + "method": "git", + "tags": ["anybar", "menubar", "status", "indicator"], + "description": "Control AnyBar instances with Nim", + "license": "MIT", + "web": "https://github.com/rgv151/anybar.nim" } ] From f8efc6ad4cb5a024256f178cc3046ddb1bd0f98c Mon Sep 17 00:00:00 2001 From: James Date: Mon, 8 Jun 2015 18:05:47 -0700 Subject: [PATCH 0062/1381] Add astar package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 49c127c..c3caa3e 100644 --- a/packages.json +++ b/packages.json @@ -1659,5 +1659,14 @@ "description": "Control AnyBar instances with Nim", "license": "MIT", "web": "https://github.com/rgv151/anybar.nim" + }, + { + "name": "astar", + "url": "https://github.com/Nycto/AStarNim", + "method": "git", + "tags": ["astar", "A*", "pathfinding", "algorithm"], + "description": "A* Pathfinding", + "license": "MIT", + "web": "https://github.com/Nycto/AStarNim" } ] From 66ed52dbdf2218edc81e0fa0adff55c54ae04b16 Mon Sep 17 00:00:00 2001 From: Peter Mora Date: Wed, 10 Jun 2015 13:45:36 +0200 Subject: [PATCH 0063/1381] Added lazy library to packages.json --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index c3caa3e..b3f272b 100644 --- a/packages.json +++ b/packages.json @@ -1668,5 +1668,14 @@ "description": "A* Pathfinding", "license": "MIT", "web": "https://github.com/Nycto/AStarNim" + }, + { + "name": "lazy", + "url": "git://github.com/petermora/nimLazy/", + "method": "git", + "tags": ["library", "iterator", "lazy list"], + "description": "Iterator library for Nim", + "license": "MIT", + "web": "https://github.com/petermora/nimLazy" } ] From b27c9c8b7207f701d267b9cadba9e31dfdb5baca Mon Sep 17 00:00:00 2001 From: apense Date: Wed, 10 Jun 2015 12:59:28 -0400 Subject: [PATCH 0064/1381] Fixed up a copy/paste issue Seems like it was copied from the previous entry and still points to the old webpage. Didn't affect the download url. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b3f272b..5569e08 100644 --- a/packages.json +++ b/packages.json @@ -1171,7 +1171,7 @@ "tags": ["library", "tuple", "metaprogramming"], "description": "Tuple manipulation utilities", "license": "MIT", - "web": "https://github.com/MasonMcGill/optionals" + "web": "https://github.com/MasonMcGill/tuples" }, { "name": "fuse", From c159a84974d5928f51b9400dde1735da4426de9d Mon Sep 17 00:00:00 2001 From: Jack VanDrunen Date: Wed, 10 Jun 2015 15:48:49 -0700 Subject: [PATCH 0065/1381] Add asyncpythonfile package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 5569e08..30340a1 100644 --- a/packages.json +++ b/packages.json @@ -1677,5 +1677,14 @@ "description": "Iterator library for Nim", "license": "MIT", "web": "https://github.com/petermora/nimLazy" + }, + { + "name": "asyncpythonfile", + "url": "https://github.com/fallingduck/asyncpythonfile-nim", + "method": "git", + "tags": ["async", "asynchronous", "library", "python", "file", "files"], + "description": "High level, asynchronous file API mimicking Python's file interface.", + "license": "ISC", + "web": "https://github.com/fallingduck/asyncpythonfile-nim" } ] From e6444feb27e7fcac1969296810e235e690339ada Mon Sep 17 00:00:00 2001 From: apense Date: Fri, 12 Jun 2015 15:27:50 -0400 Subject: [PATCH 0066/1381] Added nimfuzz Small fuzzing system based on fauxfactory --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 30340a1..c1a7fd5 100644 --- a/packages.json +++ b/packages.json @@ -1686,5 +1686,14 @@ "description": "High level, asynchronous file API mimicking Python's file interface.", "license": "ISC", "web": "https://github.com/fallingduck/asyncpythonfile-nim" + }, + { + "name": "nimfuzz", + "url": "https://github.com/apense/nimfuzz", + "method": "git", + "tags": ["fuzzing", "testing", "hacking", "security"], + "description": "Simple and compact fuzzing", + "license": "Apache License 2.0", + "web": "https://apense.github.io/apense/nimfuzz" } ] From a72a30d3d3b91f83296e5c77e0bcb3cf417437eb Mon Sep 17 00:00:00 2001 From: apense Date: Sat, 13 Jun 2015 12:07:37 -0400 Subject: [PATCH 0067/1381] Fixed nimfuzz webpage link Silly mistake in original --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c1a7fd5..c956215 100644 --- a/packages.json +++ b/packages.json @@ -1694,6 +1694,6 @@ "tags": ["fuzzing", "testing", "hacking", "security"], "description": "Simple and compact fuzzing", "license": "Apache License 2.0", - "web": "https://apense.github.io/apense/nimfuzz" + "web": "https://apense.github.io/nimfuzz" } ] From 7a0dcfbbf63f4a15c0506c0f668d863c62b60065 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Mon, 15 Jun 2015 17:00:40 +0200 Subject: [PATCH 0068/1381] Added linalg --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index c956215..6bbcac1 100644 --- a/packages.json +++ b/packages.json @@ -1695,5 +1695,14 @@ "description": "Simple and compact fuzzing", "license": "Apache License 2.0", "web": "https://apense.github.io/nimfuzz" + }, + { + "name": "linalg", + "url": "https://github.com/unicredit/linear-algebra", + "method": "git", + "tags": ["vector", "matrix", "linear algebra", "BLAS", "LAPACK"], + "description": "Linear algebra for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/linear-algebra" } ] From 0b7e33fc7860ff622128d48240b7a10456276518 Mon Sep 17 00:00:00 2001 From: Jack VanDrunen Date: Tue, 16 Jun 2015 21:35:34 -0400 Subject: [PATCH 0069/1381] Add sequester --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 6bbcac1..fc1ec99 100644 --- a/packages.json +++ b/packages.json @@ -1704,5 +1704,14 @@ "description": "Linear algebra for Nim", "license": "Apache License 2.0", "web": "https://github.com/unicredit/linear-algebra" + }, + { + "name": "sequester", + "url": "https://github.com/fallingduck/sequester", + "method": "git", + "tags": ["library", "seq", "sequence", "strings", "iterators", "php"], + "description": "Library for converting sequences to strings. Also has PHP-inspired explode and implode procs.", + "license": "ISC", + "web": "https://github.com/fallingduck/sequester" } ] From b875627da31534a4b08a4be02bce939c59bf608e Mon Sep 17 00:00:00 2001 From: Jack VanDrunen Date: Wed, 17 Jun 2015 20:44:09 -0400 Subject: [PATCH 0070/1381] Add options --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index fc1ec99..5b7a8d4 100644 --- a/packages.json +++ b/packages.json @@ -1713,5 +1713,14 @@ "description": "Library for converting sequences to strings. Also has PHP-inspired explode and implode procs.", "license": "ISC", "web": "https://github.com/fallingduck/sequester" + }, + { + "name": "options", + "url": "https://github.com/fallingduck/options-nim", + "method": "git", + "tags": ["library", "option", "optionals", "maybe"], + "description": "Temporary package to fix broken code in 0.11.2 stable.", + "license": "MIT", + "web": "https://github.com/fallingduck/options-nim" } ] From 3a02750c1fe177812fb59d8b322ffc6e1a20c43e Mon Sep 17 00:00:00 2001 From: Araq Date: Sun, 21 Jun 2015 14:32:13 +0200 Subject: [PATCH 0071/1381] added redis, niminst, dialogs packages --- packages.json | 101 ++++++++++++++++++++++++++++++++------------------ 1 file changed, 64 insertions(+), 37 deletions(-) diff --git a/packages.json b/packages.json index 3afcb17..92ebd29 100644 --- a/packages.json +++ b/packages.json @@ -88,7 +88,7 @@ "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-sfml" }, - + { "name": "enet", "url": "git://github.com/fowlmouth/nimrod-enet/", @@ -98,7 +98,7 @@ "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-enet" }, - + { "name": "nim-locale", "url": "git://github.com/Amrykid/nim-locale/", @@ -108,7 +108,7 @@ "license": "MIT", "web": "https://github.com/Amrykid/nim-locale" }, - + { "name": "fowltek", "url": "git://github.com/fowlmouth/nimlibs/", @@ -118,7 +118,7 @@ "license": "MIT", "web": "https://github.com/fowlmouth/nimlibs" }, - + { "name": "nake", "url": "git://github.com/fowlmouth/nake/", @@ -138,7 +138,7 @@ "license": "MIT", "web": "https://github.com/rafaelvasco/nimrod-glfw" }, - + { "name": "chipmunk", "url": "git://github.com/fowlmouth/nimrod-chipmunk/", @@ -148,7 +148,7 @@ "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-chipmunk" }, - + { "name": "nim-glfw", "url": "git://github.com/EXetoC/nim-glfw/", @@ -158,7 +158,7 @@ "license": "MIT", "web": "https://github.com/EXetoC/nim-glfw" }, - + { "name": "nim-ao", "url": "git://github.com/EXetoC/nim-ao/", @@ -168,7 +168,7 @@ "license": "MIT", "web": "https://github.com/EXetoC/nim-ao" }, - + { "name": "termbox", "url": "git://github.com/fowlmouth/nim-termbox", @@ -178,7 +178,7 @@ "license": "MIT", "web": "https://github.com/fowlmouth/nim-termbox" }, - + { "name": "linagl", "url": "https://bitbucket.org/BitPuffin/linagl", @@ -188,7 +188,7 @@ "license": "CC0", "web": "https://bitbucket.org/BitPuffin/linagl" }, - + { "name": "kwin", "url": "git://github.com/reactormonk/nim-kwin", @@ -198,7 +198,7 @@ "license": "MIT", "web": "https://github.com/reactormonk/nim-kwin" }, - + { "name": "opencv", "url": "git://github.com/dom96/nim-opencv", @@ -208,7 +208,7 @@ "license": "MIT", "web": "https://github.com/dom96/nim-opencv" }, - + { "name": "babel", "url": "git://github.com/nimrod-code/babel", @@ -248,7 +248,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/pas2nim" }, - + { "name": "ipsumgenera", "url": "git://github.com/dom96/ipsumgenera", @@ -265,7 +265,7 @@ "tags": ["import", "C++", "library", "wrap"], "description": "Easy way to 'Mock' C++ interface", "license": "MIT", - "web": "https://github.com/onionhammer/clibpp" + "web": "https://github.com/onionhammer/clibpp" }, { "name": "pastebin", @@ -276,7 +276,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-pastebin" }, - + { "name": "yahoo-weather", "url": "git://github.com/achesak/nimrod-yahoo-weather", @@ -286,7 +286,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-yahoo-weather" }, - + { "name": "noaa", "url": "git://github.com/achesak/nimrod-noaa", @@ -296,7 +296,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-noaa" }, - + { "name": "rss", "url": "git://github.com/achesak/nimrod-rss", @@ -306,7 +306,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-rss" }, - + { "name": "extmath", "url": "git://github.com/achesak/extmath.nim", @@ -316,7 +316,7 @@ "license": "MIT", "web": "https://github.com/achesak/extmath.nim" }, - + { "name": "gtk2", "url": "git://github.com/nimrod-code/gtk2", @@ -326,7 +326,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/gtk2" }, - + { "name": "cairo", "url": "git://github.com/nimrod-code/cairo", @@ -336,7 +336,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/cairo" }, - + { "name": "x11", "url": "git://github.com/nimrod-code/x11", @@ -346,7 +346,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/x11" }, - + { "name": "opengl", "url": "git://github.com/nimrod-code/opengl", @@ -356,7 +356,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/opengl" }, - + { "name": "lua", "url": "git://github.com/nimrod-code/lua", @@ -366,7 +366,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/lua" }, - + { "name": "tcl", "url": "git://github.com/nimrod-code/tcl", @@ -376,7 +376,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/tcl" }, - + { "name": "python", "url": "git://github.com/nimrod-code/python", @@ -386,7 +386,7 @@ "license": "MIT", "web": "https://github.com/nimrod-code/python" }, - + { "name": "NimBorg", "url": "git://github.com/micklat/NimBorg", @@ -425,7 +425,7 @@ "license": "MIT", "web": "https://github.com/gradha/dropbox_filename_sanitizer/" }, - + { "name": "csv", "url": "git://github.com/achesak/nimrod-csv", @@ -435,7 +435,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-csv" }, - + { "name": "geonames", "url": "git://github.com/achesak/nimrod-geonames", @@ -445,7 +445,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-geonames" }, - + { "name": "gravatar", "url": "git://github.com/achesak/nimrod-gravatar", @@ -455,7 +455,7 @@ "license": "MIT", "web": "https://github.com/achesak/nimrod-gravatar" }, - + { "name": "coverartarchive", "url": "git://github.com/achesak/nimrod-cover-art-archive", @@ -465,7 +465,7 @@ "license": "MIT", "web": "http://github.com/achesak/nimrod-cover-art-archive" }, - + { "name": "nim-ogg", "url": "https://bitbucket.org/BitPuffin/nim-ogg", @@ -474,7 +474,7 @@ "description": "Binding to libogg", "license": "CC0" }, - + { "name": "nim-vorbis", "url": "https://bitbucket.org/BitPuffin/nim-vorbis", @@ -492,7 +492,7 @@ "description": "Binding to portaudio", "license": "CC0" }, - + { "name": "commandeer", "url": "git://github.com/fenekku/commandeer", @@ -510,7 +510,7 @@ "description": "Binding and utilities for scrypt", "license": "CC0" }, - + { "name": "bloom", "url": "git://github.com/boydgreenfield/nimrod-bloom/", @@ -540,7 +540,7 @@ "license": "MIT", "web": "https://github.com/gradha/awesome_rmdir/" }, - + { "name": "nimalpm", "url": "git://github.com/barcharcraz/nimalpm/", @@ -560,7 +560,7 @@ "license": "libpng", "web": "https://github.com/barcharcraz/nimlibpng" }, - + { "name":"sdl2", "url":"git://github.com/nimrod-code/sdl2", @@ -570,7 +570,7 @@ "license":"MIT", "web":"https://github.com/nimrod-code/sdl2" }, - + { "name":"assimp", "url":"git://github.com/barcharcraz/nim-assimp", @@ -759,5 +759,32 @@ "description": "macro-based HTML templating engine", "license": "WTFPL", "web": "https://github.com/flyx/emerald" + }, + { + "name": "niminst", + "url": "git://github.com/nim-lang/niminst", + "method": "git", + "tags": ["app", "binary", "tool", "installation", "generator", "nim"], + "description": "tool to generate installers for Nim programs", + "license": "MIT", + "web": "https://github.com/nim-lang/niminst" + }, + { + "name": "redis", + "url": "git://github.com/nim-lang/redis", + "method": "git", + "tags": ["redis", "client", "library"], + "description": "official redis client for Nim", + "license": "MIT", + "web": "https://github.com/nim-lang/redis" + }, + { + "name": "dialogs", + "url": "git://github.com/nim-lang/dialogs", + "method": "git", + "tags": ["library", "ui", "gui", "dialog", "file"], + "description": "wraps GTK+ or Windows' open file dialogs", + "license": "MIT", + "web": "https://github.com/nim-lang/dialogs" } ] From 6174a33883992648ee9dc35ad651da6367860b96 Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 23 Jun 2015 20:27:47 +0200 Subject: [PATCH 0072/1381] added oldwinapi package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 866c36c..5604b78 100644 --- a/packages.json +++ b/packages.json @@ -1749,5 +1749,14 @@ "description": "Temporary package to fix broken code in 0.11.2 stable.", "license": "MIT", "web": "https://github.com/fallingduck/options-nim" + }, + { + "name": "oldwinapi", + "url": "git://github.com/nim-lang/oldwinapi", + "method": "git", + "tags": ["library", "windows", "api"], + "description": "Old Win API library for Nim", + "license": "LGPL with static linking exception", + "web": "https://github.com/nim-lang/oldwinapi" } ] From 2b17b45243a2dbbf1d5312afe8bdcbab5468cd73 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Wed, 24 Jun 2015 17:34:09 +0300 Subject: [PATCH 0073/1381] Added nimx lib --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 5604b78..d2b4684 100644 --- a/packages.json +++ b/packages.json @@ -1758,5 +1758,14 @@ "description": "Old Win API library for Nim", "license": "LGPL with static linking exception", "web": "https://github.com/nim-lang/oldwinapi" + }, + { + "name": "nimx", + "url": "git://github.com/yglukhov/nimx", + "method": "git", + "tags": ["gui", "ui", "library"], + "description": "Cross-platform GUI framework", + "license": "BSD", + "web": "https://github.com/yglukhov/nimx" } ] From 0db2a2633c650c4fb8040fb771594dd0c626d4d8 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Thu, 25 Jun 2015 20:32:44 +0200 Subject: [PATCH 0074/1381] Added memo package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index d2b4684..0023718 100644 --- a/packages.json +++ b/packages.json @@ -1767,5 +1767,14 @@ "description": "Cross-platform GUI framework", "license": "BSD", "web": "https://github.com/yglukhov/nimx" + }, + { + "name": "memo", + "url": "https://github.com/andreaferretti/memo", + "method": "git", + "tags": ["memo", "memoization", "memoize", "cache"], + "description": "Memoize Nim functions", + "license": "Apache License 2.0", + "web": "https://github.com/andreaferretti/memo" } ] From 8d52c440739a23f5d7f2f69890974356d8b4ba24 Mon Sep 17 00:00:00 2001 From: Sloane Simmons Date: Sun, 28 Jun 2015 13:59:52 -0500 Subject: [PATCH 0075/1381] Added base62 package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 0023718..af5d6f6 100644 --- a/packages.json +++ b/packages.json @@ -1776,5 +1776,14 @@ "description": "Memoize Nim functions", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/memo" + }, + { + "name": "base62", + "url": "https://github.com/singularperturbation/base62-encode", + "method": "git", + "tags": ["base62","encode","decode"], + "description": "Arbitrary base encoding-decoding functions, defaulting to Base-62.", + "license": "MIT", + "web": "https://github.com/singularperturbation/base62-encode" } ] From 8094b1ae4108aa1edfa1d1f698fdbb9342685be2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Thu, 2 Jul 2015 13:07:28 +0700 Subject: [PATCH 0076/1381] Add `telebot` package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index af5d6f6..a299c7f 100644 --- a/packages.json +++ b/packages.json @@ -1785,5 +1785,14 @@ "description": "Arbitrary base encoding-decoding functions, defaulting to Base-62.", "license": "MIT", "web": "https://github.com/singularperturbation/base62-encode" + }, + { + "name": "telebot", + "url": "https://github.com/rgv151/telebot.nim", + "method": "git", + "tags": ["telebot", "telegram", "bot", "api", "client", "async"], + "description": "Async Telegram Bot API Client", + "license": "MIT", + "web": "https://github.com/rgv151/telebot.nim" } ] From 726b88ece2497c830043d9fb8963016f26054d2a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 2 Jul 2015 08:35:37 +0100 Subject: [PATCH 0077/1381] Fix formatting --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index a299c7f..a4f4c09 100644 --- a/packages.json +++ b/packages.json @@ -1768,7 +1768,7 @@ "license": "BSD", "web": "https://github.com/yglukhov/nimx" }, - { + { "name": "memo", "url": "https://github.com/andreaferretti/memo", "method": "git", From d1a9bc34579369e8206d0cc8e50edb7d4d372715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Thu, 2 Jul 2015 16:53:12 +0700 Subject: [PATCH 0078/1381] Add `tempfile` package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index a4f4c09..aa92551 100644 --- a/packages.json +++ b/packages.json @@ -1794,5 +1794,14 @@ "description": "Async Telegram Bot API Client", "license": "MIT", "web": "https://github.com/rgv151/telebot.nim" + }, + { + "name": "tempfile", + "url": "https://github.com/rgv151/tempfile.nim", + "method": "git", + "tags": ["temp", "mktemp", "make", "mk", "mkstemp", "mkdtemp"], + "description": "Temporary files and directories", + "license": "MIT", + "web": "https://github.com/rgv151/tempfile.nim" } ] From e33ecd3f0ab9a72aa2a9f911bd7a5d41323f83d1 Mon Sep 17 00:00:00 2001 From: super-massive-black-holes Date: Fri, 3 Jul 2015 18:35:10 -0500 Subject: [PATCH 0079/1381] Add `AstroNimy` package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index aa92551..4eba597 100644 --- a/packages.json +++ b/packages.json @@ -1803,5 +1803,14 @@ "description": "Temporary files and directories", "license": "MIT", "web": "https://github.com/rgv151/tempfile.nim" + }, + { + "name": "AstroNimy", + "url": "https://github.com/super-massive-black-holes/AstroNimy", + "method": "git", + "tags": ["science","astronomy","library"], + "description": "Astronomical library for Nim", + "license": "MIT", + "web": "https://github.com/super-massive-black-holes/AstroNimy" } ] From 4ed0c3e3414bf61d7b975764a5dc90dd382fcb05 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Sun, 5 Jul 2015 15:38:00 +0200 Subject: [PATCH 0080/1381] Added patty --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 4eba597..fe7e956 100644 --- a/packages.json +++ b/packages.json @@ -1811,6 +1811,15 @@ "tags": ["science","astronomy","library"], "description": "Astronomical library for Nim", "license": "MIT", - "web": "https://github.com/super-massive-black-holes/AstroNimy" + "web": "https://github.com/super-massive-black-holes/AstroNimy" + }, + { + "name": "patty", + "url": "https://github.com/andreaferretti/patty", + "method": "git", + "tags": ["pattern", "adt", "variant", "pattern matching", "algebraic data type"], + "description": "Algebraic data types and pattern matching", + "license": "Apache License 2.0", + "web": "https://github.com/andreaferretti/patty" } ] From 831976b799e2a84e0d023bad62219c577c53674b Mon Sep 17 00:00:00 2001 From: Joey Date: Tue, 7 Jul 2015 01:01:13 -0600 Subject: [PATCH 0081/1381] Added einheit to the package.json. Einheit is a new unit testing module. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index fe7e956..7ff9feb 100644 --- a/packages.json +++ b/packages.json @@ -1821,5 +1821,14 @@ "description": "Algebraic data types and pattern matching", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/patty" + }, + { + "name": "einheit", + "url": "https://github.com/jyapayne/einheit", + "method": "git", + "tags": ["unit", "tests", "unittest", "unit tests", "unit test macro"], + "description": "Pretty looking, full featured, Python-inspired unit test library.", + "license": "MIT", + "web": "https://github.com/jyapayne/einheit" } ] From 9f03e39f62a7b8afb092b96b1d906d722a7151b1 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Fri, 10 Jul 2015 18:45:13 +0300 Subject: [PATCH 0082/1381] Added plists library --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 7ff9feb..f03c26a 100644 --- a/packages.json +++ b/packages.json @@ -1830,5 +1830,14 @@ "description": "Pretty looking, full featured, Python-inspired unit test library.", "license": "MIT", "web": "https://github.com/jyapayne/einheit" + }, + { + "name": "plists", + "url": "https://github.com/yglukhov/plists", + "method": "git", + "tags": ["plist", "property", "list"], + "description": "Generate and parse Mac OS X .plist files in Nim.", + "license": "MIT", + "web": "https://github.com/yglukhov/plists" } ] From 74349b479d8ecef12ffdf9777b763be534856f0b Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 11 Jul 2015 13:39:03 +0100 Subject: [PATCH 0083/1381] Merges #207 manually --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index f03c26a..cc0bd14 100644 --- a/packages.json +++ b/packages.json @@ -1839,5 +1839,14 @@ "description": "Generate and parse Mac OS X .plist files in Nim.", "license": "MIT", "web": "https://github.com/yglukhov/plists" + }, + { + "name": "ncurses", + "url": "git://github.com/rnowley/nim-ncurses/", + "method": "git", + "tags": ["library", "terminal", "graphics", "wrapper"], + "description": "A wrapper for NCurses", + "license": "MIT", + "web": "https://github.com/rnowley/nim-ncurses" } ] From 0e1239e5482c0c0ed90262a57bfaa5ba2535f6fd Mon Sep 17 00:00:00 2001 From: fowlmouth Date: Sun, 12 Jul 2015 16:34:58 -0500 Subject: [PATCH 0084/1381] added nanovg --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index cc0bd14..8213f4e 100644 --- a/packages.json +++ b/packages.json @@ -1848,5 +1848,14 @@ "description": "A wrapper for NCurses", "license": "MIT", "web": "https://github.com/rnowley/nim-ncurses" + }, + { + "name": "nanovg.nim", + "url": "https://github.com/fowlmouth/nanovg.nim", + "method": "git", + "tags": ["wrapper", "GUI", "vector graphics", "opengl"], + "description": "A wrapper for NanoVG vector graphics rendering", + "license": "MIT", + "web": "https://github.com/fowlmouth/nanovg.nim" } ] From c285382002da7d4170a9e1ae1954635423215502 Mon Sep 17 00:00:00 2001 From: rbmz Date: Thu, 16 Jul 2015 17:22:42 -0300 Subject: [PATCH 0085/1381] added stopwatch Signed-off-by: rbmz --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 8213f4e..7fb6391 100644 --- a/packages.json +++ b/packages.json @@ -1857,5 +1857,14 @@ "description": "A wrapper for NanoVG vector graphics rendering", "license": "MIT", "web": "https://github.com/fowlmouth/nanovg.nim" + }, + { + "name": "stopwatch", + "url": "https://github.com/rbmz/stopwatch", + "method": "git", + "tags": ["timer", "benchmarking"], + "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", + "license": "MIT", + "web": "https://github.com/rbmz/stopwatch" } ] From f1c5efb3a9186527d3f2ab6274ce8a47fffecc68 Mon Sep 17 00:00:00 2001 From: achesak Date: Thu, 16 Jul 2015 18:15:05 -0500 Subject: [PATCH 0086/1381] Added grp, pwd, spwd. --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index 8213f4e..72cda44 100644 --- a/packages.json +++ b/packages.json @@ -1857,5 +1857,32 @@ "description": "A wrapper for NanoVG vector graphics rendering", "license": "MIT", "web": "https://github.com/fowlmouth/nanovg.nim" + }, + { + "name": "pwd", + "url": "git://github.com/achesak/nim-pwd", + "method": "git", + "tags": ["library", "unix", "pwd", "password"], + "description": "Nim port of Python's pwd module for working with the UNIX password file", + "license": "MIT", + "web": "https://github.com/achesak/nim-pwd" + }, + { + "name": "spwd", + "url": "git://github.com/achesak/nim-spwd", + "method": "git", + "tags": ["library", "unix", "spwd", "password", "shadow"], + "description": "Nim port of Python's spwd module for working with the UNIX shadow password file", + "license": "MIT", + "web": "https://github.com/achesak/nim-spwd" + }, + { + "name": "grp", + "url": "git://github.com/achesak/nim-grp", + "method": "git", + "tags": ["library", "unix", "grp", "group"], + "description": "Nim port of Python's grp module for working with the UNIX group database file", + "license": "MIT", + "web": "https://github.com/achesak/nim-grp" } ] From 74a2b15741a1d061689a35a0f91580c7a78c9a87 Mon Sep 17 00:00:00 2001 From: qqtop Date: Sun, 19 Jul 2015 16:51:28 +0800 Subject: [PATCH 0087/1381] Update packages.json --- packages.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index b50bf50..a846ff3 100644 --- a/packages.json +++ b/packages.json @@ -1893,5 +1893,14 @@ "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", "license": "MIT", "web": "https://github.com/rbmz/stopwatch" - } -] + }, + { + "name": "nimFinLib", + "url": "https://github.com/qqtop/NimFinLib", + "method": "git", + "tags": ["financial"], + "description": "Financial Library for Nim", + "license": "MIT", + "web": "https://github.com/qqtop/NimFinLib" + } + ] From 9a1d7030ca2f9dac29d9d9d9cf90d868e208e37d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Tue, 21 Jul 2015 11:03:18 +0700 Subject: [PATCH 0088/1381] add rethinkdb package --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index b50bf50..ea6fe41 100644 --- a/packages.json +++ b/packages.json @@ -1893,5 +1893,14 @@ "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", "license": "MIT", "web": "https://github.com/rbmz/stopwatch" + }, + { + "name": "rethinkdb", + "url": "https://github.com/rgv151/rethinkdb.nim", + "method": "git", + "tags": ["rethinkdb", "driver", "client", "json"], + "description": "RethinkDB driver for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/rethinkdb.nim" } ] From 8d662f5c27d6b1b8cb18a61de928b2d40bc12579 Mon Sep 17 00:00:00 2001 From: Vasiliy Stavenko Date: Tue, 21 Jul 2015 22:27:36 +0300 Subject: [PATCH 0089/1381] Add https://github.com/stavenko/nim-glm/ --- packages.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b50bf50..91edf34 100644 --- a/packages.json +++ b/packages.json @@ -376,7 +376,15 @@ "license": "MIT", "web": "https://github.com/nim-lang/tcl" }, - + { + "name": "nim-glm", + "url": "https://github.com/stavenko/nim-glm", + "method": "git", + "tags": ["opengl", "math", "matrix", "vector"], + "description": "Port of c++ glm library with shader-like syntax", + "license": "MIT", + "web": "https://github.com/stavenko/nim-glm" + }, { "name": "python", "url": "git://github.com/nim-lang/python", From fd5d9a26ad8452d158f8140bb308a673b0bb4308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Huy=20=E2=98=AD?= Date: Sat, 25 Jul 2015 18:07:39 +0700 Subject: [PATCH 0090/1381] add libssh2 --- packages.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index a846ff3..67c7a08 100644 --- a/packages.json +++ b/packages.json @@ -1902,5 +1902,15 @@ "description": "Financial Library for Nim", "license": "MIT", "web": "https://github.com/qqtop/NimFinLib" - } + }, + { + "name": "libssh2", + "url": "https://github.com/rgv151/libssh2.nim", + "method": "git", + "tags": ["lib", "ssh", "ssh2", "openssh", "client", "sftp", "scp"], + "description": "Nim wrapper for libssh2", + "license": "MIT", + "web": "https://github.com/rgv151/libssh2.nim" + } + ] From db0c9d3a2e8d3f6e35450a2a3c276907fff383a4 Mon Sep 17 00:00:00 2001 From: Vasiliy Stavenko Date: Sat, 25 Jul 2015 14:36:16 +0300 Subject: [PATCH 0091/1381] renamed package - remove dash from it's name --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 91edf34..1d5f6a8 100644 --- a/packages.json +++ b/packages.json @@ -377,10 +377,10 @@ "web": "https://github.com/nim-lang/tcl" }, { - "name": "nim-glm", + "name": "glm", "url": "https://github.com/stavenko/nim-glm", "method": "git", - "tags": ["opengl", "math", "matrix", "vector"], + "tags": ["opengl", "math", "matrix", "vector", "glsl"], "description": "Port of c++ glm library with shader-like syntax", "license": "MIT", "web": "https://github.com/stavenko/nim-glm" From d4f79c65005f1ef421b21d4da0bdad29d35e9eff Mon Sep 17 00:00:00 2001 From: gmpreussner Date: Sun, 26 Jul 2015 14:11:55 -0400 Subject: [PATCH 0092/1381] Araq/Nim moved to nim-lang/Nim --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 31e6a71..b8081c3 100644 --- a/packages.json +++ b/packages.json @@ -1117,7 +1117,7 @@ "tags": ["library", "nim"], "description": "Compiler package providing the compiler sources as a library.", "license": "MIT", - "web": "https://github.com/Araq/Nim" + "web": "https://github.com/nim-lang/Nim" }, { "name": "nre", From b3385dbc4676682c39652aa7032f3a64780ae603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sun, 2 Aug 2015 21:08:40 +0200 Subject: [PATCH 0093/1381] add dbus bindings --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 7568543..35fabcd 100644 --- a/packages.json +++ b/packages.json @@ -1928,5 +1928,14 @@ "description": "RethinkDB driver for Nim", "license": "MIT", "web": "https://github.com/rgv151/rethinkdb.nim" + }, + { + "name": "dbus", + "url": "https://github.com/zielmicha/nim-dbus", + "method": "git", + "tags": ["dbus"], + "description": "dbus bindings for Nim", + "license": "MIT", + "web": "https://github.com/zielmicha/nim-dbus" } ] From 59814130e3836f1234031928ab040c0fd449f96c Mon Sep 17 00:00:00 2001 From: Billingsly Wetherfordshire Date: Tue, 4 Aug 2015 00:25:39 -0500 Subject: [PATCH 0094/1381] Update packages.json --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 35fabcd..406b06a 100644 --- a/packages.json +++ b/packages.json @@ -1937,5 +1937,14 @@ "description": "dbus bindings for Nim", "license": "MIT", "web": "https://github.com/zielmicha/nim-dbus" + }, + { + "name": "lmdb", + "url": "https://github.com/fowlmouth/lmdb.nim", + "method": "git", + "tags": ["wrapper", "lmdb"], + "description": "A wrapper for LMDB the Lightning Memory-Mapped Database", + "license": "MIT", + "web": "https://github.com/fowlmouth/lmdb.nim" } ] From e69a16611602a522e4dc28c26227beede3bcdc92 Mon Sep 17 00:00:00 2001 From: def Date: Fri, 7 Aug 2015 16:17:52 +0200 Subject: [PATCH 0095/1381] Add zip wrapper --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 406b06a..76d3567 100644 --- a/packages.json +++ b/packages.json @@ -1946,5 +1946,14 @@ "description": "A wrapper for LMDB the Lightning Memory-Mapped Database", "license": "MIT", "web": "https://github.com/fowlmouth/lmdb.nim" + }, + { + "name": "zip", + "url": "https://github.com/nim-lang/zip", + "method": "git", + "tags": ["wrapper", "zip"], + "description": "A wrapper for the zip library", + "license": "MIT", + "web": "https://github.com/nim-lang/zip" } ] From c9133e53383ab8bb7bdb4d3d5e1403fdf4fd29a6 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Thu, 13 Aug 2015 11:31:31 +0200 Subject: [PATCH 0096/1381] Added csvtools --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 76d3567..a483241 100644 --- a/packages.json +++ b/packages.json @@ -1955,5 +1955,14 @@ "description": "A wrapper for the zip library", "license": "MIT", "web": "https://github.com/nim-lang/zip" + }, + { + "name": "csvtools", + "url": "https://github.com/unicredit/csvtools", + "method": "git", + "tags": ["CSV", "comma separated values", "TSV"], + "description": "Manage CSV files", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/csvtools" } ] From 7ca9cb0343b14fe4a0bfa55395aba9aaca4cf22c Mon Sep 17 00:00:00 2001 From: wt Date: Sat, 15 Aug 2015 19:31:48 +0800 Subject: [PATCH 0097/1381] add httpform module HttpForm, Http Request Form Parser. --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index a483241..cc989a8 100644 --- a/packages.json +++ b/packages.json @@ -1964,5 +1964,14 @@ "description": "Manage CSV files", "license": "Apache License 2.0", "web": "https://github.com/unicredit/csvtools" + }, + { + "name": "httpform", + "url": "https://github.com/tulayang/httpform", + "method": "git", + "tags": ["request parser", "upload", "html5 file"], + "description": "Http request form parser", + "license": "MIT", + "web": "https://github.com/tulayang/httpform" } ] From 6b59b2b2844b2e156ed231506f12556c4b771956 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 16 Aug 2015 21:42:20 -0700 Subject: [PATCH 0098/1381] Add vardene --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cc989a8..de3f50f 100644 --- a/packages.json +++ b/packages.json @@ -1973,5 +1973,14 @@ "description": "Http request form parser", "license": "MIT", "web": "https://github.com/tulayang/httpform" + }, + { + "name": "vardene", + "url": "https://github.com/Xe/vardene", + "method": "git", + "tags": ["command line", "tool", "compiler"], + "description": "A simple tool to manage multiple installs of Nim.", + "license": "MIT", + "web": "https://christine.website/projects/Vardene" } - ] +] From 82fbadfca90bfd6de27b79d841a1b5b262932356 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Mon, 17 Aug 2015 19:14:52 +0200 Subject: [PATCH 0099/1381] emerald: updated web URL --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index de3f50f..ec1f712 100644 --- a/packages.json +++ b/packages.json @@ -747,7 +747,7 @@ "tags": ["dsl", "html", "template", "web"], "description": "macro-based HTML templating engine", "license": "WTFPL", - "web": "https://github.com/flyx/emerald" + "web": "https://flyx.github.io/emerald/" }, { "name": "niminst", From 44a2b7360d604c38d77005637146feebbb44bbf7 Mon Sep 17 00:00:00 2001 From: Grzegorz Adam Hankiewicz Date: Mon, 17 Aug 2015 23:33:20 +0200 Subject: [PATCH 0100/1381] Removes dead package. --- packages.json | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/packages.json b/packages.json index ec1f712..5e18ed5 100644 --- a/packages.json +++ b/packages.json @@ -59,16 +59,6 @@ "web": "https://github.com/Vladar4/libtcod-nim" }, - { - "name": "nimepak", - "url": "git://github.com/gradha/epak/", - "method": "git", - "tags": ["library", "serialization", "file", "compression"], - "description": "File compression routines in C for iOS and Nimrod", - "license": "Allegro 4 Giftware", - "web": "https://github.com/gradha/epak" - }, - { "name": "nimgame", "url": "git://github.com/Vladar4/nimgame/", From b152c2e044121085e6b05c45e3e6d4ab2b8a4eeb Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 18 Aug 2015 10:53:21 +0200 Subject: [PATCH 0101/1381] Added package expat --- packages.json | 1814 ++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 1409 insertions(+), 405 deletions(-) diff --git a/packages.json b/packages.json index ec1f712..71353d9 100644 --- a/packages.json +++ b/packages.json @@ -3,257 +3,366 @@ "name": "argument_parser", "url": "git://github.com/gradha/argument_parser/", "method": "git", - "tags": ["library", "commandline", "arguments", "switches", "parsing"], + "tags": [ + "library", + "commandline", + "arguments", + "switches", + "parsing" + ], "description": "Provides a complex commandline parser", "license": "MIT", "web": "https://github.com/gradha/argument_parser" }, - { "name": "genieos", "url": "git://github.com/gradha/genieos/", "method": "git", - "tags": ["library", "commandline", "sound", "recycle", "os"], + "tags": [ + "library", + "commandline", + "sound", + "recycle", + "os" + ], "description": "Too awesome procs to be included in nimrod.os module", "license": "MIT", "web": "http://gradha.github.io/genieos/" }, - { "name": "jester", "url": "git://github.com/dom96/jester/", "method": "git", - "tags": ["web", "http", "framework", "dsl"], + "tags": [ + "web", + "http", + "framework", + "dsl" + ], "description": "A sinatra-like web framework for Nimrod.", "license": "MIT", "web": "https://github.com/dom96/jester" }, - { "name": "templates", "url": "https://github.com/onionhammer/nim-templates.git", "method": "git", - "tags": ["web", "html", "template"], + "tags": [ + "web", + "html", + "template" + ], "description": "A simple string templating library for Nimrod.", "license": "BSD", "web": "https://github.com/onionhammer/nim-templates" }, - { "name": "murmur", "url": "git://github.com/olahol/nimrod-murmur/", "method": "git", - "tags": ["hash", "murmur"], + "tags": [ + "hash", + "murmur" + ], "description": "MurmurHash in pure Nimrod.", "license": "MIT", "web": "https://github.com/olahol/nimrod-murmur" }, - { "name": "libtcod-nim", "url": "git://github.com/Vladar4/libtcod-nim/", "method": "git", - "tags": ["roguelike", "game", "library", "engine", "sdl", "opengl", "glsl"], + "tags": [ + "roguelike", + "game", + "library", + "engine", + "sdl", + "opengl", + "glsl" + ], "description": "Wrapper of the libtcod library for the Nimrod language.", "license": "zlib", "web": "https://github.com/Vladar4/libtcod-nim" }, - { "name": "nimepak", "url": "git://github.com/gradha/epak/", "method": "git", - "tags": ["library", "serialization", "file", "compression"], + "tags": [ + "library", + "serialization", + "file", + "compression" + ], "description": "File compression routines in C for iOS and Nimrod", "license": "Allegro 4 Giftware", "web": "https://github.com/gradha/epak" }, - { "name": "nimgame", "url": "git://github.com/Vladar4/nimgame/", "method": "git", - "tags": ["game", "engine", "sdl"], + "tags": [ + "game", + "engine", + "sdl" + ], "description": "Simple 2D game engine for Nimrod language.", "license": "MIT", "web": "https://github.com/Vladar4/nimgame" }, - { "name": "sfml", "url": "git://github.com/fowlmouth/nimrod-sfml/", "method": "git", - "tags": ["game", "library", "opengl"], + "tags": [ + "game", + "library", + "opengl" + ], "description": "High level OpenGL-based Game Library", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-sfml" }, - { "name": "enet", "url": "git://github.com/fowlmouth/nimrod-enet/", "method": "git", - "tags": ["game", "networking", "udp"], + "tags": [ + "game", + "networking", + "udp" + ], "description": "Wrapper for ENet UDP networking library", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-enet" }, - { "name": "nim-locale", "url": "git://github.com/Amrykid/nim-locale/", "method": "git", - "tags": ["library", "locale", "i18n", "localization", "localisation", "globalization"], + "tags": [ + "library", + "locale", + "i18n", + "localization", + "localisation", + "globalization" + ], "description": "A simple library for localizing Nimrod applications.", "license": "MIT", "web": "https://github.com/Amrykid/nim-locale" }, - { "name": "fowltek", "url": "git://github.com/fowlmouth/nimlibs/", "method": "git", - "tags": ["game", "opengl", "wrappers", "library", "assorted"], + "tags": [ + "game", + "opengl", + "wrappers", + "library", + "assorted" + ], "description": "A collection of reusable modules and wrappers.", "license": "MIT", "web": "https://github.com/fowlmouth/nimlibs" }, - { "name": "nake", "url": "git://github.com/fowlmouth/nake/", "method": "git", - "tags": ["build", "automation", "sortof"], + "tags": [ + "build", + "automation", + "sortof" + ], "description": "make-like for Nimrod. Describe your builds as tasks!", "license": "MIT", "web": "https://github.com/fowlmouth/nake" }, - { "name": "nimrod-glfw", "url": "git://github.com/rafaelvasco/nimrod-glfw/", "method": "git", - "tags": ["library", "glfw", "opengl", "windowing", "game"], + "tags": [ + "library", + "glfw", + "opengl", + "windowing", + "game" + ], "description": "Nimrod bindings for GLFW library.", "license": "MIT", "web": "https://github.com/rafaelvasco/nimrod-glfw" }, - { "name": "chipmunk", "url": "git://github.com/fowlmouth/nimrod-chipmunk/", "method": "git", - "tags": ["library", "physics", "game"], + "tags": [ + "library", + "physics", + "game" + ], "description": "Binding for Chipmunk 6.1", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-chipmunk" }, - { "name": "nim-glfw", "url": "git://github.com/EXetoC/nim-glfw/", "method": "git", - "tags": ["library", "glfw", "opengl", "windowing", "game"], + "tags": [ + "library", + "glfw", + "opengl", + "windowing", + "game" + ], "description": "A high-level GLFW 3 wrapper", "license": "MIT", "web": "https://github.com/EXetoC/nim-glfw" }, - { "name": "nim-ao", "url": "git://github.com/EXetoC/nim-ao/", "method": "git", - "tags": ["library", "audio"], + "tags": [ + "library", + "audio" + ], "description": "A high-level libao wrapper", "license": "MIT", "web": "https://github.com/EXetoC/nim-ao" }, - { "name": "termbox", "url": "git://github.com/fowlmouth/nim-termbox", "method": "git", - "tags": ["library", "terminal", "io"], + "tags": [ + "library", + "terminal", + "io" + ], "description": "Termbox wrapper.", "license": "MIT", "web": "https://github.com/fowlmouth/nim-termbox" }, - { "name": "linagl", "url": "https://bitbucket.org/BitPuffin/linagl", "method": "hg", - "tags": ["library", "opengl", "math", "game"], + "tags": [ + "library", + "opengl", + "math", + "game" + ], "description": "OpenGL math library", "license": "CC0", "web": "https://bitbucket.org/BitPuffin/linagl" }, - { "name": "kwin", "url": "git://github.com/reactormonk/nim-kwin", "method": "git", - "tags": ["library", "javascript", "kde"], + "tags": [ + "library", + "javascript", + "kde" + ], "description": "KWin JavaScript API wrapper", "license": "MIT", "web": "https://github.com/reactormonk/nim-kwin" }, - { "name": "opencv", "url": "git://github.com/dom96/nim-opencv", "method": "git", - "tags": ["library", "wrapper", "opencv", "image", "processing"], + "tags": [ + "library", + "wrapper", + "opencv", + "image", + "processing" + ], "description": "OpenCV wrapper", "license": "MIT", "web": "https://github.com/dom96/nim-opencv" }, - { "name": "nimble", "url": "git://github.com/nim-lang/nimble", "method": "git", - "tags": ["app", "binary", "package", "manager"], + "tags": [ + "app", + "binary", + "package", + "manager" + ], "description": "Nimble package manager", "license": "BSD", "web": "https://github.com/nim-lang/nimble" }, - { "name": "aporia", "url": "git://github.com/nim-lang/Aporia", "method": "git", - "tags": ["app", "binary", "ide", "gtk", "nimrod"], + "tags": [ + "app", + "binary", + "ide", + "gtk", + "nimrod" + ], "description": "A Nimrod IDE.", "license": "GPLv2", "web": "https://github.com/nim-lang/Aporia" }, - { "name": "c2nim", "url": "git://github.com/nim-lang/c2nim", "method": "git", - "tags": ["app", "binary", "tool", "header", "C", "nimrod"], + "tags": [ + "app", + "binary", + "tool", + "header", + "C", + "nimrod" + ], "description": "c2nim is a tool to translate Ansi C code to Nimrod.", "license": "MIT", "web": "https://github.com/nim-lang/c2nim" }, - { "name": "pas2nim", "url": "git://github.com/nim-lang/pas2nim", "method": "git", - "tags": ["app", "binary", "tool", "Pascal", "nimrod"], + "tags": [ + "app", + "binary", + "tool", + "Pascal", + "nimrod" + ], "description": "pas2nim is a tool to translate Pascal code to Nimrod.", "license": "MIT", "web": "https://github.com/nim-lang/pas2nim" }, - { "name": "ipsumgenera", "url": "git://github.com/dom96/ipsumgenera", "method": "git", - "tags": ["app", "binary", "blog", "static", "generator"], + "tags": [ + "app", + "binary", + "blog", + "static", + "generator" + ], "description": "Static blog generator ala Jekyll.", "license": "MIT", "web": "https://github.com/dom96/ipsumgenera" @@ -262,7 +371,12 @@ "name": "clibpp", "url": "https://github.com/onionhammer/clibpp.git", "method": "git", - "tags": ["import", "C++", "library", "wrap"], + "tags": [ + "import", + "C++", + "library", + "wrap" + ], "description": "Easy way to 'Mock' C++ interface", "license": "MIT", "web": "https://github.com/onionhammer/clibpp" @@ -271,107 +385,132 @@ "name": "pastebin", "url": "git://github.com/achesak/nim-pastebin", "method": "git", - "tags": ["library", "wrapper", "pastebin"], + "tags": [ + "library", + "wrapper", + "pastebin" + ], "description": "Pastebin API wrapper", "license": "MIT", "web": "https://github.com/achesak/nim-pastebin" }, - { "name": "yahooweather", "url": "git://github.com/achesak/nim-yahooweather", "method": "git", - "tags": ["library", "wrapper", "weather"], + "tags": [ + "library", + "wrapper", + "weather" + ], "description": "Yahoo! Weather API wrapper", "license": "MIT", "web": "https://github.com/achesak/nim-yahooweather" }, - { "name": "noaa", "url": "git://github.com/achesak/nim-noaa", "method": "git", - "tags": ["library", "wrapper", "weather"], + "tags": [ + "library", + "wrapper", + "weather" + ], "description": "NOAA weather API wrapper", "license": "MIT", "web": "https://github.com/achesak/nim-noaa" }, - { "name": "rss", "url": "git://github.com/achesak/nim-rss", "method": "git", - "tags": ["library", "rss", "xml", "syndication"], + "tags": [ + "library", + "rss", + "xml", + "syndication" + ], "description": "RSS library", "license": "MIT", "web": "https://github.com/achesak/nim-rss" }, - { "name": "extmath", "url": "git://github.com/achesak/extmath.nim", "method": "git", - "tags": ["library", "math", "trigonometry"], + "tags": [ + "library", + "math", + "trigonometry" + ], "description": "Nim math library", "license": "MIT", "web": "https://github.com/achesak/extmath.nim" }, - { "name": "gtk2", "url": "git://github.com/nim-lang/gtk2", "method": "git", - "tags": ["wrapper", "gui", "gtk"], + "tags": [ + "wrapper", + "gui", + "gtk" + ], "description": "Wrapper for gtk2, a feature rich toolkit for creating graphical user interfaces", "license": "MIT", "web": "https://github.com/nim-lang/gtk2" }, - { "name": "cairo", "url": "git://github.com/nim-lang/cairo", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper for cairo, a vector graphics library with display and print output", "license": "MIT", "web": "https://github.com/nim-lang/cairo" }, - { "name": "x11", "url": "git://github.com/nim-lang/x11", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper for X11", "license": "MIT", "web": "https://github.com/nim-lang/x11" }, - { "name": "opengl", "url": "git://github.com/nim-lang/opengl", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "High-level and low-level wrapper for OpenGL", "license": "MIT", "web": "https://github.com/nim-lang/opengl" }, - { "name": "lua", "url": "git://github.com/nim-lang/lua", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper to interface with the Lua interpreter", "license": "MIT", "web": "https://github.com/nim-lang/lua" }, - { "name": "tcl", "url": "git://github.com/nim-lang/tcl", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper for the TCL programming language", "license": "MIT", "web": "https://github.com/nim-lang/tcl" @@ -380,7 +519,13 @@ "name": "glm", "url": "https://github.com/stavenko/nim-glm", "method": "git", - "tags": ["opengl", "math", "matrix", "vector", "glsl"], + "tags": [ + "opengl", + "math", + "matrix", + "vector", + "glsl" + ], "description": "Port of c++ glm library with shader-like syntax", "license": "MIT", "web": "https://github.com/stavenko/nim-glm" @@ -389,200 +534,298 @@ "name": "python", "url": "git://github.com/nim-lang/python", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper to interface with Python interpreter", "license": "MIT", "web": "https://github.com/nim-lang/python" }, - { "name": "NimBorg", "url": "git://github.com/micklat/NimBorg", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "High-level and low-level interfaces to python and lua", "license": "MIT", "web": "https://github.com/micklat/NimBorg" }, - { "name": "sha1", "url": "https://github.com/onionhammer/sha1", "method": "git", - "tags": ["port", "hash", "sha1"], + "tags": [ + "port", + "hash", + "sha1" + ], "description": "SHA-1 produces a 160-bit (20-byte) hash value from arbitrary input", "license": "BSD" }, - { "name": "dropbox_filename_sanitizer", "url": "git://github.com/gradha/dropbox_filename_sanitizer/", "method": "git", - "tags": ["dropbox"], + "tags": [ + "dropbox" + ], "description": "Tool to clean up filenames shared on Dropbox", "license": "MIT", - "web": "https://github.com/gradha/dropbox_filename_sanitizer/" + "web": "https://github.com/gradha/dropbox_filename_sanitizer/" }, - { "name": "csv", "url": "git://github.com/achesak/nim-csv", "method": "git", - "tags": ["csv", "parsing", "stringify", "library"], + "tags": [ + "csv", + "parsing", + "stringify", + "library" + ], "description": "Library for parsing, stringifying, reading, and writing CSV (comma separated value) files", "license": "MIT", - "web": "https://github.com/achesak/nim-csv" + "web": "https://github.com/achesak/nim-csv" }, - { "name": "geonames", "url": "git://github.com/achesak/nim-geonames", "method": "git", - "tags": ["library", "wrapper", "geography"], + "tags": [ + "library", + "wrapper", + "geography" + ], "description": "GeoNames API wrapper", "license": "MIT", - "web": "https://github.com/achesak/nim-geonames" + "web": "https://github.com/achesak/nim-geonames" }, - { "name": "gravatar", "url": "git://github.com/achesak/nim-gravatar", "method": "git", - "tags": ["library", "wrapper", "gravatar"], + "tags": [ + "library", + "wrapper", + "gravatar" + ], "description": "Gravatar API wrapper", "license": "MIT", - "web": "https://github.com/achesak/nim-gravatar" + "web": "https://github.com/achesak/nim-gravatar" }, - { "name": "coverartarchive", "url": "git://github.com/achesak/nim-coverartarchive", "method": "git", - "tags": ["library", "wrapper", "cover art", "music", "metadata"], + "tags": [ + "library", + "wrapper", + "cover art", + "music", + "metadata" + ], "description": "Cover Art Archive API wrapper", "license": "MIT", - "web": "http://github.com/achesak/nim-coverartarchive" + "web": "http://github.com/achesak/nim-coverartarchive" }, - { "name": "nim-ogg", "url": "https://bitbucket.org/BitPuffin/nim-ogg", "method": "hg", - "tags": ["library", "wrapper", "binding", "audio", "sound", "video", "metadata", "media"], + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "video", + "metadata", + "media" + ], "description": "Binding to libogg", "license": "CC0" }, - { "name": "nim-vorbis", "url": "https://bitbucket.org/BitPuffin/nim-vorbis", "method": "hg", - "tags": ["library", "wrapper", "binding", "audio", "sound", "metadata", "media"], + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "metadata", + "media" + ], "description": "Binding to libvorbis", "license": "CC0" }, - { "name": "nim-portaudio", "url": "https://bitbucket.org/BitPuffin/nim-portaudio", "method": "hg", - "tags": ["library", "wrapper", "binding", "audio", "sound", "media", "io"], + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "media", + "io" + ], "description": "Binding to portaudio", "license": "CC0" }, - { "name": "commandeer", "url": "git://github.com/fenekku/commandeer", "method": "git", - "tags": ["library", "commandline", "arguments", "switches", "parsing", "options"], + "tags": [ + "library", + "commandline", + "arguments", + "switches", + "parsing", + "options" + ], "description": "Provides a small command line parsing DSL (domain specific language)", "license": "MIT", "web": "https://github.com/fenekku/commandeer" }, - { "name": "scrypt.nim", "url": "https://bitbucket.org/BitPuffin/scrypt.nim", "method": "hg", - "tags": ["library", "wrapper", "binding", "crypto", "cryptography", "hash", "password", "security"], + "tags": [ + "library", + "wrapper", + "binding", + "crypto", + "cryptography", + "hash", + "password", + "security" + ], "description": "Binding and utilities for scrypt", "license": "CC0" }, - { "name": "bloom", "url": "git://github.com/boydgreenfield/nimrod-bloom/", "method": "git", - "tags": ["Bloom filter", "Bloom", "probabilistic", "data structure", "set membership", "MurmurHash", "MurmurHash3"], + "tags": [ + "Bloom filter", + "Bloom", + "probabilistic", + "data structure", + "set membership", + "MurmurHash", + "MurmurHash3" + ], "description": "Efficient Bloom filter implementation in Nimrod using MurmurHash3.", "license": "MIT", "web": "https://www.github.com/boydgreenfield/nimrod-bloom/" }, - { "name": "awesome_rmdir", "url": "git://github.com/gradha/awesome_rmdir/", "method": "git", - "tags": ["rmdir", "awesome", "commandline"], + "tags": [ + "rmdir", + "awesome", + "commandline" + ], "description": "Command to remove acceptably empty directories.", "license": "MIT", "web": "https://github.com/gradha/awesome_rmdir/" }, - { "name": "nimalpm", "url": "git://github.com/barcharcraz/nimalpm/", "method": "git", - "tags": ["alpm", "wrapper", "binding", "library"], + "tags": [ + "alpm", + "wrapper", + "binding", + "library" + ], "description": "A nimrod wrapper for libalpm", "license": "GPLv2", "web": "https://www.github.com/barcharcraz/nimalpm/" }, - { "name": "nimlibpng", - "url":"git://github.com/barcharcraz/nimlibpng", + "url": "git://github.com/barcharcraz/nimlibpng", "method": "git", - "tags": ["png", "wrapper", "library", "libpng", "image"], + "tags": [ + "png", + "wrapper", + "library", + "libpng", + "image" + ], "description": "Nimrod wrapper for the libpng library", "license": "libpng", "web": "https://github.com/barcharcraz/nimlibpng" }, - { - "name":"sdl2", - "url":"git://github.com/nim-lang/sdl2", - "method":"git", - "tags":["wrapper","media","audio","video"], - "description":"Wrapper for SDL 2.x", - "license":"MIT", - "web":"https://github.com/nim-lang/sdl2" - }, - - { - "name":"assimp", - "url":"git://github.com/barcharcraz/nim-assimp", - "method":"git", - "tags":["wrapper","media","mesh","import","game"], - "description":"Wrapper for the assimp library", - "license":"MIT", - "web":"https://github.com/barcharcraz/nim-assimp" + "name": "sdl2", + "url": "git://github.com/nim-lang/sdl2", + "method": "git", + "tags": [ + "wrapper", + "media", + "audio", + "video" + ], + "description": "Wrapper for SDL 2.x", + "license": "MIT", + "web": "https://github.com/nim-lang/sdl2" }, { - "name":"freeimage", - "url":"git://github.com/barcharcraz/nim-freeimage", - "method":"git", - "tags":["wrapper","media","image","import","game"], - "description":"Wrapper for the FreeImage library", - "license":"MIT", - "web":"https://github.com/barcharcraz/nim-freeimage" + "name": "assimp", + "url": "git://github.com/barcharcraz/nim-assimp", + "method": "git", + "tags": [ + "wrapper", + "media", + "mesh", + "import", + "game" + ], + "description": "Wrapper for the assimp library", + "license": "MIT", + "web": "https://github.com/barcharcraz/nim-assimp" + }, + { + "name": "freeimage", + "url": "git://github.com/barcharcraz/nim-freeimage", + "method": "git", + "tags": [ + "wrapper", + "media", + "image", + "import", + "game" + ], + "description": "Wrapper for the FreeImage library", + "license": "MIT", + "web": "https://github.com/barcharcraz/nim-freeimage" }, { "name": "bcrypt", "url": "git://github.com/ithkuil/bcryptnim/", "method": "git", - "tags": ["hash", "crypto", "password", "bcrypt", "library"], + "tags": [ + "hash", + "crypto", + "password", + "bcrypt", + "library" + ], "description": "Wraps the bcrypt (blowfish) library for creating encrypted hashes (useful for passwords)", "license": "BSD", "web": "https://www.github.com/ithkuil/bcryptnim/" @@ -591,7 +834,9 @@ "name": "opencl", "url": "git://github.com/nim-lang/opencl", "method": "git", - "tags": ["library"], + "tags": [ + "library" + ], "description": "Low-level wrapper for OpenCL", "license": "MIT", "web": "https://github.com/nim-lang/opencl" @@ -600,25 +845,38 @@ "name": "DevIL", "url": "git://github.com/Varriount/DevIL", "method": "git", - "tags": ["image", "library", "graphics", "wrapper"], + "tags": [ + "image", + "library", + "graphics", + "wrapper" + ], "description": "Wrapper for the DevIL image library", "license": "MIT", "web": "https://github.com/Varriount/DevIL" }, { - "name":"signals", - "url":"git://github.com/fowlmouth/signals.nim", - "method":"git", - "tags":["event-based","observer pattern","library"], - "description":"Signals/slots library.", - "license":"MIT", - "web":"https://github.com/fowlmouth/signals.nim" + "name": "signals", + "url": "git://github.com/fowlmouth/signals.nim", + "method": "git", + "tags": [ + "event-based", + "observer pattern", + "library" + ], + "description": "Signals/slots library.", + "license": "MIT", + "web": "https://github.com/fowlmouth/signals.nim" }, { "name": "number_files", "url": "git://github.com/gradha/number_files/", "method": "git", - "tags": ["rename", "filename", "finder"], + "tags": [ + "rename", + "filename", + "finder" + ], "description": "Command to add counter suffix/prefix to a list of files.", "license": "MIT", "web": "https://github.com/gradha/number_files/" @@ -627,107 +885,161 @@ "name": "redissessions", "url": "git://github.com/ithkuil/redissessions/", "method": "git", - "tags": ["jester", "sessions", "redis"], + "tags": [ + "jester", + "sessions", + "redis" + ], "description": "Redis-backed sessions for jester", "license": "MIT", "web": "https://github.com/ithkuil/redissessions/" }, { - "name":"horde3d", - "url":"git://github.com/fowlmouth/horde3d", - "method":"git", - "tags":["graphics","3d","rendering","wrapper"], - "description":"Wrapper for Horde3D, a small open source 3D rendering engine.", - "license":"WTFPL", - "web":"https://github.com/fowlmouth/horde3d" + "name": "horde3d", + "url": "git://github.com/fowlmouth/horde3d", + "method": "git", + "tags": [ + "graphics", + "3d", + "rendering", + "wrapper" + ], + "description": "Wrapper for Horde3D, a small open source 3D rendering engine.", + "license": "WTFPL", + "web": "https://github.com/fowlmouth/horde3d" }, { - "name":"mongo", - "url":"git://github.com/nim-lang/mongo", - "method":"git", - "tags":["library","wrapper","database"], - "description":"Bindings and a high-level interface for MongoDB", - "license":"MIT", - "web":"https://github.com/nim-lang/mongo" - }, - { - "name":"allegro5", - "url":"git://github.com/fowlmouth/allegro5", - "method":"git", - "tags":["wrapper","graphics","games","opengl","audio"], - "description":"Wrapper for Allegro version 5.X", - "license":"MIT", - "web":"https://github.com/fowlmouth/allegro5" - }, - { - "name":"physfs", - "url":"git://github.com/fowlmouth/physfs", - "method":"git", - "tags":["wrapper","filesystem","archives"], - "description":"A library to provide abstract access to various archives.", - "license":"WTFPL", - "web":"https://github.com/fowlmouth/physfs" - }, - { - "name":"shoco", - "url":"https://github.com/onionhammer/shoconim.git", - "method":"git", - "tags":["compression","shoco"], - "description":"A fast compressor for short strings", + "name": "mongo", + "url": "git://github.com/nim-lang/mongo", + "method": "git", + "tags": [ + "library", + "wrapper", + "database" + ], + "description": "Bindings and a high-level interface for MongoDB", "license": "MIT", - "web":"https://github.com/onionhammer/shoconim" + "web": "https://github.com/nim-lang/mongo" }, { - "name":"murmur3", - "url":"git://github.com/boydgreenfield/nimrod-murmur/", - "method":"git", - "tags":["MurmurHash","MurmurHash3", "murmur", "hash", "hashing"], - "description":"A simple MurmurHash3 wrapper for Nimrod", + "name": "allegro5", + "url": "git://github.com/fowlmouth/allegro5", + "method": "git", + "tags": [ + "wrapper", + "graphics", + "games", + "opengl", + "audio" + ], + "description": "Wrapper for Allegro version 5.X", "license": "MIT", - "web":"https://github.com/boydgreenfield/nimrod-murmur/" + "web": "https://github.com/fowlmouth/allegro5" }, { - "name":"hex", - "url":"https://github.com/esbullington/nimrod-hex", - "method":"git", - "tags":["hex","encoding"], - "description":"A simple hex package for Nimrod", + "name": "physfs", + "url": "git://github.com/fowlmouth/physfs", + "method": "git", + "tags": [ + "wrapper", + "filesystem", + "archives" + ], + "description": "A library to provide abstract access to various archives.", + "license": "WTFPL", + "web": "https://github.com/fowlmouth/physfs" + }, + { + "name": "shoco", + "url": "https://github.com/onionhammer/shoconim.git", + "method": "git", + "tags": [ + "compression", + "shoco" + ], + "description": "A fast compressor for short strings", "license": "MIT", - "web":"https://github.com/esbullington/nimrod-hex" + "web": "https://github.com/onionhammer/shoconim" }, { - "name":"strfmt", + "name": "murmur3", + "url": "git://github.com/boydgreenfield/nimrod-murmur/", + "method": "git", + "tags": [ + "MurmurHash", + "MurmurHash3", + "murmur", + "hash", + "hashing" + ], + "description": "A simple MurmurHash3 wrapper for Nimrod", + "license": "MIT", + "web": "https://github.com/boydgreenfield/nimrod-murmur/" + }, + { + "name": "hex", + "url": "https://github.com/esbullington/nimrod-hex", + "method": "git", + "tags": [ + "hex", + "encoding" + ], + "description": "A simple hex package for Nimrod", + "license": "MIT", + "web": "https://github.com/esbullington/nimrod-hex" + }, + { + "name": "strfmt", "url": "https://bitbucket.org/lyro/strfmt", "method": "hg", - "tags":["library"], - "description":"A string formatting library inspired by Python's `format`.", + "tags": [ + "library" + ], + "description": "A string formatting library inspired by Python's `format`.", "license": "MIT", - "web": "https://lyro.bitbucket.org/strfmt" + "web": "https://lyro.bitbucket.org/strfmt" }, { - "name":"jade-nim", - "url":"git://github.com/idlewan/jade-nim", - "method":"git", - "tags":["template","jade","web","dsl","html"], - "description":"Compiles jade templates to Nimrod procedures.", + "name": "jade-nim", + "url": "git://github.com/idlewan/jade-nim", + "method": "git", + "tags": [ + "template", + "jade", + "web", + "dsl", + "html" + ], + "description": "Compiles jade templates to Nimrod procedures.", "license": "MIT", - "web":"https://github.com/idlewan/jade-nim" + "web": "https://github.com/idlewan/jade-nim" }, { - "name":"gh_nimrod_doc_pages", + "name": "gh_nimrod_doc_pages", "url": "git://github.com/gradha/gh_nimrod_doc_pages", "method": "git", - "tags":["commandline", "web", "automation", "documentation"], - "description":"Generates a GitHub documentation website for Nimrod projects.", + "tags": [ + "commandline", + "web", + "automation", + "documentation" + ], + "description": "Generates a GitHub documentation website for Nimrod projects.", "license": "MIT", "web": "http://gradha.github.io/gh_nimrod_doc_pages/" }, { - "name":"midnight_dynamite", + "name": "midnight_dynamite", "url": "git://github.com/gradha/midnight_dynamite", "method": "git", - "tags":["wrapper", "library", "html", "markdown", "md"], - "description":"Wrapper for the markdown rendering hoedown library", + "tags": [ + "wrapper", + "library", + "html", + "markdown", + "md" + ], + "description": "Wrapper for the markdown rendering hoedown library", "license": "MIT", "web": "http://gradha.github.io/midnight_dynamite/" }, @@ -735,7 +1047,11 @@ "name": "rsvg", "url": "git://github.com/def-/rsvg", "method": "git", - "tags": ["wrapper", "library", "graphics"], + "tags": [ + "wrapper", + "library", + "graphics" + ], "description": "Wrapper for librsvg, a Scalable Vector Graphics (SVG) rendering library", "license": "MIT", "web": "https://github.com/def-/rsvg" @@ -744,43 +1060,69 @@ "name": "emerald", "url": "git://github.com/flyx/emerald", "method": "git", - "tags": ["dsl", "html", "template", "web"], + "tags": [ + "dsl", + "html", + "template", + "web" + ], "description": "macro-based HTML templating engine", "license": "WTFPL", "web": "https://flyx.github.io/emerald/" }, { - "name": "niminst", - "url": "git://github.com/nim-lang/niminst", - "method": "git", - "tags": ["app", "binary", "tool", "installation", "generator", "nim"], - "description": "tool to generate installers for Nim programs", - "license": "MIT", - "web": "https://github.com/nim-lang/niminst" + "name": "niminst", + "url": "git://github.com/nim-lang/niminst", + "method": "git", + "tags": [ + "app", + "binary", + "tool", + "installation", + "generator", + "nim" + ], + "description": "tool to generate installers for Nim programs", + "license": "MIT", + "web": "https://github.com/nim-lang/niminst" }, { - "name": "redis", - "url": "git://github.com/nim-lang/redis", - "method": "git", - "tags": ["redis", "client", "library"], - "description": "official redis client for Nim", - "license": "MIT", - "web": "https://github.com/nim-lang/redis" + "name": "redis", + "url": "git://github.com/nim-lang/redis", + "method": "git", + "tags": [ + "redis", + "client", + "library" + ], + "description": "official redis client for Nim", + "license": "MIT", + "web": "https://github.com/nim-lang/redis" + }, + { + "name": "dialogs", + "url": "git://github.com/nim-lang/dialogs", + "method": "git", + "tags": [ + "library", + "ui", + "gui", + "dialog", + "file" + ], + "description": "wraps GTK+ or Windows' open file dialogs", + "license": "MIT", + "web": "https://github.com/nim-lang/dialogs" }, { - "name": "dialogs", - "url": "git://github.com/nim-lang/dialogs", - "method": "git", - "tags": ["library", "ui", "gui", "dialog", "file"], - "description": "wraps GTK+ or Windows' open file dialogs", - "license": "MIT", - "web": "https://github.com/nim-lang/dialogs" - }, - { "name": "vectors", "url": "git://github.com/blamestross/nimrod-vectors", "method": "git", - "tags": ["math", "vectors","library"], + "tags": [ + "math", + "vectors", + "library" + ], "description": "Simple multidimensional vector math", "license": "MIT", "web": "https://github.com/blamestross/nimrod-vectors" @@ -789,7 +1131,12 @@ "name": "bitarray", "url": "git://github.com/refgenomics/nimrod-bitarray/", "method": "git", - "tags": ["Bit arrays", "Bit sets", "Bit vectors", "Data structures"], + "tags": [ + "Bit arrays", + "Bit sets", + "Bit vectors", + "Data structures" + ], "description": "mmap-backed bitarray implementation in Nimrod..", "license": "MIT", "web": "https://www.github.com/refgenomics/nimrod-bitarray/" @@ -798,25 +1145,37 @@ "name": "appdirs", "url": "git://github.com/MrJohz/appdirs", "method": "git", - "tags": ["utility", "filesystem"], + "tags": [ + "utility", + "filesystem" + ], "description": "A utility library to find the directory you need to app in.", "license": "MIT", "web": "https://github.com/MrJohz/appdirs" }, { - "name": "nim-sndfile", - "url": "git://github.com/julienaubert/nim-sndfile", - "method": "git", - "tags": ["audio", "wav", "wrapper", "libsndfile"], - "description": "A wrapper of libsndfile", - "license": "MIT", - "web": "https://github.com/julienaubert/nim-sndfile" + "name": "nim-sndfile", + "url": "git://github.com/julienaubert/nim-sndfile", + "method": "git", + "tags": [ + "audio", + "wav", + "wrapper", + "libsndfile" + ], + "description": "A wrapper of libsndfile", + "license": "MIT", + "web": "https://github.com/julienaubert/nim-sndfile" }, { "name": "bigints", "url": "git://github.com/def-/bigints", "method": "git", - "tags": ["math", "library", "numbers"], + "tags": [ + "math", + "library", + "numbers" + ], "description": "Arbitrary-precision integers", "license": "MIT", "web": "https://github.com/def-/bigints" @@ -825,7 +1184,10 @@ "name": "iterutils", "url": "git://github.com/def-/iterutils", "method": "git", - "tags": ["library", "iterators"], + "tags": [ + "library", + "iterators" + ], "description": "Functional operations for iterators and slices, similar to sequtils", "license": "MIT", "web": "https://github.com/def-/iterutils" @@ -834,7 +1196,11 @@ "name": "hastyscribe", "url": "git://github.com/h3rald/hastyscribe", "method": "git", - "tags": ["markdown", "html", "publishing"], + "tags": [ + "markdown", + "html", + "publishing" + ], "description": "Self-contained markdown compiler generating self-contained HTML documents", "license": "MIT", "web": "https://h3rald.com/hastyscribe" @@ -843,7 +1209,11 @@ "name": "nim-nanomsg", "url": "git://github.com/def-/nim-nanomsg", "method": "git", - "tags": ["library", "wrapper", "networking"], + "tags": [ + "library", + "wrapper", + "networking" + ], "description": "Wrapper for the nanomsg socket library that provides several common communication patterns", "license": "MIT", "web": "https://github.com/def-/nim-nanomsg" @@ -852,7 +1222,12 @@ "name": "directnimrod", "url": "https://bitbucket.org/barcharcraz/directnimrod", "method": "git", - "tags": ["library", "wrapper", "graphics", "windows"], + "tags": [ + "library", + "wrapper", + "graphics", + "windows" + ], "description": "Wrapper for microsoft's DirectX libraries", "license": "MS-PL", "web": "https://bitbucket.org/barcharcraz/directnimrod" @@ -861,7 +1236,11 @@ "name": "imghdr", "url": "git://github.com/achesak/nim-imghdr", "method": "git", - "tags": ["image", "formats", "files"], + "tags": [ + "image", + "formats", + "files" + ], "description": "Library for detecting the format of an image", "license": "MIT", "web": "https://github.com/achesak/nim-imghdr" @@ -870,7 +1249,10 @@ "name": "csv2json", "url": "git://github.com/achesak/nim-csv2json", "method": "git", - "tags": ["csv", "json"], + "tags": [ + "csv", + "json" + ], "description": "Convert CSV files to JSON", "license": "MIT", "web": "https://github.com/achesak/nim-csv2json" @@ -879,7 +1261,11 @@ "name": "vecmath", "url": "git://github.com/barcharcraz/vecmath", "method": "git", - "tags": ["library", "math", "vector"], + "tags": [ + "library", + "math", + "vector" + ], "description": "various vector maths utils for nimrod", "license": "MIT", "web": "https://github.com/barcharcraz/vecmath" @@ -888,7 +1274,13 @@ "name": "lazy_rest", "url": "git://github.com/gradha/lazy_rest", "method": "git", - "tags": ["library", "rst", "rest", "text", "html"], + "tags": [ + "library", + "rst", + "rest", + "text", + "html" + ], "description": "Simple reST HTML generation with some extras.", "license": "MIT", "web": "https://github.com/gradha/lazy_rest" @@ -897,7 +1289,11 @@ "name": "Phosphor", "url": "git://github.com/barcharcraz/Phosphor", "method": "git", - "tags": ["library", "opengl", "graphics"], + "tags": [ + "library", + "opengl", + "graphics" + ], "description": "eaiser use of OpenGL and GLSL shaders", "license": "MIT", "web": "https://github.com/barcharcraz/Phosphor" @@ -906,7 +1302,14 @@ "name": "colorsys", "url": "git://github.com/achesak/nim-colorsys", "method": "git", - "tags": ["library", "colors", "rgb", "yiq", "hls", "hsv"], + "tags": [ + "library", + "colors", + "rgb", + "yiq", + "hls", + "hsv" + ], "description": "Convert between RGB, YIQ, HLS, and HSV color systems.", "license": "MIT", "web": "https://github.com/achesak/nim-colorsys" @@ -915,7 +1318,12 @@ "name": "pythonfile", "url": "git://github.com/achesak/nim-pythonfile", "method": "git", - "tags": ["library", "python", "files", "file"], + "tags": [ + "library", + "python", + "files", + "file" + ], "description": "Wrapper of the file procedures to provide an interface as similar as possible to that of Python", "license": "MIT", "web": "https://github.com/achesak/nim-pythonfile" @@ -924,7 +1332,13 @@ "name": "sndhdr", "url": "git://github.com/achesak/nim-sndhdr", "method": "git", - "tags": ["library", "formats", "files", "sound", "audio"], + "tags": [ + "library", + "formats", + "files", + "sound", + "audio" + ], "description": "Library for detecting the format of a sound file", "license": "MIT", "web": "https://github.com/achesak/nim-sndhdr" @@ -933,7 +1347,11 @@ "name": "irc", "url": "git://github.com/nim-lang/irc", "method": "git", - "tags": ["library", "irc", "network"], + "tags": [ + "library", + "irc", + "network" + ], "description": "Implements a simple IRC client.", "license": "MIT", "web": "https://github.com/nim-lang/irc" @@ -942,7 +1360,11 @@ "name": "random", "url": "git://github.com/BlaXpirit/nim-random", "method": "git", - "tags": ["library", "algorithms", "random"], + "tags": [ + "library", + "algorithms", + "random" + ], "description": "Pseudo-random number generation library inspired by Python", "license": "MIT", "web": "https://github.com/BlaXpirit/nim-random" @@ -951,7 +1373,13 @@ "name": "zmq", "url": "git://github.com/nim-lang/nim-zmq", "method": "git", - "tags": ["library", "wrapper", "zeromq", "messaging", "queue"], + "tags": [ + "library", + "wrapper", + "zeromq", + "messaging", + "queue" + ], "description": "ZeroMQ 4 wrapper", "license": "MIT", "web": "https://github.com/nim-lang/nim-zmq" @@ -960,7 +1388,11 @@ "name": "uuid", "url": "git://github.com/idlewan/nim-uuid", "method": "git", - "tags": ["library", "wrapper", "uuid"], + "tags": [ + "library", + "wrapper", + "uuid" + ], "description": "UUID wrapper", "license": "MIT", "web": "https://github.com/idlewan/nim-uuid" @@ -969,7 +1401,12 @@ "name": "robotparser", "url": "git://github.com/achesak/nim-robotparser", "method": "git", - "tags": ["library", "useragent", "robots", "robot.txt"], + "tags": [ + "library", + "useragent", + "robots", + "robot.txt" + ], "description": "Determine if a useragent can access a URL using robots.txt", "license": "MIT", "web": "https://github.com/achesak/nim-robotparser" @@ -978,7 +1415,11 @@ "name": "epub", "url": "git://github.com/achesak/nim-epub", "method": "git", - "tags": ["library", "epub", "e-book"], + "tags": [ + "library", + "epub", + "e-book" + ], "description": "Module for working with EPUB e-book files", "license": "MIT", "web": "https://github.com/achesak/nim-epub" @@ -987,7 +1428,10 @@ "name": "hashids", "url": "git://github.com/achesak/nim-hashids", "method": "git", - "tags": ["library", "hashids"], + "tags": [ + "library", + "hashids" + ], "description": "Nim implementation of Hashids", "license": "MIT", "web": "https://github.com/achesak/nim-hashids" @@ -996,7 +1440,11 @@ "name": "openssl_evp", "url": "git://github.com/cowboy-coders/nim-openssl-evp", "method": "git", - "tags": ["library", "crypto", "openssl"], + "tags": [ + "library", + "crypto", + "openssl" + ], "description": "Wrapper for OpenSSL's EVP interface", "license": "OpenSSL License and SSLeay License", "web": "https://github.com/cowboy-coders/nim-openssl-evp" @@ -1005,7 +1453,12 @@ "name": "monad", "url": "git://github.com/superfunc/monad", "method": "git", - "tags": ["library", "functional", "monad", "functor"], + "tags": [ + "library", + "functional", + "monad", + "functor" + ], "description": "basic monadic data types for Nim", "license": "BSD3", "web": "https://github.com/superfunc/monad" @@ -1014,7 +1467,11 @@ "name": "eternity", "url": "git://github.com/hiteshjasani/nim-eternity", "method": "git", - "tags": ["library", "time", "format"], + "tags": [ + "library", + "time", + "format" + ], "description": "Humanize elapsed time", "license": "MIT", "web": "https://github.com/hiteshjasani/nim-eternity" @@ -1023,7 +1480,12 @@ "name": "gmp", "url": "https://github.com/FedeOmoto/nim-gmp", "method": "git", - "tags": ["library", "bignum", "numbers", "math"], + "tags": [ + "library", + "bignum", + "numbers", + "math" + ], "description": "wrapper for the GNU multiple precision arithmetic library (GMP)", "license": "LGPLv3 or GPLv2", "web": "https://github.com/FedeOmoto/nim-gmp" @@ -1032,7 +1494,12 @@ "name": "ludens", "url": "git://github.com/rnentjes/nim-ludens", "method": "git", - "tags": ["library", "game", "opengl", "sfml"], + "tags": [ + "library", + "game", + "opengl", + "sfml" + ], "description": "Little game library using opengl and sfml", "license": "MIT", "web": "https://github.com/rnentjes/nim-ludens" @@ -1041,7 +1508,11 @@ "name": "ffbookmarks", "url": "git://github.com/achesak/nim-ffbookmarks", "method": "git", - "tags": ["firefox", "bookmarks", "library"], + "tags": [ + "firefox", + "bookmarks", + "library" + ], "description": "Nim module for working with Firefox bookmarks", "license": "MIT", "web": "https://github.com/achesak/nim-ffbookmarks" @@ -1050,7 +1521,12 @@ "name": "moustachu", "url": "https://github.com/fenekku/moustachu.git", "method": "git", - "tags": ["web", "html", "template", "mustache"], + "tags": [ + "web", + "html", + "template", + "mustache" + ], "description": "Mustache templating for Nim.", "license": "MIT", "web": "https://github.com/fenekku/moustachu" @@ -1059,7 +1535,12 @@ "name": "easy-bcrypt", "url": "https://github.com/flaviut/easy-bcrypt.git", "method": "git", - "tags": ["hash", "crypto", "password", "bcrypt"], + "tags": [ + "hash", + "crypto", + "password", + "bcrypt" + ], "description": "simple wrapper providing a convenient interface for the bcrypt password hashing algorithm", "license": "CC0", "web": "https://github.com/flaviut/easy-bcrypt/blob/master/easy-bcrypt.nimble" @@ -1068,7 +1549,11 @@ "name": "nim-libclang", "url": "https://github.com/cowboy-coders/nim-libclang.git", "method": "git", - "tags": ["wrapper", "bindings", "clang"], + "tags": [ + "wrapper", + "bindings", + "clang" + ], "description": "wrapper for libclang (the C-interface of the clang LLVM frontend)", "license": "MIT", "web": "https://github.com/cowboy-coders/nim-libclang" @@ -1077,7 +1562,12 @@ "name": "nimqml", "url": "git://github.com/filcuc/nimqml", "method": "git", - "tags": ["Qt", "Qml", "UI", "GUI"], + "tags": [ + "Qt", + "Qml", + "UI", + "GUI" + ], "description": "Qt Qml bindings", "license": "GPLv3", "web": "https://github.com/filcuc/nimqml" @@ -1086,7 +1576,12 @@ "name": "XPLM-Nim", "url": "git://github.com/jpoirier/XPLM-Nim", "method": "git", - "tags": ["X-Plane", "XPLM", "Plugin", "SDK"], + "tags": [ + "X-Plane", + "XPLM", + "Plugin", + "SDK" + ], "description": "X-Plane XPLM SDK wrapper", "license": "BSD", "web": "https://github.com/jpoirier/XPLM-Nim" @@ -1095,7 +1590,14 @@ "name": "csfml", "url": "git://github.com/BlaXpirit/nim-csfml", "method": "git", - "tags": ["sfml", "binding", "game", "media", "library", "opengl"], + "tags": [ + "sfml", + "binding", + "game", + "media", + "library", + "opengl" + ], "description": "Bindings for Simple and Fast Multimedia Library (through CSFML)", "license": "zlib", "web": "https://github.com/BlaXpirit/nim-csfml" @@ -1104,7 +1606,10 @@ "name": "optional_t", "url": "git://github.com/flaviut/optional_t", "method": "git", - "tags": ["option", "functional"], + "tags": [ + "option", + "functional" + ], "description": "Basic Option[T] library", "license": "MIT", "web": "https://github.com/flaviut/optional_t" @@ -1113,7 +1618,12 @@ "name": "nimrtlsdr", "url": "git://github.com/jpoirier/nimrtlsdr", "method": "git", - "tags": ["rtl-sdr", "wrapper", "bindings", "rtlsdr"], + "tags": [ + "rtl-sdr", + "wrapper", + "bindings", + "rtlsdr" + ], "description": "A Nim wrapper for librtlsdr", "license": "BSD", "web": "https://github.com/jpoirier/nimrtlsdr" @@ -1122,7 +1632,13 @@ "name": "lapp", "url": "https://gitlab.3dicc.com/gokr/lapp.git", "method": "git", - "tags": ["args", "cmd", "opt", "parse", "parsing"], + "tags": [ + "args", + "cmd", + "opt", + "parse", + "parsing" + ], "description": "Opt parser using synopsis as specification, ported from Lua.", "license": "MIT", "web": "https://gitlab.3dicc.com/gokr/lapp" @@ -1131,7 +1647,13 @@ "name": "blimp", "url": "https://gitlab.3dicc.com/gokr/blimp.git", "method": "git", - "tags": ["app", "binary", "utility", "git", "git-fat"], + "tags": [ + "app", + "binary", + "utility", + "git", + "git-fat" + ], "description": "Utility that helps with big files in git, very similar to git-fat, s3annnex etc.", "license": "MIT", "web": "https://gitlab.3dicc.com/gokr/blimp" @@ -1140,7 +1662,10 @@ "name": "parsetoml", "url": "https://github.com/ziotom78/parsetoml.git", "method": "git", - "tags": ["library", "nim"], + "tags": [ + "library", + "nim" + ], "description": "Library for parsing TOML files.", "license": "MIT", "web": "https://github.com/ziotom78/parsetoml" @@ -1149,7 +1674,10 @@ "name": "compiler", "url": "https://github.com/Araq/Nim.git", "method": "git", - "tags": ["library", "nim"], + "tags": [ + "library", + "nim" + ], "description": "Compiler package providing the compiler sources as a library.", "license": "MIT", "web": "https://github.com/nim-lang/Nim" @@ -1158,7 +1686,11 @@ "name": "nre", "url": "https://github.com/flaviut/nre.git", "method": "git", - "tags": ["library", "pcre", "regex"], + "tags": [ + "library", + "pcre", + "regex" + ], "description": "A better regular expression library", "license": "MIT", "web": "https://github.com/flaviut/nre" @@ -1167,7 +1699,12 @@ "name": "docopt", "url": "git://github.com/docopt/docopt.nim", "method": "git", - "tags": ["commandline", "arguments", "parsing", "library"], + "tags": [ + "commandline", + "arguments", + "parsing", + "library" + ], "description": "Command-line args parser based on Usage message", "license": "MIT", "web": "https://github.com/docopt/docopt.nim" @@ -1176,7 +1713,11 @@ "name": "bpg", "url": "git://github.com/def-/nim-bpg.git", "method": "git", - "tags": ["image", "library", "wrapper"], + "tags": [ + "image", + "library", + "wrapper" + ], "description": "BPG (Better Portable Graphics) for Nim", "license": "MIT", "web": "https://github.com/def-/nim-bpg" @@ -1185,7 +1726,16 @@ "name": "io-spacenav", "url": "git://github.com/nimious/io-spacenav.git", "method": "git", - "tags": ["binding", "3dx", "3dconnexion", "libspnav", "spacenav", "spacemouse", "spacepilot", "spacenavigator"], + "tags": [ + "binding", + "3dx", + "3dconnexion", + "libspnav", + "spacenav", + "spacemouse", + "spacepilot", + "spacenavigator" + ], "description": "Bindings for libspnav, the free 3Dconnexion device driver", "license": "MIT", "web": "https://github.com/nimious/io-spacenav" @@ -1194,7 +1744,12 @@ "name": "optionals", "url": "https://github.com/MasonMcGill/optionals.git", "method": "git", - "tags": ["library", "option", "optional", "maybe"], + "tags": [ + "library", + "option", + "optional", + "maybe" + ], "description": "Option types", "license": "MIT", "web": "https://github.com/MasonMcGill/optionals" @@ -1203,7 +1758,11 @@ "name": "tuples", "url": "https://github.com/MasonMcGill/tuples.git", "method": "git", - "tags": ["library", "tuple", "metaprogramming"], + "tags": [ + "library", + "tuple", + "metaprogramming" + ], "description": "Tuple manipulation utilities", "license": "MIT", "web": "https://github.com/MasonMcGill/tuples" @@ -1212,7 +1771,11 @@ "name": "fuse", "url": "https://github.com/akiradeveloper/nim-fuse.git", "method": "git", - "tags": ["fuse", "library", "wrapper"], + "tags": [ + "fuse", + "library", + "wrapper" + ], "description": "A FUSE binding for Nim", "license": "MIT", "web": "https://github.com/akiradeveloper/nim-fuse" @@ -1221,7 +1784,14 @@ "name": "brainfuck", "url": "https://github.com/def-/nim-brainfuck.git", "method": "git", - "tags": ["library", "binary", "app", "interpreter", "compiler", "language"], + "tags": [ + "library", + "binary", + "app", + "interpreter", + "compiler", + "language" + ], "description": "A brainfuck interpreter and compiler", "license": "MIT", "web": "https://github.com/def-/nim-brainfuck" @@ -1230,7 +1800,14 @@ "name": "nimsuggest", "url": "https://github.com/nim-lang/nimsuggest.git", "method": "git", - "tags": ["binary", "app", "suggest", "compiler", "autocomplete", "nim"], + "tags": [ + "binary", + "app", + "suggest", + "compiler", + "autocomplete", + "nim" + ], "description": "Tool for providing auto completion data for Nim source code.", "license": "MIT", "web": "https://github.com/nim-lang/nimsuggest" @@ -1239,7 +1816,11 @@ "name": "jwt", "url": "https://github.com/ekarlso/nim-jwt.git", "method": "git", - "tags": ["library", "crypto", "hash"], + "tags": [ + "library", + "crypto", + "hash" + ], "description": "JSON Web Tokens for Nim", "license": "MIT", "web": "https://github.com/ekarlso/nim-jwt" @@ -1248,7 +1829,12 @@ "name": "pythonpathlib", "url": "git://github.com/achesak/nim-pythonpathlib.git", "method": "git", - "tags": ["path", "directory", "python", "library"], + "tags": [ + "path", + "directory", + "python", + "library" + ], "description": "Module for working with paths that is as similar as possible to Python's pathlib", "license": "MIT", "web": "https://github.com/achesak/nim-pythonpathlib" @@ -1257,7 +1843,13 @@ "name": "RingBuffer", "url": "git@github.com:megawac/RingBuffer.nim.git", "method": "git", - "tags": ["sequence", "seq", "circular", "ring", "buffer"], + "tags": [ + "sequence", + "seq", + "circular", + "ring", + "buffer" + ], "description": "Circular buffer implementation", "license": "MIT", "web": "https://github.com/megawac/RingBuffer.nim" @@ -1266,7 +1858,11 @@ "name": "nimrat", "url": "git://github.com/apense/nimrat", "method": "git", - "tags": ["library","math","numbers"], + "tags": [ + "library", + "math", + "numbers" + ], "description": "Module for working with rational numbers (fractions)", "license": "MIT", "web": "https://github.com/apense/nimrat" @@ -1275,7 +1871,17 @@ "name": "io-isense", "url": "git://github.com/nimious/io-isense.git", "method": "git", - "tags": ["binding", "isense", "intersense", "inertiacube", "intertrax", "microtrax", "thales", "tracking", "sensor"], + "tags": [ + "binding", + "isense", + "intersense", + "inertiacube", + "intertrax", + "microtrax", + "thales", + "tracking", + "sensor" + ], "description": "Bindings for the InterSense SDK", "license": "MIT", "web": "https://github.com/nimious/io-isense" @@ -1284,7 +1890,11 @@ "name": "io-usb", "url": "git://github.com/nimious/io-usb.git", "method": "git", - "tags": ["binding", "usb", "libusb"], + "tags": [ + "binding", + "usb", + "libusb" + ], "description": "Bindings for libusb, the cross-platform user library to access USB devices.", "license": "MIT", "web": "https://github.com/nimious/io-usb" @@ -1293,34 +1903,51 @@ "name": "nimcfitsio", "url": "https://github.com/ziotom78/nimcfitsio.git", "method": "git", - "tags": ["library", "binding", "cfitsio", "fits", "io"], + "tags": [ + "library", + "binding", + "cfitsio", + "fits", + "io" + ], "description": "Bindings for CFITSIO, a library to read/write FITSIO images and tables.", "license": "MIT", "web": "https://github.com/ziotom78/nimcfitsio" }, { - "name":"glossolalia", - "url":"git://github.com/fowlmouth/glossolalia", - "method":"git", - "tags":["parser","peg"], - "description":"A DSL for quickly writing parsers", - "license":"CC0", - "web":"https://github.com/fowlmouth/glossolalia" + "name": "glossolalia", + "url": "git://github.com/fowlmouth/glossolalia", + "method": "git", + "tags": [ + "parser", + "peg" + ], + "description": "A DSL for quickly writing parsers", + "license": "CC0", + "web": "https://github.com/fowlmouth/glossolalia" }, { - "name":"entoody", - "url":"https://bitbucket.org/fowlmouth/entoody", - "method":"git", - "tags":["component","entity","composition"], - "description":"A component/entity system", - "license":"CC0", - "web":"https://bitbucket.org/fowlmouth/entoody" + "name": "entoody", + "url": "https://bitbucket.org/fowlmouth/entoody", + "method": "git", + "tags": [ + "component", + "entity", + "composition" + ], + "description": "A component/entity system", + "license": "CC0", + "web": "https://bitbucket.org/fowlmouth/entoody" }, { "name": "msgpack", "url": "https://github.com/akiradeveloper/msgpack-nim.git", "method": "git", - "tags": ["msgpack", "library", "serialization"], + "tags": [ + "msgpack", + "library", + "serialization" + ], "description": "A MessagePack binding for Nim", "license": "MIT", "web": "https://github.com/akiradeveloper/msgpack-nim" @@ -1329,7 +1956,11 @@ "name": "osinfo", "url": "https://github.com/nim-lang/osinfo.git", "method": "git", - "tags": ["os", "library", "info"], + "tags": [ + "os", + "library", + "info" + ], "description": "Modules providing information about the OS.", "license": "MIT", "web": "https://github.com/nim-lang/osinfo" @@ -1338,7 +1969,13 @@ "name": "io-myo", "url": "git://github.com/nimious/io-myo.git", "method": "git", - "tags": ["binding", "myo", "thalmic", "armband", "gesture"], + "tags": [ + "binding", + "myo", + "thalmic", + "armband", + "gesture" + ], "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", "license": "MIT", "web": "https://github.com/nimious/io-myo" @@ -1347,7 +1984,17 @@ "name": "io-oculus", "url": "git://github.com/nimious/io-oculus.git", "method": "git", - "tags": ["binding", "oculus", "rift", "vr", "libovr", "ovr", "dk1", "dk2", "gearvr"], + "tags": [ + "binding", + "oculus", + "rift", + "vr", + "libovr", + "ovr", + "dk1", + "dk2", + "gearvr" + ], "description": "Bindings for the Oculus VR SDK.", "license": "MIT", "web": "https://github.com/nimious/io-oculus" @@ -1356,7 +2003,12 @@ "name": "closure_compiler", "url": "git://github.com/yglukhov/closure_compiler.git", "method": "git", - "tags": ["binding", "closure", "compiler", "javascript"], + "tags": [ + "binding", + "closure", + "compiler", + "javascript" + ], "description": "Bindings for Closure Compiler web API.", "license": "MIT", "web": "https://github.com/yglukhov/closure_compiler" @@ -1365,7 +2017,12 @@ "name": "io-serialport", "url": "git://github.com/nimious/io-serialport.git", "method": "git", - "tags": ["binding", "libserialport", "serial", "communication"], + "tags": [ + "binding", + "libserialport", + "serial", + "communication" + ], "description": "Bindings for libserialport, the cross-platform serial communication library.", "license": "MIT", "web": "https://github.com/nimious/io-serialport" @@ -1374,7 +2031,11 @@ "name": "beanstalkd", "url": "git://github.com/tormaroe/beanstalkd.nim.git", "method": "git", - "tags": ["library", "queue", "messaging"], + "tags": [ + "library", + "queue", + "messaging" + ], "description": "A beanstalkd work queue client library.", "license": "MIT", "web": "https://github.com/tormaroe/beanstalkd.nim" @@ -1383,7 +2044,12 @@ "name": "wiki2text", "url": "git://github.com/rspeer/wiki2text.git", "method": "git", - "tags": ["nlp", "wiki", "xml", "text"], + "tags": [ + "nlp", + "wiki", + "xml", + "text" + ], "description": "Quickly extracts natural-language text from a MediaWiki XML file.", "license": "MIT", "web": "https://github.com/rspeer/wiki2text" @@ -1392,7 +2058,17 @@ "name": "qt5_qtsql", "url": "https://github.com/philip-wernersbach/nim-qt5_qtsql.git", "method": "git", - "tags": ["library", "wrapper", "database", "qt", "qt5", "qtsql", "sqlite", "postgres", "mysql"], + "tags": [ + "library", + "wrapper", + "database", + "qt", + "qt5", + "qtsql", + "sqlite", + "postgres", + "mysql" + ], "description": "Binding for Qt 5's Qt SQL library that integrates with the features of the Nim language. Uses one API for multiple database engines.", "license": "MIT", "web": "https://github.com/philip-wernersbach/nim-qt5_qtsql" @@ -1401,7 +2077,13 @@ "name": "orient", "url": "https://github.com/philip-wernersbach/nim-orient", "method": "git", - "tags": ["library", "wrapper", "database", "orientdb", "pure"], + "tags": [ + "library", + "wrapper", + "database", + "orientdb", + "pure" + ], "description": "OrientDB driver written in pure Nim, uses the OrientDB 2.0 Binary Protocol with Binary Serialization.", "license": "MPL", "web": "https://github.com/philip-wernersbach/nim-orient" @@ -1410,7 +2092,10 @@ "name": "syslog", "url": "https://github.com/FedericoCeratto/nim-syslog", "method": "git", - "tags": ["library", "pure"], + "tags": [ + "library", + "pure" + ], "description": "Syslog module.", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-syslog" @@ -1419,7 +2104,13 @@ "name": "nimes", "url": "https://github.com/def-/nimes", "method": "git", - "tags": ["emulator", "nes", "game", "sdl", "javascript"], + "tags": [ + "emulator", + "nes", + "game", + "sdl", + "javascript" + ], "description": "NES emulator using SDL2, also compiles to JavaScript with emscripten.", "license": "MPL", "web": "https://github.com/def-/nimes" @@ -1428,7 +2119,9 @@ "name": "syscall", "url": "https://github.com/def-/nim-syscall", "method": "git", - "tags": ["library"], + "tags": [ + "library" + ], "description": "Raw system calls for Nim", "license": "MPL", "web": "https://github.com/def-/nim-syscall" @@ -1437,7 +2130,13 @@ "name": "jnim", "url": "https://github.com/yglukhov/jnim", "method": "git", - "tags": ["library", "java", "jvm", "bridge", "bindings"], + "tags": [ + "library", + "java", + "jvm", + "bridge", + "bindings" + ], "description": "Nim - Java bridge", "license": "MIT", "web": "https://github.com/yglukhov/jnim" @@ -1446,7 +2145,11 @@ "name": "nimPDF", "url": "https://github.com/jangko/nimpdf", "method": "git", - "tags": ["library", "PDF", "document"], + "tags": [ + "library", + "PDF", + "document" + ], "description": "library for generating PDF files", "license": "MIT", "web": "https://github.com/jangko/nimpdf" @@ -1455,7 +2158,11 @@ "name": "LLVM", "url": "https://github.com/FedeOmoto/llvm", "method": "git", - "tags": ["LLVM", "bindings", "wrapper"], + "tags": [ + "LLVM", + "bindings", + "wrapper" + ], "description": "LLVM bindings for the Nim language.", "license": "MIT", "web": "https://github.com/FedeOmoto/llvm" @@ -1464,7 +2171,15 @@ "name": "nshout", "url": "https://github.com/Senketsu/nshout", "method": "git", - "tags": ["library", "shouter", "libshout","wrapper","bindings","audio","web"], + "tags": [ + "library", + "shouter", + "libshout", + "wrapper", + "bindings", + "audio", + "web" + ], "description": "Nim bindings for libshout", "license": "MIT", "web": "https://github.com/Senketsu/nshout" @@ -1473,7 +2188,11 @@ "name": "nuuid", "url": "https://github.com/wheineman/nim-only-uuid", "method": "git", - "tags": ["library", "uuid", "guid"], + "tags": [ + "library", + "uuid", + "guid" + ], "description": "A Nim source only UUID generator", "license": "MIT", "web": "https://github.com/wheineman/nim-only-uuid" @@ -1482,7 +2201,12 @@ "name": "fftw3", "url": "https://github.com/ziotom78/nimfftw3", "method": "git", - "tags": ["library", "nim", "math", "fft"], + "tags": [ + "library", + "nim", + "math", + "fft" + ], "description": "Bindings to the FFTW library", "license": "MIT", "web": "https://github.com/ziotom78/nimfftw3" @@ -1491,7 +2215,10 @@ "name": "nrpl", "url": "https://github.com/wheineman/nrpl", "method": "git", - "tags": ["REPL", "application"], + "tags": [ + "REPL", + "application" + ], "description": "A rudimentary Nim REPL", "license": "MIT", "web": "https://github.com/wheineman/nrpl" @@ -1500,7 +2227,11 @@ "name": "nim-geocoding", "url": "https://github.com/saratchandra92/nim-geocoding", "method": "git", - "tags": ["library", "geocoding", "maps"], + "tags": [ + "library", + "geocoding", + "maps" + ], "description": "A simple library for Google Maps Geocoding API", "license": "MIT", "web": "https://github.com/saratchandra92/nim-geocoding" @@ -1509,7 +2240,12 @@ "name": "io-gles", "url": "git://github.com/nimious/io-gles.git", "method": "git", - "tags": ["binding", "khronos", "gles", "opengl es"], + "tags": [ + "binding", + "khronos", + "gles", + "opengl es" + ], "description": "Bindings for OpenGL ES, the embedded 3D graphics library.", "license": "MIT", "web": "https://github.com/nimious/io-gles" @@ -1518,7 +2254,14 @@ "name": "io-egl", "url": "git://github.com/nimious/io-egl.git", "method": "git", - "tags": ["binding", "khronos", "egl", "opengl", "opengl es", "openvg"], + "tags": [ + "binding", + "khronos", + "egl", + "opengl", + "opengl es", + "openvg" + ], "description": "Bindings for EGL, the native platform interface for rendering APIs.", "license": "MIT", "web": "https://github.com/nimious/io-egl" @@ -1527,7 +2270,13 @@ "name": "io-sixense", "url": "git://github.com/nimious/io-sixense.git", "method": "git", - "tags": ["binding", "sixense", "razer hydra", "stem system", "vr"], + "tags": [ + "binding", + "sixense", + "razer hydra", + "stem system", + "vr" + ], "description": "Bindings for the Sixense Core API.", "license": "MIT", "web": "https://github.com/nimious/io-sixense" @@ -1536,7 +2285,11 @@ "name": "tnetstring", "url": "https://mahlon@bitbucket.org/mahlon/nim-tnetstring", "method": "hg", - "tags": ["tnetstring", "library", "serialization" ], + "tags": [ + "tnetstring", + "library", + "serialization" + ], "description": "Parsing and serializing for the TNetstring format.", "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-tnetstring" @@ -1545,7 +2298,12 @@ "name": "msgpack4nim", "url": "https://github.com/jangko/msgpack4nim", "method": "git", - "tags": ["msgpack", "library", "serialization", "deserialization"], + "tags": [ + "msgpack", + "library", + "serialization", + "deserialization" + ], "description": "Another MessagePack implementation written in pure nim", "license": "MIT", "web": "https://github.com/jangko/msgpack4nim" @@ -1554,7 +2312,10 @@ "name": "binaryheap", "url": "https://github.com/bluenote10/nim-heap", "method": "git", - "tags": ["heap", "priority queue"], + "tags": [ + "heap", + "priority queue" + ], "description": "Simple binary heap implementation", "license": "MIT", "web": "https://github.com/bluenote10/nim-heap" @@ -1563,7 +2324,10 @@ "name": "stringinterpolation", "url": "https://github.com/bluenote10/nim-stringinterpolation", "method": "git", - "tags": ["string formatting", "string interpolation"], + "tags": [ + "string formatting", + "string interpolation" + ], "description": "String interpolation with printf syntax", "license": "MIT", "web": "https://github.com/bluenote10/nim-stringinterpolation" @@ -1572,7 +2336,10 @@ "name": "libovr", "url": "https://github.com/bluenote10/nim-ovr", "method": "git", - "tags": ["Oculus Rift", "virtual reality"], + "tags": [ + "Oculus Rift", + "virtual reality" + ], "description": "Nim bindings for libOVR (Oculus Rift)", "license": "MIT", "web": "https://github.com/bluenote10/nim-ovr" @@ -1581,7 +2348,12 @@ "name": "delaunay", "url": "https://github.com/Nycto/DelaunayNim", "method": "git", - "tags": ["delaunay", "library", "algorithms", "graph"], + "tags": [ + "delaunay", + "library", + "algorithms", + "graph" + ], "description": "2D Delaunay triangulations", "license": "MIT", "web": "https://github.com/Nycto/DelaunayNim" @@ -1590,7 +2362,12 @@ "name": "linenoise", "url": "https://github.com/fallingduck/linenoise-nim", "method": "git", - "tags": ["linenoise", "library", "wrapper", "commandline"], + "tags": [ + "linenoise", + "library", + "wrapper", + "commandline" + ], "description": "Wrapper for linenoise, a free, self-contained alternative to GNU readline.", "license": "BSD", "web": "https://github.com/fallingduck/linenoise-nim" @@ -1599,7 +2376,13 @@ "name": "struct", "url": "https://github.com/rgv151/struct.nim", "method": "git", - "tags": ["struct", "library", "python", "pack", "unpack"], + "tags": [ + "struct", + "library", + "python", + "pack", + "unpack" + ], "description": "Python-like 'struct' for Nim", "license": "MIT", "web": "https://github.com/rgv151/struct.nim" @@ -1608,7 +2391,11 @@ "name": "uri2", "url": "git://github.com/achesak/nim-uri2", "method": "git", - "tags": ["uri", "url", "library"], + "tags": [ + "uri", + "url", + "library" + ], "description": "Nim module for better URI handling", "license": "MIT", "web": "https://github.com/achesak/nim-uri2" @@ -1617,7 +2404,13 @@ "name": "hmac", "url": "https://github.com/rgv151/hmac.nim", "method": "git", - "tags": ["hmac", "authentication", "hash", "sha1", "md5"], + "tags": [ + "hmac", + "authentication", + "hash", + "sha1", + "md5" + ], "description": "HMAC-SHA1 and HMAC-MD5 hashing in Nim", "license": "MIT", "web": "https://github.com/rgv151/hmac.nim" @@ -1626,17 +2419,25 @@ "name": "mongrel2", "url": "https://mahlon@bitbucket.org/mahlon/nim-mongrel2", "method": "hg", - "tags": ["mongrel2", "library", "www" ], + "tags": [ + "mongrel2", + "library", + "www" + ], "description": "Handler framework for the Mongrel2 web server.", "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-mongrel2" - }, { "name": "shimsham", "url": "https://github.com/apense/shimsham", "method": "git", - "tags": ["crypto", "hash", "hashing", "digest"], + "tags": [ + "crypto", + "hash", + "hashing", + "digest" + ], "description": "Hashing/Digest collection in pure Nim", "license": "MIT", "web": "https://github.com/apense/shimsham" @@ -1645,7 +2446,11 @@ "name": "base32", "url": "https://github.com/rgv151/base32.nim", "method": "git", - "tags": ["base32", "encode", "decode"], + "tags": [ + "base32", + "encode", + "decode" + ], "description": "Base32 library for Nim", "license": "MIT", "web": "https://github.com/rgv151/base32.nim" @@ -1654,7 +2459,16 @@ "name": "otp", "url": "https://github.com/rgv151/otp.nim", "method": "git", - "tags": ["otp", "hotp", "totp", "time", "password", "one", "google", "authenticator"], + "tags": [ + "otp", + "hotp", + "totp", + "time", + "password", + "one", + "google", + "authenticator" + ], "description": "One Time Password library for Nim", "license": "MIT", "web": "https://github.com/rgv151/otp.nim" @@ -1663,7 +2477,16 @@ "name": "q", "url": "https://github.com/rgv151/q.nim", "method": "git", - "tags": ["css", "selector", "query", "match", "find", "html", "xml", "jquery"], + "tags": [ + "css", + "selector", + "query", + "match", + "find", + "html", + "xml", + "jquery" + ], "description": "Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax", "license": "MIT", "web": "https://github.com/rgv151/q.nim" @@ -1672,7 +2495,11 @@ "name": "bignum", "url": "https://github.com/FedeOmoto/bignum", "method": "git", - "tags": ["bignum", "gmp", "wrapper"], + "tags": [ + "bignum", + "gmp", + "wrapper" + ], "description": "Wrapper around the GMP bindings for the Nim language.", "license": "MIT", "web": "https://github.com/FedeOmoto/bignum" @@ -1681,7 +2508,12 @@ "name": "rbtree", "url": "https://github.com/Nycto/RBTreeNim", "method": "git", - "tags": ["tree", "binary search tree", "rbtree", "red black tree"], + "tags": [ + "tree", + "binary search tree", + "rbtree", + "red black tree" + ], "description": "Red/Black Trees", "license": "MIT", "web": "https://github.com/Nycto/RBTreeNim" @@ -1690,7 +2522,12 @@ "name": "anybar", "url": "https://github.com/rgv151/anybar.nim", "method": "git", - "tags": ["anybar", "menubar", "status", "indicator"], + "tags": [ + "anybar", + "menubar", + "status", + "indicator" + ], "description": "Control AnyBar instances with Nim", "license": "MIT", "web": "https://github.com/rgv151/anybar.nim" @@ -1699,7 +2536,12 @@ "name": "astar", "url": "https://github.com/Nycto/AStarNim", "method": "git", - "tags": ["astar", "A*", "pathfinding", "algorithm"], + "tags": [ + "astar", + "A*", + "pathfinding", + "algorithm" + ], "description": "A* Pathfinding", "license": "MIT", "web": "https://github.com/Nycto/AStarNim" @@ -1708,7 +2550,11 @@ "name": "lazy", "url": "git://github.com/petermora/nimLazy/", "method": "git", - "tags": ["library", "iterator", "lazy list"], + "tags": [ + "library", + "iterator", + "lazy list" + ], "description": "Iterator library for Nim", "license": "MIT", "web": "https://github.com/petermora/nimLazy" @@ -1717,7 +2563,14 @@ "name": "asyncpythonfile", "url": "https://github.com/fallingduck/asyncpythonfile-nim", "method": "git", - "tags": ["async", "asynchronous", "library", "python", "file", "files"], + "tags": [ + "async", + "asynchronous", + "library", + "python", + "file", + "files" + ], "description": "High level, asynchronous file API mimicking Python's file interface.", "license": "ISC", "web": "https://github.com/fallingduck/asyncpythonfile-nim" @@ -1726,7 +2579,12 @@ "name": "nimfuzz", "url": "https://github.com/apense/nimfuzz", "method": "git", - "tags": ["fuzzing", "testing", "hacking", "security"], + "tags": [ + "fuzzing", + "testing", + "hacking", + "security" + ], "description": "Simple and compact fuzzing", "license": "Apache License 2.0", "web": "https://apense.github.io/nimfuzz" @@ -1735,7 +2593,13 @@ "name": "linalg", "url": "https://github.com/unicredit/linear-algebra", "method": "git", - "tags": ["vector", "matrix", "linear algebra", "BLAS", "LAPACK"], + "tags": [ + "vector", + "matrix", + "linear algebra", + "BLAS", + "LAPACK" + ], "description": "Linear algebra for Nim", "license": "Apache License 2.0", "web": "https://github.com/unicredit/linear-algebra" @@ -1744,7 +2608,14 @@ "name": "sequester", "url": "https://github.com/fallingduck/sequester", "method": "git", - "tags": ["library", "seq", "sequence", "strings", "iterators", "php"], + "tags": [ + "library", + "seq", + "sequence", + "strings", + "iterators", + "php" + ], "description": "Library for converting sequences to strings. Also has PHP-inspired explode and implode procs.", "license": "ISC", "web": "https://github.com/fallingduck/sequester" @@ -1753,7 +2624,12 @@ "name": "options", "url": "https://github.com/fallingduck/options-nim", "method": "git", - "tags": ["library", "option", "optionals", "maybe"], + "tags": [ + "library", + "option", + "optionals", + "maybe" + ], "description": "Temporary package to fix broken code in 0.11.2 stable.", "license": "MIT", "web": "https://github.com/fallingduck/options-nim" @@ -1762,7 +2638,11 @@ "name": "oldwinapi", "url": "git://github.com/nim-lang/oldwinapi", "method": "git", - "tags": ["library", "windows", "api"], + "tags": [ + "library", + "windows", + "api" + ], "description": "Old Win API library for Nim", "license": "LGPL with static linking exception", "web": "https://github.com/nim-lang/oldwinapi" @@ -1771,7 +2651,11 @@ "name": "nimx", "url": "git://github.com/yglukhov/nimx", "method": "git", - "tags": ["gui", "ui", "library"], + "tags": [ + "gui", + "ui", + "library" + ], "description": "Cross-platform GUI framework", "license": "BSD", "web": "https://github.com/yglukhov/nimx" @@ -1780,16 +2664,25 @@ "name": "memo", "url": "https://github.com/andreaferretti/memo", "method": "git", - "tags": ["memo", "memoization", "memoize", "cache"], + "tags": [ + "memo", + "memoization", + "memoize", + "cache" + ], "description": "Memoize Nim functions", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/memo" }, { "name": "base62", - "url": "https://github.com/singularperturbation/base62-encode", + "url": "https://github.com/singularperturbation/base62-encode", "method": "git", - "tags": ["base62","encode","decode"], + "tags": [ + "base62", + "encode", + "decode" + ], "description": "Arbitrary base encoding-decoding functions, defaulting to Base-62.", "license": "MIT", "web": "https://github.com/singularperturbation/base62-encode" @@ -1798,7 +2691,14 @@ "name": "telebot", "url": "https://github.com/rgv151/telebot.nim", "method": "git", - "tags": ["telebot", "telegram", "bot", "api", "client", "async"], + "tags": [ + "telebot", + "telegram", + "bot", + "api", + "client", + "async" + ], "description": "Async Telegram Bot API Client", "license": "MIT", "web": "https://github.com/rgv151/telebot.nim" @@ -1807,16 +2707,27 @@ "name": "tempfile", "url": "https://github.com/rgv151/tempfile.nim", "method": "git", - "tags": ["temp", "mktemp", "make", "mk", "mkstemp", "mkdtemp"], + "tags": [ + "temp", + "mktemp", + "make", + "mk", + "mkstemp", + "mkdtemp" + ], "description": "Temporary files and directories", "license": "MIT", "web": "https://github.com/rgv151/tempfile.nim" }, { "name": "AstroNimy", - "url": "https://github.com/super-massive-black-holes/AstroNimy", + "url": "https://github.com/super-massive-black-holes/AstroNimy", "method": "git", - "tags": ["science","astronomy","library"], + "tags": [ + "science", + "astronomy", + "library" + ], "description": "Astronomical library for Nim", "license": "MIT", "web": "https://github.com/super-massive-black-holes/AstroNimy" @@ -1825,7 +2736,13 @@ "name": "patty", "url": "https://github.com/andreaferretti/patty", "method": "git", - "tags": ["pattern", "adt", "variant", "pattern matching", "algebraic data type"], + "tags": [ + "pattern", + "adt", + "variant", + "pattern matching", + "algebraic data type" + ], "description": "Algebraic data types and pattern matching", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/patty" @@ -1834,7 +2751,13 @@ "name": "einheit", "url": "https://github.com/jyapayne/einheit", "method": "git", - "tags": ["unit", "tests", "unittest", "unit tests", "unit test macro"], + "tags": [ + "unit", + "tests", + "unittest", + "unit tests", + "unit test macro" + ], "description": "Pretty looking, full featured, Python-inspired unit test library.", "license": "MIT", "web": "https://github.com/jyapayne/einheit" @@ -1843,7 +2766,11 @@ "name": "plists", "url": "https://github.com/yglukhov/plists", "method": "git", - "tags": ["plist", "property", "list"], + "tags": [ + "plist", + "property", + "list" + ], "description": "Generate and parse Mac OS X .plist files in Nim.", "license": "MIT", "web": "https://github.com/yglukhov/plists" @@ -1852,7 +2779,12 @@ "name": "ncurses", "url": "git://github.com/rnowley/nim-ncurses/", "method": "git", - "tags": ["library", "terminal", "graphics", "wrapper"], + "tags": [ + "library", + "terminal", + "graphics", + "wrapper" + ], "description": "A wrapper for NCurses", "license": "MIT", "web": "https://github.com/rnowley/nim-ncurses" @@ -1861,7 +2793,12 @@ "name": "nanovg.nim", "url": "https://github.com/fowlmouth/nanovg.nim", "method": "git", - "tags": ["wrapper", "GUI", "vector graphics", "opengl"], + "tags": [ + "wrapper", + "GUI", + "vector graphics", + "opengl" + ], "description": "A wrapper for NanoVG vector graphics rendering", "license": "MIT", "web": "https://github.com/fowlmouth/nanovg.nim" @@ -1870,7 +2807,12 @@ "name": "pwd", "url": "git://github.com/achesak/nim-pwd", "method": "git", - "tags": ["library", "unix", "pwd", "password"], + "tags": [ + "library", + "unix", + "pwd", + "password" + ], "description": "Nim port of Python's pwd module for working with the UNIX password file", "license": "MIT", "web": "https://github.com/achesak/nim-pwd" @@ -1879,7 +2821,13 @@ "name": "spwd", "url": "git://github.com/achesak/nim-spwd", "method": "git", - "tags": ["library", "unix", "spwd", "password", "shadow"], + "tags": [ + "library", + "unix", + "spwd", + "password", + "shadow" + ], "description": "Nim port of Python's spwd module for working with the UNIX shadow password file", "license": "MIT", "web": "https://github.com/achesak/nim-spwd" @@ -1888,7 +2836,12 @@ "name": "grp", "url": "git://github.com/achesak/nim-grp", "method": "git", - "tags": ["library", "unix", "grp", "group"], + "tags": [ + "library", + "unix", + "grp", + "group" + ], "description": "Nim port of Python's grp module for working with the UNIX group database file", "license": "MIT", "web": "https://github.com/achesak/nim-grp" @@ -1897,25 +2850,38 @@ "name": "stopwatch", "url": "https://github.com/rbmz/stopwatch", "method": "git", - "tags": ["timer", "benchmarking"], + "tags": [ + "timer", + "benchmarking" + ], "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", "license": "MIT", "web": "https://github.com/rbmz/stopwatch" }, { - "name": "nimFinLib", - "url": "https://github.com/qqtop/NimFinLib", - "method": "git", - "tags": ["financial"], - "description": "Financial Library for Nim", - "license": "MIT", - "web": "https://github.com/qqtop/NimFinLib" + "name": "nimFinLib", + "url": "https://github.com/qqtop/NimFinLib", + "method": "git", + "tags": [ + "financial" + ], + "description": "Financial Library for Nim", + "license": "MIT", + "web": "https://github.com/qqtop/NimFinLib" }, { "name": "libssh2", "url": "https://github.com/rgv151/libssh2.nim", "method": "git", - "tags": ["lib", "ssh", "ssh2", "openssh", "client", "sftp", "scp"], + "tags": [ + "lib", + "ssh", + "ssh2", + "openssh", + "client", + "sftp", + "scp" + ], "description": "Nim wrapper for libssh2", "license": "MIT", "web": "https://github.com/rgv151/libssh2.nim" @@ -1924,7 +2890,12 @@ "name": "rethinkdb", "url": "https://github.com/rgv151/rethinkdb.nim", "method": "git", - "tags": ["rethinkdb", "driver", "client", "json"], + "tags": [ + "rethinkdb", + "driver", + "client", + "json" + ], "description": "RethinkDB driver for Nim", "license": "MIT", "web": "https://github.com/rgv151/rethinkdb.nim" @@ -1933,7 +2904,9 @@ "name": "dbus", "url": "https://github.com/zielmicha/nim-dbus", "method": "git", - "tags": ["dbus"], + "tags": [ + "dbus" + ], "description": "dbus bindings for Nim", "license": "MIT", "web": "https://github.com/zielmicha/nim-dbus" @@ -1942,7 +2915,10 @@ "name": "lmdb", "url": "https://github.com/fowlmouth/lmdb.nim", "method": "git", - "tags": ["wrapper", "lmdb"], + "tags": [ + "wrapper", + "lmdb" + ], "description": "A wrapper for LMDB the Lightning Memory-Mapped Database", "license": "MIT", "web": "https://github.com/fowlmouth/lmdb.nim" @@ -1951,7 +2927,10 @@ "name": "zip", "url": "https://github.com/nim-lang/zip", "method": "git", - "tags": ["wrapper", "zip"], + "tags": [ + "wrapper", + "zip" + ], "description": "A wrapper for the zip library", "license": "MIT", "web": "https://github.com/nim-lang/zip" @@ -1960,7 +2939,11 @@ "name": "csvtools", "url": "https://github.com/unicredit/csvtools", "method": "git", - "tags": ["CSV", "comma separated values", "TSV"], + "tags": [ + "CSV", + "comma separated values", + "TSV" + ], "description": "Manage CSV files", "license": "Apache License 2.0", "web": "https://github.com/unicredit/csvtools" @@ -1969,7 +2952,11 @@ "name": "httpform", "url": "https://github.com/tulayang/httpform", "method": "git", - "tags": ["request parser", "upload", "html5 file"], + "tags": [ + "request parser", + "upload", + "html5 file" + ], "description": "Http request form parser", "license": "MIT", "web": "https://github.com/tulayang/httpform" @@ -1978,9 +2965,26 @@ "name": "vardene", "url": "https://github.com/Xe/vardene", "method": "git", - "tags": ["command line", "tool", "compiler"], + "tags": [ + "command line", + "tool", + "compiler" + ], "description": "A simple tool to manage multiple installs of Nim.", "license": "MIT", "web": "https://christine.website/projects/Vardene" + }, + { + "name": "expat", + "url": "https://github.com/nim-lang/expat", + "method": "git", + "tags": [ + "expat", + "xml", + "parsing" + ], + "description": "Expat wrapper for Nim", + "license": "MIT", + "web": "https://github.com/nim-lang/expat" } -] +] \ No newline at end of file From 4eb9158778f64838d24844b67099be96fd363a38 Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 18 Aug 2015 12:07:11 +0200 Subject: [PATCH 0102/1381] Added package sphinx --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 71353d9..4d3280a 100644 --- a/packages.json +++ b/packages.json @@ -2986,5 +2986,19 @@ "description": "Expat wrapper for Nim", "license": "MIT", "web": "https://github.com/nim-lang/expat" + }, + { + "name": "sphinx", + "url": "https://github.com/Araq/sphinx", + "method": "git", + "tags": [ + "sphinx", + "wrapper", + "search", + "engine" + ], + "description": "Sphinx wrapper for Nim", + "license": "LGPL", + "web": "https://github.com/Araq/sphinx" } ] \ No newline at end of file From 5a262a07c689964062e395ec19be52382a818c4d Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 19 Aug 2015 01:45:15 +0200 Subject: [PATCH 0103/1381] rewrote packages.json using pretty_json.nim so that it is clean for automatic pull requests via Nimble --- packages.json | 1791 ++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 1389 insertions(+), 402 deletions(-) diff --git a/packages.json b/packages.json index 5e18ed5..0716ae6 100644 --- a/packages.json +++ b/packages.json @@ -3,247 +3,352 @@ "name": "argument_parser", "url": "git://github.com/gradha/argument_parser/", "method": "git", - "tags": ["library", "commandline", "arguments", "switches", "parsing"], + "tags": [ + "library", + "commandline", + "arguments", + "switches", + "parsing" + ], "description": "Provides a complex commandline parser", "license": "MIT", "web": "https://github.com/gradha/argument_parser" }, - { "name": "genieos", "url": "git://github.com/gradha/genieos/", "method": "git", - "tags": ["library", "commandline", "sound", "recycle", "os"], + "tags": [ + "library", + "commandline", + "sound", + "recycle", + "os" + ], "description": "Too awesome procs to be included in nimrod.os module", "license": "MIT", "web": "http://gradha.github.io/genieos/" }, - { "name": "jester", "url": "git://github.com/dom96/jester/", "method": "git", - "tags": ["web", "http", "framework", "dsl"], + "tags": [ + "web", + "http", + "framework", + "dsl" + ], "description": "A sinatra-like web framework for Nimrod.", "license": "MIT", "web": "https://github.com/dom96/jester" }, - { "name": "templates", "url": "https://github.com/onionhammer/nim-templates.git", "method": "git", - "tags": ["web", "html", "template"], + "tags": [ + "web", + "html", + "template" + ], "description": "A simple string templating library for Nimrod.", "license": "BSD", "web": "https://github.com/onionhammer/nim-templates" }, - { "name": "murmur", "url": "git://github.com/olahol/nimrod-murmur/", "method": "git", - "tags": ["hash", "murmur"], + "tags": [ + "hash", + "murmur" + ], "description": "MurmurHash in pure Nimrod.", "license": "MIT", "web": "https://github.com/olahol/nimrod-murmur" }, - { "name": "libtcod-nim", "url": "git://github.com/Vladar4/libtcod-nim/", "method": "git", - "tags": ["roguelike", "game", "library", "engine", "sdl", "opengl", "glsl"], + "tags": [ + "roguelike", + "game", + "library", + "engine", + "sdl", + "opengl", + "glsl" + ], "description": "Wrapper of the libtcod library for the Nimrod language.", "license": "zlib", "web": "https://github.com/Vladar4/libtcod-nim" }, - { "name": "nimgame", "url": "git://github.com/Vladar4/nimgame/", "method": "git", - "tags": ["game", "engine", "sdl"], + "tags": [ + "game", + "engine", + "sdl" + ], "description": "Simple 2D game engine for Nimrod language.", "license": "MIT", "web": "https://github.com/Vladar4/nimgame" }, - { "name": "sfml", "url": "git://github.com/fowlmouth/nimrod-sfml/", "method": "git", - "tags": ["game", "library", "opengl"], + "tags": [ + "game", + "library", + "opengl" + ], "description": "High level OpenGL-based Game Library", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-sfml" }, - { "name": "enet", "url": "git://github.com/fowlmouth/nimrod-enet/", "method": "git", - "tags": ["game", "networking", "udp"], + "tags": [ + "game", + "networking", + "udp" + ], "description": "Wrapper for ENet UDP networking library", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-enet" }, - { "name": "nim-locale", "url": "git://github.com/Amrykid/nim-locale/", "method": "git", - "tags": ["library", "locale", "i18n", "localization", "localisation", "globalization"], + "tags": [ + "library", + "locale", + "i18n", + "localization", + "localisation", + "globalization" + ], "description": "A simple library for localizing Nimrod applications.", "license": "MIT", "web": "https://github.com/Amrykid/nim-locale" }, - { "name": "fowltek", "url": "git://github.com/fowlmouth/nimlibs/", "method": "git", - "tags": ["game", "opengl", "wrappers", "library", "assorted"], + "tags": [ + "game", + "opengl", + "wrappers", + "library", + "assorted" + ], "description": "A collection of reusable modules and wrappers.", "license": "MIT", "web": "https://github.com/fowlmouth/nimlibs" }, - { "name": "nake", "url": "git://github.com/fowlmouth/nake/", "method": "git", - "tags": ["build", "automation", "sortof"], + "tags": [ + "build", + "automation", + "sortof" + ], "description": "make-like for Nimrod. Describe your builds as tasks!", "license": "MIT", "web": "https://github.com/fowlmouth/nake" }, - { "name": "nimrod-glfw", "url": "git://github.com/rafaelvasco/nimrod-glfw/", "method": "git", - "tags": ["library", "glfw", "opengl", "windowing", "game"], + "tags": [ + "library", + "glfw", + "opengl", + "windowing", + "game" + ], "description": "Nimrod bindings for GLFW library.", "license": "MIT", "web": "https://github.com/rafaelvasco/nimrod-glfw" }, - { "name": "chipmunk", "url": "git://github.com/fowlmouth/nimrod-chipmunk/", "method": "git", - "tags": ["library", "physics", "game"], + "tags": [ + "library", + "physics", + "game" + ], "description": "Binding for Chipmunk 6.1", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-chipmunk" }, - { "name": "nim-glfw", "url": "git://github.com/EXetoC/nim-glfw/", "method": "git", - "tags": ["library", "glfw", "opengl", "windowing", "game"], + "tags": [ + "library", + "glfw", + "opengl", + "windowing", + "game" + ], "description": "A high-level GLFW 3 wrapper", "license": "MIT", "web": "https://github.com/EXetoC/nim-glfw" }, - { "name": "nim-ao", "url": "git://github.com/EXetoC/nim-ao/", "method": "git", - "tags": ["library", "audio"], + "tags": [ + "library", + "audio" + ], "description": "A high-level libao wrapper", "license": "MIT", "web": "https://github.com/EXetoC/nim-ao" }, - { "name": "termbox", "url": "git://github.com/fowlmouth/nim-termbox", "method": "git", - "tags": ["library", "terminal", "io"], + "tags": [ + "library", + "terminal", + "io" + ], "description": "Termbox wrapper.", "license": "MIT", "web": "https://github.com/fowlmouth/nim-termbox" }, - { "name": "linagl", "url": "https://bitbucket.org/BitPuffin/linagl", "method": "hg", - "tags": ["library", "opengl", "math", "game"], + "tags": [ + "library", + "opengl", + "math", + "game" + ], "description": "OpenGL math library", "license": "CC0", "web": "https://bitbucket.org/BitPuffin/linagl" }, - { "name": "kwin", "url": "git://github.com/reactormonk/nim-kwin", "method": "git", - "tags": ["library", "javascript", "kde"], + "tags": [ + "library", + "javascript", + "kde" + ], "description": "KWin JavaScript API wrapper", "license": "MIT", "web": "https://github.com/reactormonk/nim-kwin" }, - { "name": "opencv", "url": "git://github.com/dom96/nim-opencv", "method": "git", - "tags": ["library", "wrapper", "opencv", "image", "processing"], + "tags": [ + "library", + "wrapper", + "opencv", + "image", + "processing" + ], "description": "OpenCV wrapper", "license": "MIT", "web": "https://github.com/dom96/nim-opencv" }, - { "name": "nimble", "url": "git://github.com/nim-lang/nimble", "method": "git", - "tags": ["app", "binary", "package", "manager"], + "tags": [ + "app", + "binary", + "package", + "manager" + ], "description": "Nimble package manager", "license": "BSD", "web": "https://github.com/nim-lang/nimble" }, - { "name": "aporia", "url": "git://github.com/nim-lang/Aporia", "method": "git", - "tags": ["app", "binary", "ide", "gtk", "nimrod"], + "tags": [ + "app", + "binary", + "ide", + "gtk", + "nimrod" + ], "description": "A Nimrod IDE.", "license": "GPLv2", "web": "https://github.com/nim-lang/Aporia" }, - { "name": "c2nim", "url": "git://github.com/nim-lang/c2nim", "method": "git", - "tags": ["app", "binary", "tool", "header", "C", "nimrod"], + "tags": [ + "app", + "binary", + "tool", + "header", + "C", + "nimrod" + ], "description": "c2nim is a tool to translate Ansi C code to Nimrod.", "license": "MIT", "web": "https://github.com/nim-lang/c2nim" }, - { "name": "pas2nim", "url": "git://github.com/nim-lang/pas2nim", "method": "git", - "tags": ["app", "binary", "tool", "Pascal", "nimrod"], + "tags": [ + "app", + "binary", + "tool", + "Pascal", + "nimrod" + ], "description": "pas2nim is a tool to translate Pascal code to Nimrod.", "license": "MIT", "web": "https://github.com/nim-lang/pas2nim" }, - { "name": "ipsumgenera", "url": "git://github.com/dom96/ipsumgenera", "method": "git", - "tags": ["app", "binary", "blog", "static", "generator"], + "tags": [ + "app", + "binary", + "blog", + "static", + "generator" + ], "description": "Static blog generator ala Jekyll.", "license": "MIT", "web": "https://github.com/dom96/ipsumgenera" @@ -252,7 +357,12 @@ "name": "clibpp", "url": "https://github.com/onionhammer/clibpp.git", "method": "git", - "tags": ["import", "C++", "library", "wrap"], + "tags": [ + "import", + "C++", + "library", + "wrap" + ], "description": "Easy way to 'Mock' C++ interface", "license": "MIT", "web": "https://github.com/onionhammer/clibpp" @@ -261,107 +371,132 @@ "name": "pastebin", "url": "git://github.com/achesak/nim-pastebin", "method": "git", - "tags": ["library", "wrapper", "pastebin"], + "tags": [ + "library", + "wrapper", + "pastebin" + ], "description": "Pastebin API wrapper", "license": "MIT", "web": "https://github.com/achesak/nim-pastebin" }, - { "name": "yahooweather", "url": "git://github.com/achesak/nim-yahooweather", "method": "git", - "tags": ["library", "wrapper", "weather"], + "tags": [ + "library", + "wrapper", + "weather" + ], "description": "Yahoo! Weather API wrapper", "license": "MIT", "web": "https://github.com/achesak/nim-yahooweather" }, - { "name": "noaa", "url": "git://github.com/achesak/nim-noaa", "method": "git", - "tags": ["library", "wrapper", "weather"], + "tags": [ + "library", + "wrapper", + "weather" + ], "description": "NOAA weather API wrapper", "license": "MIT", "web": "https://github.com/achesak/nim-noaa" }, - { "name": "rss", "url": "git://github.com/achesak/nim-rss", "method": "git", - "tags": ["library", "rss", "xml", "syndication"], + "tags": [ + "library", + "rss", + "xml", + "syndication" + ], "description": "RSS library", "license": "MIT", "web": "https://github.com/achesak/nim-rss" }, - { "name": "extmath", "url": "git://github.com/achesak/extmath.nim", "method": "git", - "tags": ["library", "math", "trigonometry"], + "tags": [ + "library", + "math", + "trigonometry" + ], "description": "Nim math library", "license": "MIT", "web": "https://github.com/achesak/extmath.nim" }, - { "name": "gtk2", "url": "git://github.com/nim-lang/gtk2", "method": "git", - "tags": ["wrapper", "gui", "gtk"], + "tags": [ + "wrapper", + "gui", + "gtk" + ], "description": "Wrapper for gtk2, a feature rich toolkit for creating graphical user interfaces", "license": "MIT", "web": "https://github.com/nim-lang/gtk2" }, - { "name": "cairo", "url": "git://github.com/nim-lang/cairo", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper for cairo, a vector graphics library with display and print output", "license": "MIT", "web": "https://github.com/nim-lang/cairo" }, - { "name": "x11", "url": "git://github.com/nim-lang/x11", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper for X11", "license": "MIT", "web": "https://github.com/nim-lang/x11" }, - { "name": "opengl", "url": "git://github.com/nim-lang/opengl", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "High-level and low-level wrapper for OpenGL", "license": "MIT", "web": "https://github.com/nim-lang/opengl" }, - { "name": "lua", "url": "git://github.com/nim-lang/lua", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper to interface with the Lua interpreter", "license": "MIT", "web": "https://github.com/nim-lang/lua" }, - { "name": "tcl", "url": "git://github.com/nim-lang/tcl", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper for the TCL programming language", "license": "MIT", "web": "https://github.com/nim-lang/tcl" @@ -370,7 +505,13 @@ "name": "glm", "url": "https://github.com/stavenko/nim-glm", "method": "git", - "tags": ["opengl", "math", "matrix", "vector", "glsl"], + "tags": [ + "opengl", + "math", + "matrix", + "vector", + "glsl" + ], "description": "Port of c++ glm library with shader-like syntax", "license": "MIT", "web": "https://github.com/stavenko/nim-glm" @@ -379,200 +520,298 @@ "name": "python", "url": "git://github.com/nim-lang/python", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "Wrapper to interface with Python interpreter", "license": "MIT", "web": "https://github.com/nim-lang/python" }, - { "name": "NimBorg", "url": "git://github.com/micklat/NimBorg", "method": "git", - "tags": ["wrapper"], + "tags": [ + "wrapper" + ], "description": "High-level and low-level interfaces to python and lua", "license": "MIT", "web": "https://github.com/micklat/NimBorg" }, - { "name": "sha1", "url": "https://github.com/onionhammer/sha1", "method": "git", - "tags": ["port", "hash", "sha1"], + "tags": [ + "port", + "hash", + "sha1" + ], "description": "SHA-1 produces a 160-bit (20-byte) hash value from arbitrary input", "license": "BSD" }, - { "name": "dropbox_filename_sanitizer", "url": "git://github.com/gradha/dropbox_filename_sanitizer/", "method": "git", - "tags": ["dropbox"], + "tags": [ + "dropbox" + ], "description": "Tool to clean up filenames shared on Dropbox", "license": "MIT", - "web": "https://github.com/gradha/dropbox_filename_sanitizer/" + "web": "https://github.com/gradha/dropbox_filename_sanitizer/" }, - { "name": "csv", "url": "git://github.com/achesak/nim-csv", "method": "git", - "tags": ["csv", "parsing", "stringify", "library"], + "tags": [ + "csv", + "parsing", + "stringify", + "library" + ], "description": "Library for parsing, stringifying, reading, and writing CSV (comma separated value) files", "license": "MIT", - "web": "https://github.com/achesak/nim-csv" + "web": "https://github.com/achesak/nim-csv" }, - { "name": "geonames", "url": "git://github.com/achesak/nim-geonames", "method": "git", - "tags": ["library", "wrapper", "geography"], + "tags": [ + "library", + "wrapper", + "geography" + ], "description": "GeoNames API wrapper", "license": "MIT", - "web": "https://github.com/achesak/nim-geonames" + "web": "https://github.com/achesak/nim-geonames" }, - { "name": "gravatar", "url": "git://github.com/achesak/nim-gravatar", "method": "git", - "tags": ["library", "wrapper", "gravatar"], + "tags": [ + "library", + "wrapper", + "gravatar" + ], "description": "Gravatar API wrapper", "license": "MIT", - "web": "https://github.com/achesak/nim-gravatar" + "web": "https://github.com/achesak/nim-gravatar" }, - { "name": "coverartarchive", "url": "git://github.com/achesak/nim-coverartarchive", "method": "git", - "tags": ["library", "wrapper", "cover art", "music", "metadata"], + "tags": [ + "library", + "wrapper", + "cover art", + "music", + "metadata" + ], "description": "Cover Art Archive API wrapper", "license": "MIT", - "web": "http://github.com/achesak/nim-coverartarchive" + "web": "http://github.com/achesak/nim-coverartarchive" }, - { "name": "nim-ogg", "url": "https://bitbucket.org/BitPuffin/nim-ogg", "method": "hg", - "tags": ["library", "wrapper", "binding", "audio", "sound", "video", "metadata", "media"], + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "video", + "metadata", + "media" + ], "description": "Binding to libogg", "license": "CC0" }, - { "name": "nim-vorbis", "url": "https://bitbucket.org/BitPuffin/nim-vorbis", "method": "hg", - "tags": ["library", "wrapper", "binding", "audio", "sound", "metadata", "media"], + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "metadata", + "media" + ], "description": "Binding to libvorbis", "license": "CC0" }, - { "name": "nim-portaudio", "url": "https://bitbucket.org/BitPuffin/nim-portaudio", "method": "hg", - "tags": ["library", "wrapper", "binding", "audio", "sound", "media", "io"], + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "media", + "io" + ], "description": "Binding to portaudio", "license": "CC0" }, - { "name": "commandeer", "url": "git://github.com/fenekku/commandeer", "method": "git", - "tags": ["library", "commandline", "arguments", "switches", "parsing", "options"], + "tags": [ + "library", + "commandline", + "arguments", + "switches", + "parsing", + "options" + ], "description": "Provides a small command line parsing DSL (domain specific language)", "license": "MIT", "web": "https://github.com/fenekku/commandeer" }, - { "name": "scrypt.nim", "url": "https://bitbucket.org/BitPuffin/scrypt.nim", "method": "hg", - "tags": ["library", "wrapper", "binding", "crypto", "cryptography", "hash", "password", "security"], + "tags": [ + "library", + "wrapper", + "binding", + "crypto", + "cryptography", + "hash", + "password", + "security" + ], "description": "Binding and utilities for scrypt", "license": "CC0" }, - { "name": "bloom", "url": "git://github.com/boydgreenfield/nimrod-bloom/", "method": "git", - "tags": ["Bloom filter", "Bloom", "probabilistic", "data structure", "set membership", "MurmurHash", "MurmurHash3"], + "tags": [ + "Bloom filter", + "Bloom", + "probabilistic", + "data structure", + "set membership", + "MurmurHash", + "MurmurHash3" + ], "description": "Efficient Bloom filter implementation in Nimrod using MurmurHash3.", "license": "MIT", "web": "https://www.github.com/boydgreenfield/nimrod-bloom/" }, - { "name": "awesome_rmdir", "url": "git://github.com/gradha/awesome_rmdir/", "method": "git", - "tags": ["rmdir", "awesome", "commandline"], + "tags": [ + "rmdir", + "awesome", + "commandline" + ], "description": "Command to remove acceptably empty directories.", "license": "MIT", "web": "https://github.com/gradha/awesome_rmdir/" }, - { "name": "nimalpm", "url": "git://github.com/barcharcraz/nimalpm/", "method": "git", - "tags": ["alpm", "wrapper", "binding", "library"], + "tags": [ + "alpm", + "wrapper", + "binding", + "library" + ], "description": "A nimrod wrapper for libalpm", "license": "GPLv2", "web": "https://www.github.com/barcharcraz/nimalpm/" }, - { "name": "nimlibpng", - "url":"git://github.com/barcharcraz/nimlibpng", + "url": "git://github.com/barcharcraz/nimlibpng", "method": "git", - "tags": ["png", "wrapper", "library", "libpng", "image"], + "tags": [ + "png", + "wrapper", + "library", + "libpng", + "image" + ], "description": "Nimrod wrapper for the libpng library", "license": "libpng", "web": "https://github.com/barcharcraz/nimlibpng" }, - { - "name":"sdl2", - "url":"git://github.com/nim-lang/sdl2", - "method":"git", - "tags":["wrapper","media","audio","video"], - "description":"Wrapper for SDL 2.x", - "license":"MIT", - "web":"https://github.com/nim-lang/sdl2" - }, - - { - "name":"assimp", - "url":"git://github.com/barcharcraz/nim-assimp", - "method":"git", - "tags":["wrapper","media","mesh","import","game"], - "description":"Wrapper for the assimp library", - "license":"MIT", - "web":"https://github.com/barcharcraz/nim-assimp" + "name": "sdl2", + "url": "git://github.com/nim-lang/sdl2", + "method": "git", + "tags": [ + "wrapper", + "media", + "audio", + "video" + ], + "description": "Wrapper for SDL 2.x", + "license": "MIT", + "web": "https://github.com/nim-lang/sdl2" }, { - "name":"freeimage", - "url":"git://github.com/barcharcraz/nim-freeimage", - "method":"git", - "tags":["wrapper","media","image","import","game"], - "description":"Wrapper for the FreeImage library", - "license":"MIT", - "web":"https://github.com/barcharcraz/nim-freeimage" + "name": "assimp", + "url": "git://github.com/barcharcraz/nim-assimp", + "method": "git", + "tags": [ + "wrapper", + "media", + "mesh", + "import", + "game" + ], + "description": "Wrapper for the assimp library", + "license": "MIT", + "web": "https://github.com/barcharcraz/nim-assimp" + }, + { + "name": "freeimage", + "url": "git://github.com/barcharcraz/nim-freeimage", + "method": "git", + "tags": [ + "wrapper", + "media", + "image", + "import", + "game" + ], + "description": "Wrapper for the FreeImage library", + "license": "MIT", + "web": "https://github.com/barcharcraz/nim-freeimage" }, { "name": "bcrypt", "url": "git://github.com/ithkuil/bcryptnim/", "method": "git", - "tags": ["hash", "crypto", "password", "bcrypt", "library"], + "tags": [ + "hash", + "crypto", + "password", + "bcrypt", + "library" + ], "description": "Wraps the bcrypt (blowfish) library for creating encrypted hashes (useful for passwords)", "license": "BSD", "web": "https://www.github.com/ithkuil/bcryptnim/" @@ -581,7 +820,9 @@ "name": "opencl", "url": "git://github.com/nim-lang/opencl", "method": "git", - "tags": ["library"], + "tags": [ + "library" + ], "description": "Low-level wrapper for OpenCL", "license": "MIT", "web": "https://github.com/nim-lang/opencl" @@ -590,25 +831,38 @@ "name": "DevIL", "url": "git://github.com/Varriount/DevIL", "method": "git", - "tags": ["image", "library", "graphics", "wrapper"], + "tags": [ + "image", + "library", + "graphics", + "wrapper" + ], "description": "Wrapper for the DevIL image library", "license": "MIT", "web": "https://github.com/Varriount/DevIL" }, { - "name":"signals", - "url":"git://github.com/fowlmouth/signals.nim", - "method":"git", - "tags":["event-based","observer pattern","library"], - "description":"Signals/slots library.", - "license":"MIT", - "web":"https://github.com/fowlmouth/signals.nim" + "name": "signals", + "url": "git://github.com/fowlmouth/signals.nim", + "method": "git", + "tags": [ + "event-based", + "observer pattern", + "library" + ], + "description": "Signals/slots library.", + "license": "MIT", + "web": "https://github.com/fowlmouth/signals.nim" }, { "name": "number_files", "url": "git://github.com/gradha/number_files/", "method": "git", - "tags": ["rename", "filename", "finder"], + "tags": [ + "rename", + "filename", + "finder" + ], "description": "Command to add counter suffix/prefix to a list of files.", "license": "MIT", "web": "https://github.com/gradha/number_files/" @@ -617,107 +871,161 @@ "name": "redissessions", "url": "git://github.com/ithkuil/redissessions/", "method": "git", - "tags": ["jester", "sessions", "redis"], + "tags": [ + "jester", + "sessions", + "redis" + ], "description": "Redis-backed sessions for jester", "license": "MIT", "web": "https://github.com/ithkuil/redissessions/" }, { - "name":"horde3d", - "url":"git://github.com/fowlmouth/horde3d", - "method":"git", - "tags":["graphics","3d","rendering","wrapper"], - "description":"Wrapper for Horde3D, a small open source 3D rendering engine.", - "license":"WTFPL", - "web":"https://github.com/fowlmouth/horde3d" + "name": "horde3d", + "url": "git://github.com/fowlmouth/horde3d", + "method": "git", + "tags": [ + "graphics", + "3d", + "rendering", + "wrapper" + ], + "description": "Wrapper for Horde3D, a small open source 3D rendering engine.", + "license": "WTFPL", + "web": "https://github.com/fowlmouth/horde3d" }, { - "name":"mongo", - "url":"git://github.com/nim-lang/mongo", - "method":"git", - "tags":["library","wrapper","database"], - "description":"Bindings and a high-level interface for MongoDB", - "license":"MIT", - "web":"https://github.com/nim-lang/mongo" - }, - { - "name":"allegro5", - "url":"git://github.com/fowlmouth/allegro5", - "method":"git", - "tags":["wrapper","graphics","games","opengl","audio"], - "description":"Wrapper for Allegro version 5.X", - "license":"MIT", - "web":"https://github.com/fowlmouth/allegro5" - }, - { - "name":"physfs", - "url":"git://github.com/fowlmouth/physfs", - "method":"git", - "tags":["wrapper","filesystem","archives"], - "description":"A library to provide abstract access to various archives.", - "license":"WTFPL", - "web":"https://github.com/fowlmouth/physfs" - }, - { - "name":"shoco", - "url":"https://github.com/onionhammer/shoconim.git", - "method":"git", - "tags":["compression","shoco"], - "description":"A fast compressor for short strings", + "name": "mongo", + "url": "git://github.com/nim-lang/mongo", + "method": "git", + "tags": [ + "library", + "wrapper", + "database" + ], + "description": "Bindings and a high-level interface for MongoDB", "license": "MIT", - "web":"https://github.com/onionhammer/shoconim" + "web": "https://github.com/nim-lang/mongo" }, { - "name":"murmur3", - "url":"git://github.com/boydgreenfield/nimrod-murmur/", - "method":"git", - "tags":["MurmurHash","MurmurHash3", "murmur", "hash", "hashing"], - "description":"A simple MurmurHash3 wrapper for Nimrod", + "name": "allegro5", + "url": "git://github.com/fowlmouth/allegro5", + "method": "git", + "tags": [ + "wrapper", + "graphics", + "games", + "opengl", + "audio" + ], + "description": "Wrapper for Allegro version 5.X", "license": "MIT", - "web":"https://github.com/boydgreenfield/nimrod-murmur/" + "web": "https://github.com/fowlmouth/allegro5" }, { - "name":"hex", - "url":"https://github.com/esbullington/nimrod-hex", - "method":"git", - "tags":["hex","encoding"], - "description":"A simple hex package for Nimrod", + "name": "physfs", + "url": "git://github.com/fowlmouth/physfs", + "method": "git", + "tags": [ + "wrapper", + "filesystem", + "archives" + ], + "description": "A library to provide abstract access to various archives.", + "license": "WTFPL", + "web": "https://github.com/fowlmouth/physfs" + }, + { + "name": "shoco", + "url": "https://github.com/onionhammer/shoconim.git", + "method": "git", + "tags": [ + "compression", + "shoco" + ], + "description": "A fast compressor for short strings", "license": "MIT", - "web":"https://github.com/esbullington/nimrod-hex" + "web": "https://github.com/onionhammer/shoconim" }, { - "name":"strfmt", + "name": "murmur3", + "url": "git://github.com/boydgreenfield/nimrod-murmur/", + "method": "git", + "tags": [ + "MurmurHash", + "MurmurHash3", + "murmur", + "hash", + "hashing" + ], + "description": "A simple MurmurHash3 wrapper for Nimrod", + "license": "MIT", + "web": "https://github.com/boydgreenfield/nimrod-murmur/" + }, + { + "name": "hex", + "url": "https://github.com/esbullington/nimrod-hex", + "method": "git", + "tags": [ + "hex", + "encoding" + ], + "description": "A simple hex package for Nimrod", + "license": "MIT", + "web": "https://github.com/esbullington/nimrod-hex" + }, + { + "name": "strfmt", "url": "https://bitbucket.org/lyro/strfmt", "method": "hg", - "tags":["library"], - "description":"A string formatting library inspired by Python's `format`.", + "tags": [ + "library" + ], + "description": "A string formatting library inspired by Python's `format`.", "license": "MIT", - "web": "https://lyro.bitbucket.org/strfmt" + "web": "https://lyro.bitbucket.org/strfmt" }, { - "name":"jade-nim", - "url":"git://github.com/idlewan/jade-nim", - "method":"git", - "tags":["template","jade","web","dsl","html"], - "description":"Compiles jade templates to Nimrod procedures.", + "name": "jade-nim", + "url": "git://github.com/idlewan/jade-nim", + "method": "git", + "tags": [ + "template", + "jade", + "web", + "dsl", + "html" + ], + "description": "Compiles jade templates to Nimrod procedures.", "license": "MIT", - "web":"https://github.com/idlewan/jade-nim" + "web": "https://github.com/idlewan/jade-nim" }, { - "name":"gh_nimrod_doc_pages", + "name": "gh_nimrod_doc_pages", "url": "git://github.com/gradha/gh_nimrod_doc_pages", "method": "git", - "tags":["commandline", "web", "automation", "documentation"], - "description":"Generates a GitHub documentation website for Nimrod projects.", + "tags": [ + "commandline", + "web", + "automation", + "documentation" + ], + "description": "Generates a GitHub documentation website for Nimrod projects.", "license": "MIT", "web": "http://gradha.github.io/gh_nimrod_doc_pages/" }, { - "name":"midnight_dynamite", + "name": "midnight_dynamite", "url": "git://github.com/gradha/midnight_dynamite", "method": "git", - "tags":["wrapper", "library", "html", "markdown", "md"], - "description":"Wrapper for the markdown rendering hoedown library", + "tags": [ + "wrapper", + "library", + "html", + "markdown", + "md" + ], + "description": "Wrapper for the markdown rendering hoedown library", "license": "MIT", "web": "http://gradha.github.io/midnight_dynamite/" }, @@ -725,7 +1033,11 @@ "name": "rsvg", "url": "git://github.com/def-/rsvg", "method": "git", - "tags": ["wrapper", "library", "graphics"], + "tags": [ + "wrapper", + "library", + "graphics" + ], "description": "Wrapper for librsvg, a Scalable Vector Graphics (SVG) rendering library", "license": "MIT", "web": "https://github.com/def-/rsvg" @@ -734,43 +1046,69 @@ "name": "emerald", "url": "git://github.com/flyx/emerald", "method": "git", - "tags": ["dsl", "html", "template", "web"], + "tags": [ + "dsl", + "html", + "template", + "web" + ], "description": "macro-based HTML templating engine", "license": "WTFPL", "web": "https://flyx.github.io/emerald/" }, { - "name": "niminst", - "url": "git://github.com/nim-lang/niminst", - "method": "git", - "tags": ["app", "binary", "tool", "installation", "generator", "nim"], - "description": "tool to generate installers for Nim programs", - "license": "MIT", - "web": "https://github.com/nim-lang/niminst" + "name": "niminst", + "url": "git://github.com/nim-lang/niminst", + "method": "git", + "tags": [ + "app", + "binary", + "tool", + "installation", + "generator", + "nim" + ], + "description": "tool to generate installers for Nim programs", + "license": "MIT", + "web": "https://github.com/nim-lang/niminst" }, { - "name": "redis", - "url": "git://github.com/nim-lang/redis", - "method": "git", - "tags": ["redis", "client", "library"], - "description": "official redis client for Nim", - "license": "MIT", - "web": "https://github.com/nim-lang/redis" + "name": "redis", + "url": "git://github.com/nim-lang/redis", + "method": "git", + "tags": [ + "redis", + "client", + "library" + ], + "description": "official redis client for Nim", + "license": "MIT", + "web": "https://github.com/nim-lang/redis" + }, + { + "name": "dialogs", + "url": "git://github.com/nim-lang/dialogs", + "method": "git", + "tags": [ + "library", + "ui", + "gui", + "dialog", + "file" + ], + "description": "wraps GTK+ or Windows' open file dialogs", + "license": "MIT", + "web": "https://github.com/nim-lang/dialogs" }, { - "name": "dialogs", - "url": "git://github.com/nim-lang/dialogs", - "method": "git", - "tags": ["library", "ui", "gui", "dialog", "file"], - "description": "wraps GTK+ or Windows' open file dialogs", - "license": "MIT", - "web": "https://github.com/nim-lang/dialogs" - }, - { "name": "vectors", "url": "git://github.com/blamestross/nimrod-vectors", "method": "git", - "tags": ["math", "vectors","library"], + "tags": [ + "math", + "vectors", + "library" + ], "description": "Simple multidimensional vector math", "license": "MIT", "web": "https://github.com/blamestross/nimrod-vectors" @@ -779,7 +1117,12 @@ "name": "bitarray", "url": "git://github.com/refgenomics/nimrod-bitarray/", "method": "git", - "tags": ["Bit arrays", "Bit sets", "Bit vectors", "Data structures"], + "tags": [ + "Bit arrays", + "Bit sets", + "Bit vectors", + "Data structures" + ], "description": "mmap-backed bitarray implementation in Nimrod..", "license": "MIT", "web": "https://www.github.com/refgenomics/nimrod-bitarray/" @@ -788,25 +1131,37 @@ "name": "appdirs", "url": "git://github.com/MrJohz/appdirs", "method": "git", - "tags": ["utility", "filesystem"], + "tags": [ + "utility", + "filesystem" + ], "description": "A utility library to find the directory you need to app in.", "license": "MIT", "web": "https://github.com/MrJohz/appdirs" }, { - "name": "nim-sndfile", - "url": "git://github.com/julienaubert/nim-sndfile", - "method": "git", - "tags": ["audio", "wav", "wrapper", "libsndfile"], - "description": "A wrapper of libsndfile", - "license": "MIT", - "web": "https://github.com/julienaubert/nim-sndfile" + "name": "nim-sndfile", + "url": "git://github.com/julienaubert/nim-sndfile", + "method": "git", + "tags": [ + "audio", + "wav", + "wrapper", + "libsndfile" + ], + "description": "A wrapper of libsndfile", + "license": "MIT", + "web": "https://github.com/julienaubert/nim-sndfile" }, { "name": "bigints", "url": "git://github.com/def-/bigints", "method": "git", - "tags": ["math", "library", "numbers"], + "tags": [ + "math", + "library", + "numbers" + ], "description": "Arbitrary-precision integers", "license": "MIT", "web": "https://github.com/def-/bigints" @@ -815,7 +1170,10 @@ "name": "iterutils", "url": "git://github.com/def-/iterutils", "method": "git", - "tags": ["library", "iterators"], + "tags": [ + "library", + "iterators" + ], "description": "Functional operations for iterators and slices, similar to sequtils", "license": "MIT", "web": "https://github.com/def-/iterutils" @@ -824,7 +1182,11 @@ "name": "hastyscribe", "url": "git://github.com/h3rald/hastyscribe", "method": "git", - "tags": ["markdown", "html", "publishing"], + "tags": [ + "markdown", + "html", + "publishing" + ], "description": "Self-contained markdown compiler generating self-contained HTML documents", "license": "MIT", "web": "https://h3rald.com/hastyscribe" @@ -833,7 +1195,11 @@ "name": "nim-nanomsg", "url": "git://github.com/def-/nim-nanomsg", "method": "git", - "tags": ["library", "wrapper", "networking"], + "tags": [ + "library", + "wrapper", + "networking" + ], "description": "Wrapper for the nanomsg socket library that provides several common communication patterns", "license": "MIT", "web": "https://github.com/def-/nim-nanomsg" @@ -842,7 +1208,12 @@ "name": "directnimrod", "url": "https://bitbucket.org/barcharcraz/directnimrod", "method": "git", - "tags": ["library", "wrapper", "graphics", "windows"], + "tags": [ + "library", + "wrapper", + "graphics", + "windows" + ], "description": "Wrapper for microsoft's DirectX libraries", "license": "MS-PL", "web": "https://bitbucket.org/barcharcraz/directnimrod" @@ -851,7 +1222,11 @@ "name": "imghdr", "url": "git://github.com/achesak/nim-imghdr", "method": "git", - "tags": ["image", "formats", "files"], + "tags": [ + "image", + "formats", + "files" + ], "description": "Library for detecting the format of an image", "license": "MIT", "web": "https://github.com/achesak/nim-imghdr" @@ -860,7 +1235,10 @@ "name": "csv2json", "url": "git://github.com/achesak/nim-csv2json", "method": "git", - "tags": ["csv", "json"], + "tags": [ + "csv", + "json" + ], "description": "Convert CSV files to JSON", "license": "MIT", "web": "https://github.com/achesak/nim-csv2json" @@ -869,7 +1247,11 @@ "name": "vecmath", "url": "git://github.com/barcharcraz/vecmath", "method": "git", - "tags": ["library", "math", "vector"], + "tags": [ + "library", + "math", + "vector" + ], "description": "various vector maths utils for nimrod", "license": "MIT", "web": "https://github.com/barcharcraz/vecmath" @@ -878,7 +1260,13 @@ "name": "lazy_rest", "url": "git://github.com/gradha/lazy_rest", "method": "git", - "tags": ["library", "rst", "rest", "text", "html"], + "tags": [ + "library", + "rst", + "rest", + "text", + "html" + ], "description": "Simple reST HTML generation with some extras.", "license": "MIT", "web": "https://github.com/gradha/lazy_rest" @@ -887,7 +1275,11 @@ "name": "Phosphor", "url": "git://github.com/barcharcraz/Phosphor", "method": "git", - "tags": ["library", "opengl", "graphics"], + "tags": [ + "library", + "opengl", + "graphics" + ], "description": "eaiser use of OpenGL and GLSL shaders", "license": "MIT", "web": "https://github.com/barcharcraz/Phosphor" @@ -896,7 +1288,14 @@ "name": "colorsys", "url": "git://github.com/achesak/nim-colorsys", "method": "git", - "tags": ["library", "colors", "rgb", "yiq", "hls", "hsv"], + "tags": [ + "library", + "colors", + "rgb", + "yiq", + "hls", + "hsv" + ], "description": "Convert between RGB, YIQ, HLS, and HSV color systems.", "license": "MIT", "web": "https://github.com/achesak/nim-colorsys" @@ -905,7 +1304,12 @@ "name": "pythonfile", "url": "git://github.com/achesak/nim-pythonfile", "method": "git", - "tags": ["library", "python", "files", "file"], + "tags": [ + "library", + "python", + "files", + "file" + ], "description": "Wrapper of the file procedures to provide an interface as similar as possible to that of Python", "license": "MIT", "web": "https://github.com/achesak/nim-pythonfile" @@ -914,7 +1318,13 @@ "name": "sndhdr", "url": "git://github.com/achesak/nim-sndhdr", "method": "git", - "tags": ["library", "formats", "files", "sound", "audio"], + "tags": [ + "library", + "formats", + "files", + "sound", + "audio" + ], "description": "Library for detecting the format of a sound file", "license": "MIT", "web": "https://github.com/achesak/nim-sndhdr" @@ -923,7 +1333,11 @@ "name": "irc", "url": "git://github.com/nim-lang/irc", "method": "git", - "tags": ["library", "irc", "network"], + "tags": [ + "library", + "irc", + "network" + ], "description": "Implements a simple IRC client.", "license": "MIT", "web": "https://github.com/nim-lang/irc" @@ -932,7 +1346,11 @@ "name": "random", "url": "git://github.com/BlaXpirit/nim-random", "method": "git", - "tags": ["library", "algorithms", "random"], + "tags": [ + "library", + "algorithms", + "random" + ], "description": "Pseudo-random number generation library inspired by Python", "license": "MIT", "web": "https://github.com/BlaXpirit/nim-random" @@ -941,7 +1359,13 @@ "name": "zmq", "url": "git://github.com/nim-lang/nim-zmq", "method": "git", - "tags": ["library", "wrapper", "zeromq", "messaging", "queue"], + "tags": [ + "library", + "wrapper", + "zeromq", + "messaging", + "queue" + ], "description": "ZeroMQ 4 wrapper", "license": "MIT", "web": "https://github.com/nim-lang/nim-zmq" @@ -950,7 +1374,11 @@ "name": "uuid", "url": "git://github.com/idlewan/nim-uuid", "method": "git", - "tags": ["library", "wrapper", "uuid"], + "tags": [ + "library", + "wrapper", + "uuid" + ], "description": "UUID wrapper", "license": "MIT", "web": "https://github.com/idlewan/nim-uuid" @@ -959,7 +1387,12 @@ "name": "robotparser", "url": "git://github.com/achesak/nim-robotparser", "method": "git", - "tags": ["library", "useragent", "robots", "robot.txt"], + "tags": [ + "library", + "useragent", + "robots", + "robot.txt" + ], "description": "Determine if a useragent can access a URL using robots.txt", "license": "MIT", "web": "https://github.com/achesak/nim-robotparser" @@ -968,7 +1401,11 @@ "name": "epub", "url": "git://github.com/achesak/nim-epub", "method": "git", - "tags": ["library", "epub", "e-book"], + "tags": [ + "library", + "epub", + "e-book" + ], "description": "Module for working with EPUB e-book files", "license": "MIT", "web": "https://github.com/achesak/nim-epub" @@ -977,7 +1414,10 @@ "name": "hashids", "url": "git://github.com/achesak/nim-hashids", "method": "git", - "tags": ["library", "hashids"], + "tags": [ + "library", + "hashids" + ], "description": "Nim implementation of Hashids", "license": "MIT", "web": "https://github.com/achesak/nim-hashids" @@ -986,7 +1426,11 @@ "name": "openssl_evp", "url": "git://github.com/cowboy-coders/nim-openssl-evp", "method": "git", - "tags": ["library", "crypto", "openssl"], + "tags": [ + "library", + "crypto", + "openssl" + ], "description": "Wrapper for OpenSSL's EVP interface", "license": "OpenSSL License and SSLeay License", "web": "https://github.com/cowboy-coders/nim-openssl-evp" @@ -995,7 +1439,12 @@ "name": "monad", "url": "git://github.com/superfunc/monad", "method": "git", - "tags": ["library", "functional", "monad", "functor"], + "tags": [ + "library", + "functional", + "monad", + "functor" + ], "description": "basic monadic data types for Nim", "license": "BSD3", "web": "https://github.com/superfunc/monad" @@ -1004,7 +1453,11 @@ "name": "eternity", "url": "git://github.com/hiteshjasani/nim-eternity", "method": "git", - "tags": ["library", "time", "format"], + "tags": [ + "library", + "time", + "format" + ], "description": "Humanize elapsed time", "license": "MIT", "web": "https://github.com/hiteshjasani/nim-eternity" @@ -1013,7 +1466,12 @@ "name": "gmp", "url": "https://github.com/FedeOmoto/nim-gmp", "method": "git", - "tags": ["library", "bignum", "numbers", "math"], + "tags": [ + "library", + "bignum", + "numbers", + "math" + ], "description": "wrapper for the GNU multiple precision arithmetic library (GMP)", "license": "LGPLv3 or GPLv2", "web": "https://github.com/FedeOmoto/nim-gmp" @@ -1022,7 +1480,12 @@ "name": "ludens", "url": "git://github.com/rnentjes/nim-ludens", "method": "git", - "tags": ["library", "game", "opengl", "sfml"], + "tags": [ + "library", + "game", + "opengl", + "sfml" + ], "description": "Little game library using opengl and sfml", "license": "MIT", "web": "https://github.com/rnentjes/nim-ludens" @@ -1031,7 +1494,11 @@ "name": "ffbookmarks", "url": "git://github.com/achesak/nim-ffbookmarks", "method": "git", - "tags": ["firefox", "bookmarks", "library"], + "tags": [ + "firefox", + "bookmarks", + "library" + ], "description": "Nim module for working with Firefox bookmarks", "license": "MIT", "web": "https://github.com/achesak/nim-ffbookmarks" @@ -1040,7 +1507,12 @@ "name": "moustachu", "url": "https://github.com/fenekku/moustachu.git", "method": "git", - "tags": ["web", "html", "template", "mustache"], + "tags": [ + "web", + "html", + "template", + "mustache" + ], "description": "Mustache templating for Nim.", "license": "MIT", "web": "https://github.com/fenekku/moustachu" @@ -1049,7 +1521,12 @@ "name": "easy-bcrypt", "url": "https://github.com/flaviut/easy-bcrypt.git", "method": "git", - "tags": ["hash", "crypto", "password", "bcrypt"], + "tags": [ + "hash", + "crypto", + "password", + "bcrypt" + ], "description": "simple wrapper providing a convenient interface for the bcrypt password hashing algorithm", "license": "CC0", "web": "https://github.com/flaviut/easy-bcrypt/blob/master/easy-bcrypt.nimble" @@ -1058,7 +1535,11 @@ "name": "nim-libclang", "url": "https://github.com/cowboy-coders/nim-libclang.git", "method": "git", - "tags": ["wrapper", "bindings", "clang"], + "tags": [ + "wrapper", + "bindings", + "clang" + ], "description": "wrapper for libclang (the C-interface of the clang LLVM frontend)", "license": "MIT", "web": "https://github.com/cowboy-coders/nim-libclang" @@ -1067,7 +1548,12 @@ "name": "nimqml", "url": "git://github.com/filcuc/nimqml", "method": "git", - "tags": ["Qt", "Qml", "UI", "GUI"], + "tags": [ + "Qt", + "Qml", + "UI", + "GUI" + ], "description": "Qt Qml bindings", "license": "GPLv3", "web": "https://github.com/filcuc/nimqml" @@ -1076,7 +1562,12 @@ "name": "XPLM-Nim", "url": "git://github.com/jpoirier/XPLM-Nim", "method": "git", - "tags": ["X-Plane", "XPLM", "Plugin", "SDK"], + "tags": [ + "X-Plane", + "XPLM", + "Plugin", + "SDK" + ], "description": "X-Plane XPLM SDK wrapper", "license": "BSD", "web": "https://github.com/jpoirier/XPLM-Nim" @@ -1085,7 +1576,14 @@ "name": "csfml", "url": "git://github.com/BlaXpirit/nim-csfml", "method": "git", - "tags": ["sfml", "binding", "game", "media", "library", "opengl"], + "tags": [ + "sfml", + "binding", + "game", + "media", + "library", + "opengl" + ], "description": "Bindings for Simple and Fast Multimedia Library (through CSFML)", "license": "zlib", "web": "https://github.com/BlaXpirit/nim-csfml" @@ -1094,7 +1592,10 @@ "name": "optional_t", "url": "git://github.com/flaviut/optional_t", "method": "git", - "tags": ["option", "functional"], + "tags": [ + "option", + "functional" + ], "description": "Basic Option[T] library", "license": "MIT", "web": "https://github.com/flaviut/optional_t" @@ -1103,7 +1604,12 @@ "name": "nimrtlsdr", "url": "git://github.com/jpoirier/nimrtlsdr", "method": "git", - "tags": ["rtl-sdr", "wrapper", "bindings", "rtlsdr"], + "tags": [ + "rtl-sdr", + "wrapper", + "bindings", + "rtlsdr" + ], "description": "A Nim wrapper for librtlsdr", "license": "BSD", "web": "https://github.com/jpoirier/nimrtlsdr" @@ -1112,7 +1618,13 @@ "name": "lapp", "url": "https://gitlab.3dicc.com/gokr/lapp.git", "method": "git", - "tags": ["args", "cmd", "opt", "parse", "parsing"], + "tags": [ + "args", + "cmd", + "opt", + "parse", + "parsing" + ], "description": "Opt parser using synopsis as specification, ported from Lua.", "license": "MIT", "web": "https://gitlab.3dicc.com/gokr/lapp" @@ -1121,7 +1633,13 @@ "name": "blimp", "url": "https://gitlab.3dicc.com/gokr/blimp.git", "method": "git", - "tags": ["app", "binary", "utility", "git", "git-fat"], + "tags": [ + "app", + "binary", + "utility", + "git", + "git-fat" + ], "description": "Utility that helps with big files in git, very similar to git-fat, s3annnex etc.", "license": "MIT", "web": "https://gitlab.3dicc.com/gokr/blimp" @@ -1130,7 +1648,10 @@ "name": "parsetoml", "url": "https://github.com/ziotom78/parsetoml.git", "method": "git", - "tags": ["library", "nim"], + "tags": [ + "library", + "nim" + ], "description": "Library for parsing TOML files.", "license": "MIT", "web": "https://github.com/ziotom78/parsetoml" @@ -1139,7 +1660,10 @@ "name": "compiler", "url": "https://github.com/Araq/Nim.git", "method": "git", - "tags": ["library", "nim"], + "tags": [ + "library", + "nim" + ], "description": "Compiler package providing the compiler sources as a library.", "license": "MIT", "web": "https://github.com/nim-lang/Nim" @@ -1148,7 +1672,11 @@ "name": "nre", "url": "https://github.com/flaviut/nre.git", "method": "git", - "tags": ["library", "pcre", "regex"], + "tags": [ + "library", + "pcre", + "regex" + ], "description": "A better regular expression library", "license": "MIT", "web": "https://github.com/flaviut/nre" @@ -1157,7 +1685,12 @@ "name": "docopt", "url": "git://github.com/docopt/docopt.nim", "method": "git", - "tags": ["commandline", "arguments", "parsing", "library"], + "tags": [ + "commandline", + "arguments", + "parsing", + "library" + ], "description": "Command-line args parser based on Usage message", "license": "MIT", "web": "https://github.com/docopt/docopt.nim" @@ -1166,7 +1699,11 @@ "name": "bpg", "url": "git://github.com/def-/nim-bpg.git", "method": "git", - "tags": ["image", "library", "wrapper"], + "tags": [ + "image", + "library", + "wrapper" + ], "description": "BPG (Better Portable Graphics) for Nim", "license": "MIT", "web": "https://github.com/def-/nim-bpg" @@ -1175,7 +1712,16 @@ "name": "io-spacenav", "url": "git://github.com/nimious/io-spacenav.git", "method": "git", - "tags": ["binding", "3dx", "3dconnexion", "libspnav", "spacenav", "spacemouse", "spacepilot", "spacenavigator"], + "tags": [ + "binding", + "3dx", + "3dconnexion", + "libspnav", + "spacenav", + "spacemouse", + "spacepilot", + "spacenavigator" + ], "description": "Bindings for libspnav, the free 3Dconnexion device driver", "license": "MIT", "web": "https://github.com/nimious/io-spacenav" @@ -1184,7 +1730,12 @@ "name": "optionals", "url": "https://github.com/MasonMcGill/optionals.git", "method": "git", - "tags": ["library", "option", "optional", "maybe"], + "tags": [ + "library", + "option", + "optional", + "maybe" + ], "description": "Option types", "license": "MIT", "web": "https://github.com/MasonMcGill/optionals" @@ -1193,7 +1744,11 @@ "name": "tuples", "url": "https://github.com/MasonMcGill/tuples.git", "method": "git", - "tags": ["library", "tuple", "metaprogramming"], + "tags": [ + "library", + "tuple", + "metaprogramming" + ], "description": "Tuple manipulation utilities", "license": "MIT", "web": "https://github.com/MasonMcGill/tuples" @@ -1202,7 +1757,11 @@ "name": "fuse", "url": "https://github.com/akiradeveloper/nim-fuse.git", "method": "git", - "tags": ["fuse", "library", "wrapper"], + "tags": [ + "fuse", + "library", + "wrapper" + ], "description": "A FUSE binding for Nim", "license": "MIT", "web": "https://github.com/akiradeveloper/nim-fuse" @@ -1211,7 +1770,14 @@ "name": "brainfuck", "url": "https://github.com/def-/nim-brainfuck.git", "method": "git", - "tags": ["library", "binary", "app", "interpreter", "compiler", "language"], + "tags": [ + "library", + "binary", + "app", + "interpreter", + "compiler", + "language" + ], "description": "A brainfuck interpreter and compiler", "license": "MIT", "web": "https://github.com/def-/nim-brainfuck" @@ -1220,7 +1786,14 @@ "name": "nimsuggest", "url": "https://github.com/nim-lang/nimsuggest.git", "method": "git", - "tags": ["binary", "app", "suggest", "compiler", "autocomplete", "nim"], + "tags": [ + "binary", + "app", + "suggest", + "compiler", + "autocomplete", + "nim" + ], "description": "Tool for providing auto completion data for Nim source code.", "license": "MIT", "web": "https://github.com/nim-lang/nimsuggest" @@ -1229,7 +1802,11 @@ "name": "jwt", "url": "https://github.com/ekarlso/nim-jwt.git", "method": "git", - "tags": ["library", "crypto", "hash"], + "tags": [ + "library", + "crypto", + "hash" + ], "description": "JSON Web Tokens for Nim", "license": "MIT", "web": "https://github.com/ekarlso/nim-jwt" @@ -1238,7 +1815,12 @@ "name": "pythonpathlib", "url": "git://github.com/achesak/nim-pythonpathlib.git", "method": "git", - "tags": ["path", "directory", "python", "library"], + "tags": [ + "path", + "directory", + "python", + "library" + ], "description": "Module for working with paths that is as similar as possible to Python's pathlib", "license": "MIT", "web": "https://github.com/achesak/nim-pythonpathlib" @@ -1247,7 +1829,13 @@ "name": "RingBuffer", "url": "git@github.com:megawac/RingBuffer.nim.git", "method": "git", - "tags": ["sequence", "seq", "circular", "ring", "buffer"], + "tags": [ + "sequence", + "seq", + "circular", + "ring", + "buffer" + ], "description": "Circular buffer implementation", "license": "MIT", "web": "https://github.com/megawac/RingBuffer.nim" @@ -1256,7 +1844,11 @@ "name": "nimrat", "url": "git://github.com/apense/nimrat", "method": "git", - "tags": ["library","math","numbers"], + "tags": [ + "library", + "math", + "numbers" + ], "description": "Module for working with rational numbers (fractions)", "license": "MIT", "web": "https://github.com/apense/nimrat" @@ -1265,7 +1857,17 @@ "name": "io-isense", "url": "git://github.com/nimious/io-isense.git", "method": "git", - "tags": ["binding", "isense", "intersense", "inertiacube", "intertrax", "microtrax", "thales", "tracking", "sensor"], + "tags": [ + "binding", + "isense", + "intersense", + "inertiacube", + "intertrax", + "microtrax", + "thales", + "tracking", + "sensor" + ], "description": "Bindings for the InterSense SDK", "license": "MIT", "web": "https://github.com/nimious/io-isense" @@ -1274,7 +1876,11 @@ "name": "io-usb", "url": "git://github.com/nimious/io-usb.git", "method": "git", - "tags": ["binding", "usb", "libusb"], + "tags": [ + "binding", + "usb", + "libusb" + ], "description": "Bindings for libusb, the cross-platform user library to access USB devices.", "license": "MIT", "web": "https://github.com/nimious/io-usb" @@ -1283,34 +1889,51 @@ "name": "nimcfitsio", "url": "https://github.com/ziotom78/nimcfitsio.git", "method": "git", - "tags": ["library", "binding", "cfitsio", "fits", "io"], + "tags": [ + "library", + "binding", + "cfitsio", + "fits", + "io" + ], "description": "Bindings for CFITSIO, a library to read/write FITSIO images and tables.", "license": "MIT", "web": "https://github.com/ziotom78/nimcfitsio" }, { - "name":"glossolalia", - "url":"git://github.com/fowlmouth/glossolalia", - "method":"git", - "tags":["parser","peg"], - "description":"A DSL for quickly writing parsers", - "license":"CC0", - "web":"https://github.com/fowlmouth/glossolalia" + "name": "glossolalia", + "url": "git://github.com/fowlmouth/glossolalia", + "method": "git", + "tags": [ + "parser", + "peg" + ], + "description": "A DSL for quickly writing parsers", + "license": "CC0", + "web": "https://github.com/fowlmouth/glossolalia" }, { - "name":"entoody", - "url":"https://bitbucket.org/fowlmouth/entoody", - "method":"git", - "tags":["component","entity","composition"], - "description":"A component/entity system", - "license":"CC0", - "web":"https://bitbucket.org/fowlmouth/entoody" + "name": "entoody", + "url": "https://bitbucket.org/fowlmouth/entoody", + "method": "git", + "tags": [ + "component", + "entity", + "composition" + ], + "description": "A component/entity system", + "license": "CC0", + "web": "https://bitbucket.org/fowlmouth/entoody" }, { "name": "msgpack", "url": "https://github.com/akiradeveloper/msgpack-nim.git", "method": "git", - "tags": ["msgpack", "library", "serialization"], + "tags": [ + "msgpack", + "library", + "serialization" + ], "description": "A MessagePack binding for Nim", "license": "MIT", "web": "https://github.com/akiradeveloper/msgpack-nim" @@ -1319,7 +1942,11 @@ "name": "osinfo", "url": "https://github.com/nim-lang/osinfo.git", "method": "git", - "tags": ["os", "library", "info"], + "tags": [ + "os", + "library", + "info" + ], "description": "Modules providing information about the OS.", "license": "MIT", "web": "https://github.com/nim-lang/osinfo" @@ -1328,7 +1955,13 @@ "name": "io-myo", "url": "git://github.com/nimious/io-myo.git", "method": "git", - "tags": ["binding", "myo", "thalmic", "armband", "gesture"], + "tags": [ + "binding", + "myo", + "thalmic", + "armband", + "gesture" + ], "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", "license": "MIT", "web": "https://github.com/nimious/io-myo" @@ -1337,7 +1970,17 @@ "name": "io-oculus", "url": "git://github.com/nimious/io-oculus.git", "method": "git", - "tags": ["binding", "oculus", "rift", "vr", "libovr", "ovr", "dk1", "dk2", "gearvr"], + "tags": [ + "binding", + "oculus", + "rift", + "vr", + "libovr", + "ovr", + "dk1", + "dk2", + "gearvr" + ], "description": "Bindings for the Oculus VR SDK.", "license": "MIT", "web": "https://github.com/nimious/io-oculus" @@ -1346,7 +1989,12 @@ "name": "closure_compiler", "url": "git://github.com/yglukhov/closure_compiler.git", "method": "git", - "tags": ["binding", "closure", "compiler", "javascript"], + "tags": [ + "binding", + "closure", + "compiler", + "javascript" + ], "description": "Bindings for Closure Compiler web API.", "license": "MIT", "web": "https://github.com/yglukhov/closure_compiler" @@ -1355,7 +2003,12 @@ "name": "io-serialport", "url": "git://github.com/nimious/io-serialport.git", "method": "git", - "tags": ["binding", "libserialport", "serial", "communication"], + "tags": [ + "binding", + "libserialport", + "serial", + "communication" + ], "description": "Bindings for libserialport, the cross-platform serial communication library.", "license": "MIT", "web": "https://github.com/nimious/io-serialport" @@ -1364,7 +2017,11 @@ "name": "beanstalkd", "url": "git://github.com/tormaroe/beanstalkd.nim.git", "method": "git", - "tags": ["library", "queue", "messaging"], + "tags": [ + "library", + "queue", + "messaging" + ], "description": "A beanstalkd work queue client library.", "license": "MIT", "web": "https://github.com/tormaroe/beanstalkd.nim" @@ -1373,7 +2030,12 @@ "name": "wiki2text", "url": "git://github.com/rspeer/wiki2text.git", "method": "git", - "tags": ["nlp", "wiki", "xml", "text"], + "tags": [ + "nlp", + "wiki", + "xml", + "text" + ], "description": "Quickly extracts natural-language text from a MediaWiki XML file.", "license": "MIT", "web": "https://github.com/rspeer/wiki2text" @@ -1382,7 +2044,17 @@ "name": "qt5_qtsql", "url": "https://github.com/philip-wernersbach/nim-qt5_qtsql.git", "method": "git", - "tags": ["library", "wrapper", "database", "qt", "qt5", "qtsql", "sqlite", "postgres", "mysql"], + "tags": [ + "library", + "wrapper", + "database", + "qt", + "qt5", + "qtsql", + "sqlite", + "postgres", + "mysql" + ], "description": "Binding for Qt 5's Qt SQL library that integrates with the features of the Nim language. Uses one API for multiple database engines.", "license": "MIT", "web": "https://github.com/philip-wernersbach/nim-qt5_qtsql" @@ -1391,7 +2063,13 @@ "name": "orient", "url": "https://github.com/philip-wernersbach/nim-orient", "method": "git", - "tags": ["library", "wrapper", "database", "orientdb", "pure"], + "tags": [ + "library", + "wrapper", + "database", + "orientdb", + "pure" + ], "description": "OrientDB driver written in pure Nim, uses the OrientDB 2.0 Binary Protocol with Binary Serialization.", "license": "MPL", "web": "https://github.com/philip-wernersbach/nim-orient" @@ -1400,7 +2078,10 @@ "name": "syslog", "url": "https://github.com/FedericoCeratto/nim-syslog", "method": "git", - "tags": ["library", "pure"], + "tags": [ + "library", + "pure" + ], "description": "Syslog module.", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-syslog" @@ -1409,7 +2090,13 @@ "name": "nimes", "url": "https://github.com/def-/nimes", "method": "git", - "tags": ["emulator", "nes", "game", "sdl", "javascript"], + "tags": [ + "emulator", + "nes", + "game", + "sdl", + "javascript" + ], "description": "NES emulator using SDL2, also compiles to JavaScript with emscripten.", "license": "MPL", "web": "https://github.com/def-/nimes" @@ -1418,7 +2105,9 @@ "name": "syscall", "url": "https://github.com/def-/nim-syscall", "method": "git", - "tags": ["library"], + "tags": [ + "library" + ], "description": "Raw system calls for Nim", "license": "MPL", "web": "https://github.com/def-/nim-syscall" @@ -1427,7 +2116,13 @@ "name": "jnim", "url": "https://github.com/yglukhov/jnim", "method": "git", - "tags": ["library", "java", "jvm", "bridge", "bindings"], + "tags": [ + "library", + "java", + "jvm", + "bridge", + "bindings" + ], "description": "Nim - Java bridge", "license": "MIT", "web": "https://github.com/yglukhov/jnim" @@ -1436,7 +2131,11 @@ "name": "nimPDF", "url": "https://github.com/jangko/nimpdf", "method": "git", - "tags": ["library", "PDF", "document"], + "tags": [ + "library", + "PDF", + "document" + ], "description": "library for generating PDF files", "license": "MIT", "web": "https://github.com/jangko/nimpdf" @@ -1445,7 +2144,11 @@ "name": "LLVM", "url": "https://github.com/FedeOmoto/llvm", "method": "git", - "tags": ["LLVM", "bindings", "wrapper"], + "tags": [ + "LLVM", + "bindings", + "wrapper" + ], "description": "LLVM bindings for the Nim language.", "license": "MIT", "web": "https://github.com/FedeOmoto/llvm" @@ -1454,7 +2157,15 @@ "name": "nshout", "url": "https://github.com/Senketsu/nshout", "method": "git", - "tags": ["library", "shouter", "libshout","wrapper","bindings","audio","web"], + "tags": [ + "library", + "shouter", + "libshout", + "wrapper", + "bindings", + "audio", + "web" + ], "description": "Nim bindings for libshout", "license": "MIT", "web": "https://github.com/Senketsu/nshout" @@ -1463,7 +2174,11 @@ "name": "nuuid", "url": "https://github.com/wheineman/nim-only-uuid", "method": "git", - "tags": ["library", "uuid", "guid"], + "tags": [ + "library", + "uuid", + "guid" + ], "description": "A Nim source only UUID generator", "license": "MIT", "web": "https://github.com/wheineman/nim-only-uuid" @@ -1472,7 +2187,12 @@ "name": "fftw3", "url": "https://github.com/ziotom78/nimfftw3", "method": "git", - "tags": ["library", "nim", "math", "fft"], + "tags": [ + "library", + "nim", + "math", + "fft" + ], "description": "Bindings to the FFTW library", "license": "MIT", "web": "https://github.com/ziotom78/nimfftw3" @@ -1481,7 +2201,10 @@ "name": "nrpl", "url": "https://github.com/wheineman/nrpl", "method": "git", - "tags": ["REPL", "application"], + "tags": [ + "REPL", + "application" + ], "description": "A rudimentary Nim REPL", "license": "MIT", "web": "https://github.com/wheineman/nrpl" @@ -1490,7 +2213,11 @@ "name": "nim-geocoding", "url": "https://github.com/saratchandra92/nim-geocoding", "method": "git", - "tags": ["library", "geocoding", "maps"], + "tags": [ + "library", + "geocoding", + "maps" + ], "description": "A simple library for Google Maps Geocoding API", "license": "MIT", "web": "https://github.com/saratchandra92/nim-geocoding" @@ -1499,7 +2226,12 @@ "name": "io-gles", "url": "git://github.com/nimious/io-gles.git", "method": "git", - "tags": ["binding", "khronos", "gles", "opengl es"], + "tags": [ + "binding", + "khronos", + "gles", + "opengl es" + ], "description": "Bindings for OpenGL ES, the embedded 3D graphics library.", "license": "MIT", "web": "https://github.com/nimious/io-gles" @@ -1508,7 +2240,14 @@ "name": "io-egl", "url": "git://github.com/nimious/io-egl.git", "method": "git", - "tags": ["binding", "khronos", "egl", "opengl", "opengl es", "openvg"], + "tags": [ + "binding", + "khronos", + "egl", + "opengl", + "opengl es", + "openvg" + ], "description": "Bindings for EGL, the native platform interface for rendering APIs.", "license": "MIT", "web": "https://github.com/nimious/io-egl" @@ -1517,7 +2256,13 @@ "name": "io-sixense", "url": "git://github.com/nimious/io-sixense.git", "method": "git", - "tags": ["binding", "sixense", "razer hydra", "stem system", "vr"], + "tags": [ + "binding", + "sixense", + "razer hydra", + "stem system", + "vr" + ], "description": "Bindings for the Sixense Core API.", "license": "MIT", "web": "https://github.com/nimious/io-sixense" @@ -1526,7 +2271,11 @@ "name": "tnetstring", "url": "https://mahlon@bitbucket.org/mahlon/nim-tnetstring", "method": "hg", - "tags": ["tnetstring", "library", "serialization" ], + "tags": [ + "tnetstring", + "library", + "serialization" + ], "description": "Parsing and serializing for the TNetstring format.", "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-tnetstring" @@ -1535,7 +2284,12 @@ "name": "msgpack4nim", "url": "https://github.com/jangko/msgpack4nim", "method": "git", - "tags": ["msgpack", "library", "serialization", "deserialization"], + "tags": [ + "msgpack", + "library", + "serialization", + "deserialization" + ], "description": "Another MessagePack implementation written in pure nim", "license": "MIT", "web": "https://github.com/jangko/msgpack4nim" @@ -1544,7 +2298,10 @@ "name": "binaryheap", "url": "https://github.com/bluenote10/nim-heap", "method": "git", - "tags": ["heap", "priority queue"], + "tags": [ + "heap", + "priority queue" + ], "description": "Simple binary heap implementation", "license": "MIT", "web": "https://github.com/bluenote10/nim-heap" @@ -1553,7 +2310,10 @@ "name": "stringinterpolation", "url": "https://github.com/bluenote10/nim-stringinterpolation", "method": "git", - "tags": ["string formatting", "string interpolation"], + "tags": [ + "string formatting", + "string interpolation" + ], "description": "String interpolation with printf syntax", "license": "MIT", "web": "https://github.com/bluenote10/nim-stringinterpolation" @@ -1562,7 +2322,10 @@ "name": "libovr", "url": "https://github.com/bluenote10/nim-ovr", "method": "git", - "tags": ["Oculus Rift", "virtual reality"], + "tags": [ + "Oculus Rift", + "virtual reality" + ], "description": "Nim bindings for libOVR (Oculus Rift)", "license": "MIT", "web": "https://github.com/bluenote10/nim-ovr" @@ -1571,7 +2334,12 @@ "name": "delaunay", "url": "https://github.com/Nycto/DelaunayNim", "method": "git", - "tags": ["delaunay", "library", "algorithms", "graph"], + "tags": [ + "delaunay", + "library", + "algorithms", + "graph" + ], "description": "2D Delaunay triangulations", "license": "MIT", "web": "https://github.com/Nycto/DelaunayNim" @@ -1580,7 +2348,12 @@ "name": "linenoise", "url": "https://github.com/fallingduck/linenoise-nim", "method": "git", - "tags": ["linenoise", "library", "wrapper", "commandline"], + "tags": [ + "linenoise", + "library", + "wrapper", + "commandline" + ], "description": "Wrapper for linenoise, a free, self-contained alternative to GNU readline.", "license": "BSD", "web": "https://github.com/fallingduck/linenoise-nim" @@ -1589,7 +2362,13 @@ "name": "struct", "url": "https://github.com/rgv151/struct.nim", "method": "git", - "tags": ["struct", "library", "python", "pack", "unpack"], + "tags": [ + "struct", + "library", + "python", + "pack", + "unpack" + ], "description": "Python-like 'struct' for Nim", "license": "MIT", "web": "https://github.com/rgv151/struct.nim" @@ -1598,7 +2377,11 @@ "name": "uri2", "url": "git://github.com/achesak/nim-uri2", "method": "git", - "tags": ["uri", "url", "library"], + "tags": [ + "uri", + "url", + "library" + ], "description": "Nim module for better URI handling", "license": "MIT", "web": "https://github.com/achesak/nim-uri2" @@ -1607,7 +2390,13 @@ "name": "hmac", "url": "https://github.com/rgv151/hmac.nim", "method": "git", - "tags": ["hmac", "authentication", "hash", "sha1", "md5"], + "tags": [ + "hmac", + "authentication", + "hash", + "sha1", + "md5" + ], "description": "HMAC-SHA1 and HMAC-MD5 hashing in Nim", "license": "MIT", "web": "https://github.com/rgv151/hmac.nim" @@ -1616,17 +2405,25 @@ "name": "mongrel2", "url": "https://mahlon@bitbucket.org/mahlon/nim-mongrel2", "method": "hg", - "tags": ["mongrel2", "library", "www" ], + "tags": [ + "mongrel2", + "library", + "www" + ], "description": "Handler framework for the Mongrel2 web server.", "license": "MIT", "web": "http://bitbucket.org/mahlon/nim-mongrel2" - }, { "name": "shimsham", "url": "https://github.com/apense/shimsham", "method": "git", - "tags": ["crypto", "hash", "hashing", "digest"], + "tags": [ + "crypto", + "hash", + "hashing", + "digest" + ], "description": "Hashing/Digest collection in pure Nim", "license": "MIT", "web": "https://github.com/apense/shimsham" @@ -1635,7 +2432,11 @@ "name": "base32", "url": "https://github.com/rgv151/base32.nim", "method": "git", - "tags": ["base32", "encode", "decode"], + "tags": [ + "base32", + "encode", + "decode" + ], "description": "Base32 library for Nim", "license": "MIT", "web": "https://github.com/rgv151/base32.nim" @@ -1644,7 +2445,16 @@ "name": "otp", "url": "https://github.com/rgv151/otp.nim", "method": "git", - "tags": ["otp", "hotp", "totp", "time", "password", "one", "google", "authenticator"], + "tags": [ + "otp", + "hotp", + "totp", + "time", + "password", + "one", + "google", + "authenticator" + ], "description": "One Time Password library for Nim", "license": "MIT", "web": "https://github.com/rgv151/otp.nim" @@ -1653,7 +2463,16 @@ "name": "q", "url": "https://github.com/rgv151/q.nim", "method": "git", - "tags": ["css", "selector", "query", "match", "find", "html", "xml", "jquery"], + "tags": [ + "css", + "selector", + "query", + "match", + "find", + "html", + "xml", + "jquery" + ], "description": "Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax", "license": "MIT", "web": "https://github.com/rgv151/q.nim" @@ -1662,7 +2481,11 @@ "name": "bignum", "url": "https://github.com/FedeOmoto/bignum", "method": "git", - "tags": ["bignum", "gmp", "wrapper"], + "tags": [ + "bignum", + "gmp", + "wrapper" + ], "description": "Wrapper around the GMP bindings for the Nim language.", "license": "MIT", "web": "https://github.com/FedeOmoto/bignum" @@ -1671,7 +2494,12 @@ "name": "rbtree", "url": "https://github.com/Nycto/RBTreeNim", "method": "git", - "tags": ["tree", "binary search tree", "rbtree", "red black tree"], + "tags": [ + "tree", + "binary search tree", + "rbtree", + "red black tree" + ], "description": "Red/Black Trees", "license": "MIT", "web": "https://github.com/Nycto/RBTreeNim" @@ -1680,7 +2508,12 @@ "name": "anybar", "url": "https://github.com/rgv151/anybar.nim", "method": "git", - "tags": ["anybar", "menubar", "status", "indicator"], + "tags": [ + "anybar", + "menubar", + "status", + "indicator" + ], "description": "Control AnyBar instances with Nim", "license": "MIT", "web": "https://github.com/rgv151/anybar.nim" @@ -1689,7 +2522,12 @@ "name": "astar", "url": "https://github.com/Nycto/AStarNim", "method": "git", - "tags": ["astar", "A*", "pathfinding", "algorithm"], + "tags": [ + "astar", + "A*", + "pathfinding", + "algorithm" + ], "description": "A* Pathfinding", "license": "MIT", "web": "https://github.com/Nycto/AStarNim" @@ -1698,7 +2536,11 @@ "name": "lazy", "url": "git://github.com/petermora/nimLazy/", "method": "git", - "tags": ["library", "iterator", "lazy list"], + "tags": [ + "library", + "iterator", + "lazy list" + ], "description": "Iterator library for Nim", "license": "MIT", "web": "https://github.com/petermora/nimLazy" @@ -1707,7 +2549,14 @@ "name": "asyncpythonfile", "url": "https://github.com/fallingduck/asyncpythonfile-nim", "method": "git", - "tags": ["async", "asynchronous", "library", "python", "file", "files"], + "tags": [ + "async", + "asynchronous", + "library", + "python", + "file", + "files" + ], "description": "High level, asynchronous file API mimicking Python's file interface.", "license": "ISC", "web": "https://github.com/fallingduck/asyncpythonfile-nim" @@ -1716,7 +2565,12 @@ "name": "nimfuzz", "url": "https://github.com/apense/nimfuzz", "method": "git", - "tags": ["fuzzing", "testing", "hacking", "security"], + "tags": [ + "fuzzing", + "testing", + "hacking", + "security" + ], "description": "Simple and compact fuzzing", "license": "Apache License 2.0", "web": "https://apense.github.io/nimfuzz" @@ -1725,7 +2579,13 @@ "name": "linalg", "url": "https://github.com/unicredit/linear-algebra", "method": "git", - "tags": ["vector", "matrix", "linear algebra", "BLAS", "LAPACK"], + "tags": [ + "vector", + "matrix", + "linear algebra", + "BLAS", + "LAPACK" + ], "description": "Linear algebra for Nim", "license": "Apache License 2.0", "web": "https://github.com/unicredit/linear-algebra" @@ -1734,7 +2594,14 @@ "name": "sequester", "url": "https://github.com/fallingduck/sequester", "method": "git", - "tags": ["library", "seq", "sequence", "strings", "iterators", "php"], + "tags": [ + "library", + "seq", + "sequence", + "strings", + "iterators", + "php" + ], "description": "Library for converting sequences to strings. Also has PHP-inspired explode and implode procs.", "license": "ISC", "web": "https://github.com/fallingduck/sequester" @@ -1743,7 +2610,12 @@ "name": "options", "url": "https://github.com/fallingduck/options-nim", "method": "git", - "tags": ["library", "option", "optionals", "maybe"], + "tags": [ + "library", + "option", + "optionals", + "maybe" + ], "description": "Temporary package to fix broken code in 0.11.2 stable.", "license": "MIT", "web": "https://github.com/fallingduck/options-nim" @@ -1752,7 +2624,11 @@ "name": "oldwinapi", "url": "git://github.com/nim-lang/oldwinapi", "method": "git", - "tags": ["library", "windows", "api"], + "tags": [ + "library", + "windows", + "api" + ], "description": "Old Win API library for Nim", "license": "LGPL with static linking exception", "web": "https://github.com/nim-lang/oldwinapi" @@ -1761,7 +2637,11 @@ "name": "nimx", "url": "git://github.com/yglukhov/nimx", "method": "git", - "tags": ["gui", "ui", "library"], + "tags": [ + "gui", + "ui", + "library" + ], "description": "Cross-platform GUI framework", "license": "BSD", "web": "https://github.com/yglukhov/nimx" @@ -1770,16 +2650,25 @@ "name": "memo", "url": "https://github.com/andreaferretti/memo", "method": "git", - "tags": ["memo", "memoization", "memoize", "cache"], + "tags": [ + "memo", + "memoization", + "memoize", + "cache" + ], "description": "Memoize Nim functions", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/memo" }, { "name": "base62", - "url": "https://github.com/singularperturbation/base62-encode", + "url": "https://github.com/singularperturbation/base62-encode", "method": "git", - "tags": ["base62","encode","decode"], + "tags": [ + "base62", + "encode", + "decode" + ], "description": "Arbitrary base encoding-decoding functions, defaulting to Base-62.", "license": "MIT", "web": "https://github.com/singularperturbation/base62-encode" @@ -1788,7 +2677,14 @@ "name": "telebot", "url": "https://github.com/rgv151/telebot.nim", "method": "git", - "tags": ["telebot", "telegram", "bot", "api", "client", "async"], + "tags": [ + "telebot", + "telegram", + "bot", + "api", + "client", + "async" + ], "description": "Async Telegram Bot API Client", "license": "MIT", "web": "https://github.com/rgv151/telebot.nim" @@ -1797,16 +2693,27 @@ "name": "tempfile", "url": "https://github.com/rgv151/tempfile.nim", "method": "git", - "tags": ["temp", "mktemp", "make", "mk", "mkstemp", "mkdtemp"], + "tags": [ + "temp", + "mktemp", + "make", + "mk", + "mkstemp", + "mkdtemp" + ], "description": "Temporary files and directories", "license": "MIT", "web": "https://github.com/rgv151/tempfile.nim" }, { "name": "AstroNimy", - "url": "https://github.com/super-massive-black-holes/AstroNimy", + "url": "https://github.com/super-massive-black-holes/AstroNimy", "method": "git", - "tags": ["science","astronomy","library"], + "tags": [ + "science", + "astronomy", + "library" + ], "description": "Astronomical library for Nim", "license": "MIT", "web": "https://github.com/super-massive-black-holes/AstroNimy" @@ -1815,7 +2722,13 @@ "name": "patty", "url": "https://github.com/andreaferretti/patty", "method": "git", - "tags": ["pattern", "adt", "variant", "pattern matching", "algebraic data type"], + "tags": [ + "pattern", + "adt", + "variant", + "pattern matching", + "algebraic data type" + ], "description": "Algebraic data types and pattern matching", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/patty" @@ -1824,7 +2737,13 @@ "name": "einheit", "url": "https://github.com/jyapayne/einheit", "method": "git", - "tags": ["unit", "tests", "unittest", "unit tests", "unit test macro"], + "tags": [ + "unit", + "tests", + "unittest", + "unit tests", + "unit test macro" + ], "description": "Pretty looking, full featured, Python-inspired unit test library.", "license": "MIT", "web": "https://github.com/jyapayne/einheit" @@ -1833,7 +2752,11 @@ "name": "plists", "url": "https://github.com/yglukhov/plists", "method": "git", - "tags": ["plist", "property", "list"], + "tags": [ + "plist", + "property", + "list" + ], "description": "Generate and parse Mac OS X .plist files in Nim.", "license": "MIT", "web": "https://github.com/yglukhov/plists" @@ -1842,7 +2765,12 @@ "name": "ncurses", "url": "git://github.com/rnowley/nim-ncurses/", "method": "git", - "tags": ["library", "terminal", "graphics", "wrapper"], + "tags": [ + "library", + "terminal", + "graphics", + "wrapper" + ], "description": "A wrapper for NCurses", "license": "MIT", "web": "https://github.com/rnowley/nim-ncurses" @@ -1851,7 +2779,12 @@ "name": "nanovg.nim", "url": "https://github.com/fowlmouth/nanovg.nim", "method": "git", - "tags": ["wrapper", "GUI", "vector graphics", "opengl"], + "tags": [ + "wrapper", + "GUI", + "vector graphics", + "opengl" + ], "description": "A wrapper for NanoVG vector graphics rendering", "license": "MIT", "web": "https://github.com/fowlmouth/nanovg.nim" @@ -1860,7 +2793,12 @@ "name": "pwd", "url": "git://github.com/achesak/nim-pwd", "method": "git", - "tags": ["library", "unix", "pwd", "password"], + "tags": [ + "library", + "unix", + "pwd", + "password" + ], "description": "Nim port of Python's pwd module for working with the UNIX password file", "license": "MIT", "web": "https://github.com/achesak/nim-pwd" @@ -1869,7 +2807,13 @@ "name": "spwd", "url": "git://github.com/achesak/nim-spwd", "method": "git", - "tags": ["library", "unix", "spwd", "password", "shadow"], + "tags": [ + "library", + "unix", + "spwd", + "password", + "shadow" + ], "description": "Nim port of Python's spwd module for working with the UNIX shadow password file", "license": "MIT", "web": "https://github.com/achesak/nim-spwd" @@ -1878,7 +2822,12 @@ "name": "grp", "url": "git://github.com/achesak/nim-grp", "method": "git", - "tags": ["library", "unix", "grp", "group"], + "tags": [ + "library", + "unix", + "grp", + "group" + ], "description": "Nim port of Python's grp module for working with the UNIX group database file", "license": "MIT", "web": "https://github.com/achesak/nim-grp" @@ -1887,25 +2836,38 @@ "name": "stopwatch", "url": "https://github.com/rbmz/stopwatch", "method": "git", - "tags": ["timer", "benchmarking"], + "tags": [ + "timer", + "benchmarking" + ], "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", "license": "MIT", "web": "https://github.com/rbmz/stopwatch" }, { - "name": "nimFinLib", - "url": "https://github.com/qqtop/NimFinLib", - "method": "git", - "tags": ["financial"], - "description": "Financial Library for Nim", - "license": "MIT", - "web": "https://github.com/qqtop/NimFinLib" + "name": "nimFinLib", + "url": "https://github.com/qqtop/NimFinLib", + "method": "git", + "tags": [ + "financial" + ], + "description": "Financial Library for Nim", + "license": "MIT", + "web": "https://github.com/qqtop/NimFinLib" }, { "name": "libssh2", "url": "https://github.com/rgv151/libssh2.nim", "method": "git", - "tags": ["lib", "ssh", "ssh2", "openssh", "client", "sftp", "scp"], + "tags": [ + "lib", + "ssh", + "ssh2", + "openssh", + "client", + "sftp", + "scp" + ], "description": "Nim wrapper for libssh2", "license": "MIT", "web": "https://github.com/rgv151/libssh2.nim" @@ -1914,7 +2876,12 @@ "name": "rethinkdb", "url": "https://github.com/rgv151/rethinkdb.nim", "method": "git", - "tags": ["rethinkdb", "driver", "client", "json"], + "tags": [ + "rethinkdb", + "driver", + "client", + "json" + ], "description": "RethinkDB driver for Nim", "license": "MIT", "web": "https://github.com/rgv151/rethinkdb.nim" @@ -1923,7 +2890,9 @@ "name": "dbus", "url": "https://github.com/zielmicha/nim-dbus", "method": "git", - "tags": ["dbus"], + "tags": [ + "dbus" + ], "description": "dbus bindings for Nim", "license": "MIT", "web": "https://github.com/zielmicha/nim-dbus" @@ -1932,7 +2901,10 @@ "name": "lmdb", "url": "https://github.com/fowlmouth/lmdb.nim", "method": "git", - "tags": ["wrapper", "lmdb"], + "tags": [ + "wrapper", + "lmdb" + ], "description": "A wrapper for LMDB the Lightning Memory-Mapped Database", "license": "MIT", "web": "https://github.com/fowlmouth/lmdb.nim" @@ -1941,7 +2913,10 @@ "name": "zip", "url": "https://github.com/nim-lang/zip", "method": "git", - "tags": ["wrapper", "zip"], + "tags": [ + "wrapper", + "zip" + ], "description": "A wrapper for the zip library", "license": "MIT", "web": "https://github.com/nim-lang/zip" @@ -1950,7 +2925,11 @@ "name": "csvtools", "url": "https://github.com/unicredit/csvtools", "method": "git", - "tags": ["CSV", "comma separated values", "TSV"], + "tags": [ + "CSV", + "comma separated values", + "TSV" + ], "description": "Manage CSV files", "license": "Apache License 2.0", "web": "https://github.com/unicredit/csvtools" @@ -1959,7 +2938,11 @@ "name": "httpform", "url": "https://github.com/tulayang/httpform", "method": "git", - "tags": ["request parser", "upload", "html5 file"], + "tags": [ + "request parser", + "upload", + "html5 file" + ], "description": "Http request form parser", "license": "MIT", "web": "https://github.com/tulayang/httpform" @@ -1968,7 +2951,11 @@ "name": "vardene", "url": "https://github.com/Xe/vardene", "method": "git", - "tags": ["command line", "tool", "compiler"], + "tags": [ + "command line", + "tool", + "compiler" + ], "description": "A simple tool to manage multiple installs of Nim.", "license": "MIT", "web": "https://christine.website/projects/Vardene" From 1e55e2f771dbcecbadcfef7f1a2b49fbe99667e8 Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 19 Aug 2015 01:45:57 +0200 Subject: [PATCH 0104/1381] added pretty_json.nim script --- pretty_json.nim | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pretty_json.nim diff --git a/pretty_json.nim b/pretty_json.nim new file mode 100644 index 0000000..4249727 --- /dev/null +++ b/pretty_json.nim @@ -0,0 +1,41 @@ + +import strutils, json, os + +proc cleanupWhitespace(s: string): string = + ## Removes trailing whitespace and normalizes line endings to LF. + result = newStringOfCap(s.len) + var i = 0 + while i < s.len: + if s[i] == ' ': + var j = i+1 + while s[j] == ' ': inc j + if s[j] == '\c': + inc j + if s[j] == '\L': inc j + result.add '\L' + i = j + elif s[j] == '\L': + result.add '\L' + i = j+1 + else: + result.add ' ' + inc i + elif s[i] == '\c': + inc i + if s[i] == '\L': inc i + result.add '\L' + elif s[i] == '\L': + result.add '\L' + inc i + else: + result.add s[i] + inc i + if result[^1] != '\L': + result.add '\L' + +proc editJson() = + var contents = parseFile("packages.json") + doAssert contents.kind == JArray + writeFile("packages.json", contents.pretty.cleanupWhitespace) + +editJson() From 398940002223c963b65b12797f20f743701f7066 Mon Sep 17 00:00:00 2001 From: James Date: Tue, 18 Aug 2015 20:35:10 -0700 Subject: [PATCH 0105/1381] Add Quadtree package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 0716ae6..9612b24 100644 --- a/packages.json +++ b/packages.json @@ -2959,5 +2959,17 @@ "description": "A simple tool to manage multiple installs of Nim.", "license": "MIT", "web": "https://christine.website/projects/Vardene" + }, + { + "name": "quadtree", + "url": "https://github.com/Nycto/QuadtreeNim", + "method": "git", + "tags": [ + "quadtree", + "algorithm" + ], + "description": "A Quadtree implementation", + "license": "MIT", + "web": "https://github.com/Nycto/QuadtreeNim" } ] From 79989dd37ddf60408199233af1d55e1d898ba438 Mon Sep 17 00:00:00 2001 From: Araq Date: Thu, 20 Aug 2015 23:01:59 +0200 Subject: [PATCH 0106/1381] fix merge conflict properly --- packages.json | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/packages.json b/packages.json index d43ca3e..5c409be 100644 --- a/packages.json +++ b/packages.json @@ -85,23 +85,6 @@ "license": "zlib", "web": "https://github.com/Vladar4/libtcod-nim" }, -<<<<<<< HEAD - { - "name": "nimepak", - "url": "git://github.com/gradha/epak/", - "method": "git", - "tags": [ - "library", - "serialization", - "file", - "compression" - ], - "description": "File compression routines in C for iOS and Nimrod", - "license": "Allegro 4 Giftware", - "web": "https://github.com/gradha/epak" - }, -======= ->>>>>>> fetch { "name": "nimgame", "url": "git://github.com/Vladar4/nimgame/", From 5c72b1be13012f09d7d897fa96ff245351cee2b5 Mon Sep 17 00:00:00 2001 From: Araq Date: Thu, 20 Aug 2015 23:05:45 +0200 Subject: [PATCH 0107/1381] Added package sdl1 --- packages.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 5c409be..1ca5184 100644 --- a/packages.json +++ b/packages.json @@ -2998,5 +2998,21 @@ "description": "Sphinx wrapper for Nim", "license": "LGPL", "web": "https://github.com/Araq/sphinx" + }, + { + "name": "sdl1", + "url": "https://github.com/nim-lang/sdl1", + "method": "git", + "tags": [ + "graphics", + "library", + "multi-media", + "input", + "sound", + "joystick" + ], + "description": "SDL 1.2 wrapper for Nim.", + "license": "LGPL", + "web": "https://github.com/nim-lang/sdl1" } -] +] \ No newline at end of file From 042e70844298c9820a63481975b4ddb4504c3f49 Mon Sep 17 00:00:00 2001 From: Araq Date: Thu, 20 Aug 2015 23:10:10 +0200 Subject: [PATCH 0108/1381] Added package graphics --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1ca5184..3e91c59 100644 --- a/packages.json +++ b/packages.json @@ -3014,5 +3014,17 @@ "description": "SDL 1.2 wrapper for Nim.", "license": "LGPL", "web": "https://github.com/nim-lang/sdl1" + }, + { + "name": "graphics", + "url": "https://github.com/nim-lang/graphics", + "method": "git", + "tags": [ + "library", + "SDL" + ], + "description": "Graphics module for Nim.", + "license": "MIT", + "web": "https://github.com/nim-lang/graphics" } ] \ No newline at end of file From 5e611efaaaf7880248bc61a0877ce741ff15b021 Mon Sep 17 00:00:00 2001 From: Araq Date: Thu, 20 Aug 2015 23:57:45 +0200 Subject: [PATCH 0109/1381] Added package libffi --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 3e91c59..cf08670 100644 --- a/packages.json +++ b/packages.json @@ -3026,5 +3026,20 @@ "description": "Graphics module for Nim.", "license": "MIT", "web": "https://github.com/nim-lang/graphics" + }, + { + "name": "libffi", + "url": "https://github.com/Araq/libffi", + "method": "git", + "tags": [ + "ffi", + "library", + "C", + "calling", + "convention" + ], + "description": "libffi wrapper for Nim.", + "license": "MIT", + "web": "https://github.com/Araq/libffi" } ] \ No newline at end of file From d3e3a97f160911c87618bed7e6f853889a8f798f Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 21 Aug 2015 00:05:24 +0200 Subject: [PATCH 0110/1381] Added package libcurl --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cf08670..8e264fb 100644 --- a/packages.json +++ b/packages.json @@ -3041,5 +3041,19 @@ "description": "libffi wrapper for Nim.", "license": "MIT", "web": "https://github.com/Araq/libffi" + }, + { + "name": "libcurl", + "url": "https://github.com/Araq/libcurl", + "method": "git", + "tags": [ + "curl", + "web", + "http", + "download" + ], + "description": "Nim wrapper for libcurl.", + "license": "MIT", + "web": "https://github.com/Araq/libcurl" } ] \ No newline at end of file From 70fb84ddf7029eb8429b8bab01a28aeb55c00636 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 21 Aug 2015 17:11:42 -0700 Subject: [PATCH 0111/1381] Add perlin package --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 8e264fb..f0f87aa 100644 --- a/packages.json +++ b/packages.json @@ -3055,5 +3055,17 @@ "description": "Nim wrapper for libcurl.", "license": "MIT", "web": "https://github.com/Araq/libcurl" + }, + { + "name": "perlin", + "url": "https://github.com/Nycto/PerlinNim", + "method": "git", + "tags": [ + "perlin", + "noise" + ], + "description": "A perlin noise generation library", + "license": "MIT", + "web": "https://github.com/Nycto/PerlinNim" } -] \ No newline at end of file +] From 30b770bf44d6fd26121bfdce848717b9b54d4bef Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 24 Aug 2015 00:20:54 +0700 Subject: [PATCH 0112/1381] Added package pfring --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index f0f87aa..d526264 100644 --- a/packages.json +++ b/packages.json @@ -3067,5 +3067,23 @@ "description": "A perlin noise generation library", "license": "MIT", "web": "https://github.com/Nycto/PerlinNim" + }, + { + "name": "pfring", + "url": "https://github.com/rgv151/pfring.nim", + "method": "git", + "tags": [ + "pf_ring", + "packet", + "sniff", + "pcap", + "pfring", + "network", + "capture", + "socket" + ], + "description": "PF_RING wrapper for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/pfring.nim" } ] From f4c632fcbe6204649be6462292a320314561b6ef Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 24 Aug 2015 08:43:27 +0700 Subject: [PATCH 0113/1381] Added package xxtea --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d526264..fa17bf0 100644 --- a/packages.json +++ b/packages.json @@ -3085,5 +3085,19 @@ "description": "PF_RING wrapper for Nim", "license": "MIT", "web": "https://github.com/rgv151/pfring.nim" + }, + { + "name": "xxtea", + "url": "https://github.com/rgv151/xxtea.nim", + "method": "git", + "tags": [ + "xxtea", + "encrypt", + "decrypt", + "crypto" + ], + "description": "XXTEA wrapper for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/xxtea.nim" } ] From 43e00280cb3b6235e7f264e842a91a5fb88d51b2 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 24 Aug 2015 08:45:52 +0700 Subject: [PATCH 0114/1381] Added package xxhash --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index d526264..9bfaeb2 100644 --- a/packages.json +++ b/packages.json @@ -3085,5 +3085,18 @@ "description": "PF_RING wrapper for Nim", "license": "MIT", "web": "https://github.com/rgv151/pfring.nim" + }, + { + "name": "xxhash", + "url": "https://github.com/rgv151/xxhash.nim", + "method": "git", + "tags": [ + "fast", + "hash", + "algorithm" + ], + "description": "xxhash wrapper for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/xxhash.nim" } ] From 445d479d219fddab0f9b5b4b52b8942b8ea85e38 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 24 Aug 2015 08:48:33 +0700 Subject: [PATCH 0115/1381] Added package libipset --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index d526264..eeaaff0 100644 --- a/packages.json +++ b/packages.json @@ -3085,5 +3085,24 @@ "description": "PF_RING wrapper for Nim", "license": "MIT", "web": "https://github.com/rgv151/pfring.nim" + }, + { + "name": "libipset", + "url": "https://github.com/rgv151/libipset.nim", + "method": "git", + "tags": [ + "ipset", + "firewall", + "netfilter", + "mac", + "ip", + "network", + "collection", + "rule", + "set" + ], + "description": "libipset wrapper for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/libipset.nim" } ] From 25ee590aaa390267a9ebdf2da2a841d6678f758e Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 23 Aug 2015 19:07:04 -0700 Subject: [PATCH 0116/1381] I am taking over argument_parser. --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d526264..88bd04a 100644 --- a/packages.json +++ b/packages.json @@ -1,7 +1,7 @@ [ { "name": "argument_parser", - "url": "git://github.com/gradha/argument_parser/", + "url": "git://github.com/Xe/argument_parser/", "method": "git", "tags": [ "library", @@ -12,7 +12,7 @@ ], "description": "Provides a complex commandline parser", "license": "MIT", - "web": "https://github.com/gradha/argument_parser" + "web": "https://github.com/Xe/argument_parser" }, { "name": "genieos", From 562586891f363690c212c548f428bc0d595ddb31 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 24 Aug 2015 18:31:14 +0100 Subject: [PATCH 0117/1381] Fix merge mistake --- packages.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages.json b/packages.json index b841ea0..1e49b7a 100644 --- a/packages.json +++ b/packages.json @@ -3087,7 +3087,6 @@ "web": "https://github.com/rgv151/pfring.nim" }, { -<<<<<<< HEAD "name": "xxtea", "url": "https://github.com/rgv151/xxtea.nim", "method": "git", From c30b1496c4f6d7cbb391cefbff1819c11584035a Mon Sep 17 00:00:00 2001 From: James Date: Mon, 24 Aug 2015 18:49:39 -0700 Subject: [PATCH 0118/1381] Update perlin description to include simplex noise --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 1e49b7a..3ff2f79 100644 --- a/packages.json +++ b/packages.json @@ -3062,9 +3062,10 @@ "method": "git", "tags": [ "perlin", + "simplex", "noise" ], - "description": "A perlin noise generation library", + "description": "Perlin noise and Simplex noise generation", "license": "MIT", "web": "https://github.com/Nycto/PerlinNim" }, From e5795f62e0b7395a8a111ab9984db726f4d1b662 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Wed, 26 Aug 2015 09:34:30 +0100 Subject: [PATCH 0119/1381] Add POP3 client library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 3ff2f79..1652689 100644 --- a/packages.json +++ b/packages.json @@ -3132,5 +3132,18 @@ "description": "libipset wrapper for Nim", "license": "MIT", "web": "https://github.com/rgv151/libipset.nim" + }, + { + "name": "pop3", + "url": "https://github.com/FedericoCeratto/nim-pop3", + "method": "git", + "tags": [ + "network", + "pop3", + "email" + ], + "description": "POP3 client library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-pop3" } ] From e14f4ff292e2285d417eaee8c372a5d98a3478df Mon Sep 17 00:00:00 2001 From: Roger Shi Date: Thu, 27 Aug 2015 15:12:32 +0800 Subject: [PATCH 0120/1381] Add project nim-rpc --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1652689..403577a 100644 --- a/packages.json +++ b/packages.json @@ -2294,6 +2294,19 @@ "license": "MIT", "web": "https://github.com/jangko/msgpack4nim" }, + { + "name": "nim-rpc", + "url": "https://github.com/rogercloud/nim-rpc", + "method": "git", + "tags": [ + "msgpack", + "library", + "rpc" + ], + "description": "RPC implementation for Nim based on msgpack4nim", + "license": "MIT", + "web": "https://github.com/rogercloud/nim-rpc" + }, { "name": "binaryheap", "url": "https://github.com/bluenote10/nim-heap", From c38477b7d2c2917fd8a0c5d101b8894511f3b54d Mon Sep 17 00:00:00 2001 From: Roger Shi Date: Thu, 27 Aug 2015 15:28:46 +0800 Subject: [PATCH 0121/1381] fix error on https://gitlab.3dicc.com/gokr/lapp --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 403577a..639854c 100644 --- a/packages.json +++ b/packages.json @@ -1627,7 +1627,7 @@ ], "description": "Opt parser using synopsis as specification, ported from Lua.", "license": "MIT", - "web": "https://gitlab.3dicc.com/gokr/lapp" + "web": "https://gitlab.3dicc.com/gokr/lapp.git" }, { "name": "blimp", From f6863f29be224261f8a6ca100bfe4fc75b38e526 Mon Sep 17 00:00:00 2001 From: Roger Shi Date: Thu, 27 Aug 2015 17:06:17 +0800 Subject: [PATCH 0122/1381] rename nim-rpc to nimrpc --- packages.json | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/packages.json b/packages.json index 639854c..3c29850 100644 --- a/packages.json +++ b/packages.json @@ -2294,19 +2294,6 @@ "license": "MIT", "web": "https://github.com/jangko/msgpack4nim" }, - { - "name": "nim-rpc", - "url": "https://github.com/rogercloud/nim-rpc", - "method": "git", - "tags": [ - "msgpack", - "library", - "rpc" - ], - "description": "RPC implementation for Nim based on msgpack4nim", - "license": "MIT", - "web": "https://github.com/rogercloud/nim-rpc" - }, { "name": "binaryheap", "url": "https://github.com/bluenote10/nim-heap", @@ -3158,5 +3145,19 @@ "description": "POP3 client library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-pop3" + }, + { + "name": "nimrpc", + "url": "https://github.com/rogercloud/nim-rpc", + "method": "git", + "tags": [ + "msgpack", + "library", + "rpc", + "nimrpc" + ], + "description": "RPC implementation for Nim based on msgpack4nim", + "license": "MIT", + "web": "https://github.com/rogercloud/nim-rpc" } ] From 4719149bd11e1a4b43eaae87fb65114e50b9ad00 Mon Sep 17 00:00:00 2001 From: Roger Shi Date: Thu, 27 Aug 2015 17:06:58 +0800 Subject: [PATCH 0123/1381] Revert "fix error on https://gitlab.3dicc.com/gokr/lapp" This reverts commit c38477b7d2c2917fd8a0c5d101b8894511f3b54d. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 3c29850..21cb225 100644 --- a/packages.json +++ b/packages.json @@ -1627,7 +1627,7 @@ ], "description": "Opt parser using synopsis as specification, ported from Lua.", "license": "MIT", - "web": "https://gitlab.3dicc.com/gokr/lapp.git" + "web": "https://gitlab.3dicc.com/gokr/lapp" }, { "name": "blimp", From 5219c6589a6ac2833f06d3035c4b43ac217a85a5 Mon Sep 17 00:00:00 2001 From: wt Date: Fri, 28 Aug 2015 14:11:09 +0800 Subject: [PATCH 0124/1381] Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 21cb225..35a754d 100644 --- a/packages.json +++ b/packages.json @@ -3159,5 +3159,18 @@ "description": "RPC implementation for Nim based on msgpack4nim", "license": "MIT", "web": "https://github.com/rogercloud/nim-rpc" + }, + { + "name": "asyncevents", + "url": "https://github.com/tulayang/asyncevents", + "method": "git", + "tags": [ + "event", + "future", + "asyncdispath" + ], + "description": "Asynchronous event loop for progaming with MVC", + "license": "MIT", + "web": "https://github.com/tulayang/asyncevents" } ] From 84d6e18612a14538ad5c322a7aad1c56413edefa Mon Sep 17 00:00:00 2001 From: jangko Date: Mon, 31 Aug 2015 10:30:34 +0700 Subject: [PATCH 0125/1381] add nimSHA2 and nimAES packages crypto from nimPDF sister projects --- packages.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/packages.json b/packages.json index 35a754d..cb1c3c1 100644 --- a/packages.json +++ b/packages.json @@ -3172,5 +3172,34 @@ "description": "Asynchronous event loop for progaming with MVC", "license": "MIT", "web": "https://github.com/tulayang/asyncevents" + }, + { + "name": "nimSHA2", + "url": "https://github.com/jangko/nimSHA2", + "method": "git", + "tags": [ + "hash", + "crypto", + "library", + "sha2" + ], + "description": "Secure Hash Algorithm - 2, [224, 256, 384, and 512 bits]", + "license": "MIT", + "web": "https://github.com/jangko/nimSHA2" + }, + { + "name": "nimAES", + "url": "https://github.com/jangko/nimAES", + "method": "git", + "tags": [ + "crypto", + "library", + "aes", + "encryption", + "rijndael" + ], + "description": "Advanced Encryption Standard, Rijndael Algorithm", + "license": "MIT", + "web": "https://github.com/jangko/nimAES" } ] From d7486239a377df618bc87373a9e871151fd82f01 Mon Sep 17 00:00:00 2001 From: liulun <412588801@qq.com> Date: Mon, 31 Aug 2015 17:12:54 +0800 Subject: [PATCH 0126/1381] add everything search engine wrapper add everything search engine wrapper --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index cb1c3c1..3a153e4 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,17 @@ [ + { + "name": "nimeverything", + "url": "git://github.com/xland/nimeverything/", + "method": "git", + "tags": [ + "everything", + "voidtools", + "Everything Search Engine" + ], + "description": "everything search engine wrapper", + "license": "MIT", + "web": "https://github.com/xland/nimeverything" + }, { "name": "argument_parser", "url": "git://github.com/Xe/argument_parser/", From c17266eb183ea4ce369be463a10e3fae12ee4aa8 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 31 Aug 2015 10:38:45 +0100 Subject: [PATCH 0127/1381] Changed genieos URL to Araq's fork. --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index cb1c3c1..ca847f8 100644 --- a/packages.json +++ b/packages.json @@ -16,7 +16,7 @@ }, { "name": "genieos", - "url": "git://github.com/gradha/genieos/", + "url": "git://github.com/Araq/genieos/", "method": "git", "tags": [ "library", @@ -27,7 +27,7 @@ ], "description": "Too awesome procs to be included in nimrod.os module", "license": "MIT", - "web": "http://gradha.github.io/genieos/" + "web": "http://github.com/Araq/genieos/" }, { "name": "jester", From 93adef1557c878c0269e5f6a427bcbd81b64ac76 Mon Sep 17 00:00:00 2001 From: xland <412588801@qq.com> Date: Mon, 31 Aug 2015 23:27:43 +0800 Subject: [PATCH 0128/1381] Move it to bottom Move it to bottom --- packages.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/packages.json b/packages.json index 3a153e4..18c0378 100644 --- a/packages.json +++ b/packages.json @@ -1,17 +1,4 @@ [ - { - "name": "nimeverything", - "url": "git://github.com/xland/nimeverything/", - "method": "git", - "tags": [ - "everything", - "voidtools", - "Everything Search Engine" - ], - "description": "everything search engine wrapper", - "license": "MIT", - "web": "https://github.com/xland/nimeverything" - }, { "name": "argument_parser", "url": "git://github.com/Xe/argument_parser/", @@ -3214,5 +3201,18 @@ "description": "Advanced Encryption Standard, Rijndael Algorithm", "license": "MIT", "web": "https://github.com/jangko/nimAES" + }, + { + "name": "nimeverything", + "url": "git://github.com/xland/nimeverything/", + "method": "git", + "tags": [ + "everything", + "voidtools", + "Everything Search Engine" + ], + "description": "everything search engine wrapper", + "license": "MIT", + "web": "https://github.com/xland/nimeverything" } ] From eb5ca129603e4169aaf51a6152a8ceea91073d1a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 1 Sep 2015 17:55:41 +0100 Subject: [PATCH 0129/1381] Package_scanner will now check for duplicate pkg names. --- package_scanner.nim | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package_scanner.nim b/package_scanner.nim index c3312bf..094cbd3 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -20,6 +20,8 @@ import httpclient import net import json import os +import sets +import strutils const @@ -72,6 +74,8 @@ proc check(): int = let pkg_list = parseJson(readFile(getCurrentDir() / "packages.json")) + var names = initSet[string]() + for pdata in pkg_list: name = if pdata.hasKey("name"): pdata["name"].str else: nil @@ -111,6 +115,11 @@ proc check(): int = if not (pdata["license"].str in LICENSES): echo "W: ", name, " has an unexpected license: ", pdata["license"] + if name.normalize notin names: + names.incl(name.normalize) + else: + echo("E: ", name, ": a package by that name already exists.") + result.inc() echo "" echo "Problematic packages count: ", result From df1b9353e45f9a74c70de614931cd8a5ca9c7383 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 1 Sep 2015 17:59:14 +0100 Subject: [PATCH 0130/1381] Handle all errors when calling httpclient. --- package_scanner.nim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package_scanner.nim b/package_scanner.nim index 094cbd3..ba65618 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -63,6 +63,9 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = except AssertionError: echo "W: ", name, ": httpclient failed ", url, " ", getCurrentExceptionMsg() + except: + echo "W: Another error attempting to request: ", url + echo " Error was: ", getCurrentExceptionMsg() proc check(): int = From 575a9be627bfd0bf83025577dc11464a933b6593 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 1 Sep 2015 18:02:46 +0100 Subject: [PATCH 0131/1381] Increase GET timeout. --- package_scanner.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_scanner.nim b/package_scanner.nim index ba65618..848a5ff 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -55,7 +55,7 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = url = urlJson.str try: - discard getContent(url, timeout=1000) + discard getContent(url, timeout=5000) except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() From 1b3f9e4de8166bc0b4c45cb460d86f27a8cf6da5 Mon Sep 17 00:00:00 2001 From: achesak Date: Sat, 5 Sep 2015 13:14:37 -0500 Subject: [PATCH 0132/1381] Add vidhdr. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fc5a09e..699afd4 100644 --- a/packages.json +++ b/packages.json @@ -3214,5 +3214,18 @@ "description": "everything search engine wrapper", "license": "MIT", "web": "https://github.com/xland/nimeverything" + }, + { + "name": "vidhdr", + "url": "git://github.com/achesak/nim-vidhdr", + "method": "git", + "tags": [ + "video", + "formats", + "file" + ], + "description": "Library for detecting the format of an video file", + "license": "MIT", + "web": "https://github.com/achesak/nim-vidhdr" } ] From b64dd3199403848a0e7fc1a0537603e001ee7e9e Mon Sep 17 00:00:00 2001 From: achesak Date: Sat, 5 Sep 2015 13:16:30 -0500 Subject: [PATCH 0133/1381] Add gitapi. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 699afd4..4473eb5 100644 --- a/packages.json +++ b/packages.json @@ -3227,5 +3227,18 @@ "description": "Library for detecting the format of an video file", "license": "MIT", "web": "https://github.com/achesak/nim-vidhdr" + }, + { + "name": "gitapi", + "url": "git://github.com/achesak/nim-gitapi", + "method": "git", + "tags": [ + "git", + "version control", + "library" + ], + "description": "Nim wrapper around the git version control software", + "license": "MIT", + "web": "https://github.com/achesak/nim-gitapi" } ] From c60bf3e3f3ca38d53548e17f42d8243c5b6e2bcb Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Tue, 15 Sep 2015 17:10:03 +0700 Subject: [PATCH 0134/1381] Added package ptrace --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 4473eb5..1f29286 100644 --- a/packages.json +++ b/packages.json @@ -3240,5 +3240,21 @@ "description": "Nim wrapper around the git version control software", "license": "MIT", "web": "https://github.com/achesak/nim-gitapi" + }, + { + "name": "ptrace", + "url": "https://github.com/rgv151/ptrace.nim", + "method": "git", + "tags": [ + "ptrace", + "trace", + "process", + "syscal", + "system", + "call" + ], + "description": "ptrace wrapper for Nim", + "license": "MIT", + "web": "https://github.com/rgv151/ptrace.nim" } ] From 60f2866a3386d7850f738fcc0792ad22542e83ea Mon Sep 17 00:00:00 2001 From: Senketsu Date: Wed, 16 Sep 2015 18:29:13 +0200 Subject: [PATCH 0135/1381] added nim-db-ex --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 1f29286..15f592e 100644 --- a/packages.json +++ b/packages.json @@ -3256,5 +3256,23 @@ "description": "ptrace wrapper for Nim", "license": "MIT", "web": "https://github.com/rgv151/ptrace.nim" + }, + { + "name": "nim-db-ex", + "url": "https://github.com/Senketsu/nim-db-ex", + "method": "git", + "tags": [ + "extension", + "database", + "Nim", + "convenience", + "db", + "mysql", + "postgres", + "sqlite" + ], + "description": "extension modules for Nim's 'db_*' modules", + "license": "MIT", + "web": "https://github.com/Senketsu/nim-db-ex" } ] From d872cd8bc8bde8cd65ff98abdd26378d87fd6eae Mon Sep 17 00:00:00 2001 From: Senketsu Date: Wed, 16 Sep 2015 18:58:56 +0200 Subject: [PATCH 0136/1381] fix package name as requested --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 15f592e..2fca040 100644 --- a/packages.json +++ b/packages.json @@ -3258,7 +3258,7 @@ "web": "https://github.com/rgv151/ptrace.nim" }, { - "name": "nim-db-ex", + "name": "ndbex", "url": "https://github.com/Senketsu/nim-db-ex", "method": "git", "tags": [ From 4b6ad2d9aeeaf0b87311ffb4ea4a0d615b8ce619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Krampe?= Date: Sat, 19 Sep 2015 01:09:52 +0200 Subject: [PATCH 0137/1381] Added package ni --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 2fca040..8a59a24 100644 --- a/packages.json +++ b/packages.json @@ -3274,5 +3274,18 @@ "description": "extension modules for Nim's 'db_*' modules", "license": "MIT", "web": "https://github.com/Senketsu/nim-db-ex" + }, + { + "name": "ni", + "url": "git://github.com/gokr/ni/", + "method": "git", + "tags": [ + "language", + "library", + "scripting" + ], + "description": "A Rebol-ish language implemented as an AST interpreter", + "license": "MIT", + "web": "https://github.com/gokr/ni" } ] From c2cdd7ceabf46cda6b417e0c69f1141d66938609 Mon Sep 17 00:00:00 2001 From: jangko Date: Sun, 20 Sep 2015 11:29:30 +0700 Subject: [PATCH 0138/1381] add nimPNG and nimBMP nimPDF sister projects number 3 and 4 --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 8a59a24..8752eae 100644 --- a/packages.json +++ b/packages.json @@ -3287,5 +3287,31 @@ "description": "A Rebol-ish language implemented as an AST interpreter", "license": "MIT", "web": "https://github.com/gokr/ni" + }, + { + "name": "nimBMP", + "url": "https://github.com/jangko/nimBMP", + "method": "git", + "tags": [ + "graphics", + "library", + "BMP" + ], + "description": "BMP encoder and decoder", + "license": "MIT", + "web": "https://github.com/jangko/nimBMP" + }, + { + "name": "nimPNG", + "url": "https://github.com/jangko/nimPNG", + "method": "git", + "tags": [ + "graphics", + "library", + "PNG" + ], + "description": "PNG(Portable Network Graphics) encoder and decoder", + "license": "MIT", + "web": "https://github.com/jangko/nimPNG" } ] From f3b963efa70480f7d04b7bb353fea7803b9d0284 Mon Sep 17 00:00:00 2001 From: Fabio Cevasco Date: Sun, 20 Sep 2015 18:48:29 +0200 Subject: [PATCH 0139/1381] Added LiteStore. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8752eae..60466df 100644 --- a/packages.json +++ b/packages.json @@ -3313,5 +3313,18 @@ "description": "PNG(Portable Network Graphics) encoder and decoder", "license": "MIT", "web": "https://github.com/jangko/nimPNG" + }, + { + "name": "LiteStore", + "url": "https://github.com/h3rald/litestore", + "method": "git", + "tags": [ + "database", + "rest", + "sqlite" + ], + "description": "A lightweight, self-contained, RESTful, searchable, multi-format NoSQL document store", + "license": "MIT", + "web": "https://h3rald.com/litestore" } ] From 79766b95996ae2e9f57144595f678772a8aa142f Mon Sep 17 00:00:00 2001 From: JamesP Date: Mon, 21 Sep 2015 22:10:36 +1000 Subject: [PATCH 0140/1381] add parseFixed package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 60466df..316afb6 100644 --- a/packages.json +++ b/packages.json @@ -3327,4 +3327,19 @@ "license": "MIT", "web": "https://h3rald.com/litestore" } + { + "name": "parseFixed", + "url": "https://github.com/jlp765/parsefixed", + "method": "git", + "tags": [ + "parse", + "fixed", + "width", + "parser", + "text" + ], + "description": "Parse fixed-width fields within lines of text (complementary to parsecsv)", + "license": "MIT", + "web": "https://github.com/jlp765/parsefixed" + } ] From 024fac0682115dedd819f0176e441c5ce90cfd49 Mon Sep 17 00:00:00 2001 From: JamesP Date: Mon, 21 Sep 2015 22:20:58 +1000 Subject: [PATCH 0141/1381] fix: package name match case of nim file --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 316afb6..e22ee2d 100644 --- a/packages.json +++ b/packages.json @@ -3328,7 +3328,7 @@ "web": "https://h3rald.com/litestore" } { - "name": "parseFixed", + "name": "parsefixed", "url": "https://github.com/jlp765/parsefixed", "method": "git", "tags": [ From 31a9658b3943e474b34eddcd450323fe1d8901db Mon Sep 17 00:00:00 2001 From: JamesP Date: Mon, 21 Sep 2015 22:24:38 +1000 Subject: [PATCH 0142/1381] fix: missed a comma :-( --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index e22ee2d..3bb1f10 100644 --- a/packages.json +++ b/packages.json @@ -3326,9 +3326,9 @@ "description": "A lightweight, self-contained, RESTful, searchable, multi-format NoSQL document store", "license": "MIT", "web": "https://h3rald.com/litestore" - } + }, { - "name": "parsefixed", + "name": "parseFixed", "url": "https://github.com/jlp765/parsefixed", "method": "git", "tags": [ From b4bcbbd460aab8db8bd6079a9c8bd4fae3aefc3b Mon Sep 17 00:00:00 2001 From: achesak Date: Mon, 21 Sep 2015 11:13:17 -0500 Subject: [PATCH 0143/1381] Add playlists. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 3bb1f10..56ddb3a 100644 --- a/packages.json +++ b/packages.json @@ -3341,5 +3341,20 @@ "description": "Parse fixed-width fields within lines of text (complementary to parsecsv)", "license": "MIT", "web": "https://github.com/jlp765/parsefixed" + }, + { + "name": "playlists", + "url": "https://github.com/achesak/nim-playlists", + "method": "git", + "tags": [ + "library", + "playlists", + "M3U", + "PLS", + "XSPF" + ], + "description": "Nim library for parsing PLS, M3U, and XSPF playlist files", + "license": "MIT", + "web": "https://github.com/achesak/nim-playlists" } ] From 4c8afd84a19f498bc559fa081bce2c69a56182ba Mon Sep 17 00:00:00 2001 From: Fabio Cevasco Date: Mon, 21 Sep 2015 22:22:27 +0200 Subject: [PATCH 0144/1381] fix: LiteStore -> litestore The name of the package should match the name of the compiled binary file really... --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 56ddb3a..5a0b014 100644 --- a/packages.json +++ b/packages.json @@ -3315,7 +3315,7 @@ "web": "https://github.com/jangko/nimPNG" }, { - "name": "LiteStore", + "name": "litestore", "url": "https://github.com/h3rald/litestore", "method": "git", "tags": [ From d13b2ef93a73aa2413d8b738ae9cb17f4721cd09 Mon Sep 17 00:00:00 2001 From: JamesP Date: Tue, 6 Oct 2015 12:42:18 +1000 Subject: [PATCH 0145/1381] add seqmath package Nim math library for sequences and nested sequences (extends math library) --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index 5a0b014..4a9b041 100644 --- a/packages.json +++ b/packages.json @@ -3356,5 +3356,24 @@ "description": "Nim library for parsing PLS, M3U, and XSPF playlist files", "license": "MIT", "web": "https://github.com/achesak/nim-playlists" + }, + { + "name": "seqmath", + "url": "https://github.com/jlp765/seqmath", + "method": "git", + "tags": [ + "math", + "seq", + "sequence", + "array", + "nested", + "algebra", + "statistics", + "lifted", + "financial" + ], + "description": "Nim math library for sequences and nested sequences (extends math library)", + "license": "MIT", + "web": "https://github.com/jlp765/seqmath" } ] From 8e77913d739f086795235125840e970e0f5b8570 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Tue, 6 Oct 2015 15:20:48 +0700 Subject: [PATCH 0146/1381] Added package daemonize --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 5a0b014..bf6572e 100644 --- a/packages.json +++ b/packages.json @@ -3356,5 +3356,21 @@ "description": "Nim library for parsing PLS, M3U, and XSPF playlist files", "license": "MIT", "web": "https://github.com/achesak/nim-playlists" + }, + { + "name": "daemonize", + "url": "https://github.com/rgv151/daemonize.nim", + "method": "git", + "tags": [ + "daemonize", + "background", + "fork", + "unix", + "linux", + "process" + ], + "description": "This library makes your code run as a daemon process on Unix-like systems", + "license": "MIT", + "web": "https://github.com/rgv151/daemonize.nim" } ] From 33a2d012092bfb3cc16df8bbc5cadc5e1730abb2 Mon Sep 17 00:00:00 2001 From: JamesP Date: Fri, 16 Oct 2015 09:44:34 +1000 Subject: [PATCH 0147/1381] add tnim nimble package (Nim REPL) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 355c8dd..ea723f4 100644 --- a/packages.json +++ b/packages.json @@ -3392,5 +3392,22 @@ "license": "MIT", "web": "https://github.com/rgv151/daemonize.nim" + }, + { + "name": "tnim", + "url": "https://github.com/jlp765/tnim", + "method": "git", + "tags": [ + "REPL", + "sandbox", + "interactive", + "compiler", + "code", + "language", + "Nim" + ], + "description": "tnim is a Nim REPL - an interactive sandbox for testing Nim code", + "license": "MIT", + "web": "https://github.com/jlp765/tnim" } ] From 1b5545dc60984bf7af389da4ea1076448cc518fc Mon Sep 17 00:00:00 2001 From: achesak Date: Thu, 15 Oct 2015 19:35:00 -0500 Subject: [PATCH 0148/1381] Add nim-ris and nim-geoip --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 355c8dd..9a2d5f2 100644 --- a/packages.json +++ b/packages.json @@ -3392,5 +3392,31 @@ "license": "MIT", "web": "https://github.com/rgv151/daemonize.nim" + }, + { + "name": "ris", + "url": "https://github.com/achesak/nim-ris", + "method": "git", + "tags": [ + "RIS", + "citation", + "library" + ], + "description": "Module for working with RIS citation files", + "license": "MIT", + "web": "https://github.com/achesak/nim-ris" + }, + { + "name": "geoip", + "url": "https://github.com/achesak/nim-geoip", + "method": "git", + "tags": [ + "IP", + "address", + "location" + ], + "description": "Retrieve info about a location from an IP address", + "license": "MIT", + "web": "https://github.com/achesak/nim-geoip" } ] From 41c882e34a7303c922bf5edf60b3c78e483ac76e Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 17 Oct 2015 14:23:19 +0100 Subject: [PATCH 0149/1381] Added more license to package_scanner. --- package_scanner.nim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package_scanner.nim b/package_scanner.nim index 848a5ff..a41fde0 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -27,6 +27,7 @@ const LICENSES = @[ "Allegro 4 Giftware", + "Apache License 2.0", "BSD", "BSD3", "CC0", @@ -37,9 +38,11 @@ const "LGPLv3", "MIT", "MS-PL", + "MPL", "WTFPL", "libpng", - "zlib" + "zlib", + "ISC" ] VCS_TYPES = @["git", "hg"] From 931a98bc3bae575021207425193dddbe0edfd6bd Mon Sep 17 00:00:00 2001 From: Roger Shi Date: Mon, 19 Oct 2015 12:10:39 +0800 Subject: [PATCH 0150/1381] add nim-routine package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 752bde8..acbfea5 100644 --- a/packages.json +++ b/packages.json @@ -3435,5 +3435,19 @@ "description": "Retrieve info about a location from an IP address", "license": "MIT", "web": "https://github.com/achesak/nim-geoip" + }, + { + "name": "nimroutine", + "url": "https://github.com/rogercloud/nim-routine", + "method": "git", + "tags": [ + "goroutine", + "routine", + "lightweight", + "thread" + ], + "description": "A go routine like nim implementation", + "license": "MIT", + "web": "https://github.com/rogercloud/nim-routine" } ] From 3ddf2920243c366c3b49958443c19244ddb7698d Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Wed, 21 Oct 2015 14:47:23 +0300 Subject: [PATCH 0151/1381] Added code coverage lib. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index acbfea5..7a53260 100644 --- a/packages.json +++ b/packages.json @@ -3449,5 +3449,17 @@ "description": "A go routine like nim implementation", "license": "MIT", "web": "https://github.com/rogercloud/nim-routine" + }, + { + "name": "coverage", + "url": "https://github.com/yglukhov/coverage", + "method": "git", + "tags": [ + "code", + "coverage" + ], + "description": "Code coverage library", + "license": "MIT", + "web": "https://github.com/yglukhov/coverage" } ] From 61bb803f13cceda69c683ecf7ab6fa3ea380d95f Mon Sep 17 00:00:00 2001 From: Stefan Talpalaru Date: Fri, 30 Oct 2015 23:46:36 +0100 Subject: [PATCH 0152/1381] add golib-nim --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 7a53260..cb6ee11 100644 --- a/packages.json +++ b/packages.json @@ -3391,7 +3391,6 @@ "description": "This library makes your code run as a daemon process on Unix-like systems", "license": "MIT", "web": "https://github.com/rgv151/daemonize.nim" - }, { "name": "tnim", @@ -3461,5 +3460,17 @@ "description": "Code coverage library", "license": "MIT", "web": "https://github.com/yglukhov/coverage" + }, + { + "name": "golib-nim", + "url": "https://github.com/stefantalpalaru/golib-nim", + "method": "git", + "tags": [ + "library", + "wrapper" + ], + "description": "Bindings for golib - a library that (ab)uses gccgo to bring Go's channels and goroutines to the rest of the world", + "license": "BSD", + "web": "https://github.com/stefantalpalaru/golib-nim" } ] From e7dc09181d3e3013f2b1c84213e7cc306806a052 Mon Sep 17 00:00:00 2001 From: Stefan Talpalaru Date: Sat, 31 Oct 2015 00:30:33 +0100 Subject: [PATCH 0153/1381] remove '-nim' from package name --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cb6ee11..0d19226 100644 --- a/packages.json +++ b/packages.json @@ -3462,7 +3462,7 @@ "web": "https://github.com/yglukhov/coverage" }, { - "name": "golib-nim", + "name": "golib", "url": "https://github.com/stefantalpalaru/golib-nim", "method": "git", "tags": [ From 9bbcdf390cd19b33f28c7a040d94ab2fa3e00d91 Mon Sep 17 00:00:00 2001 From: Nick Greenfield Date: Thu, 5 Nov 2015 12:02:05 -0800 Subject: [PATCH 0154/1381] Update repo location for bitarray package --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 0d19226..49ea156 100644 --- a/packages.json +++ b/packages.json @@ -1115,7 +1115,7 @@ }, { "name": "bitarray", - "url": "git://github.com/refgenomics/nimrod-bitarray/", + "url": "git://github.com/refgenomics/nim-bitarray/", "method": "git", "tags": [ "Bit arrays", @@ -1123,9 +1123,9 @@ "Bit vectors", "Data structures" ], - "description": "mmap-backed bitarray implementation in Nimrod..", + "description": "mmap-backed bitarray implementation in Nim.", "license": "MIT", - "web": "https://www.github.com/refgenomics/nimrod-bitarray/" + "web": "https://www.github.com/refgenomics/nim-bitarray/" }, { "name": "appdirs", From 492d3158de4e3d2ace16e7615b0818b8c42f9dca Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 15 Nov 2015 22:58:44 +0000 Subject: [PATCH 0155/1381] Add libnotify wrapper --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 49ea156..77212af 100644 --- a/packages.json +++ b/packages.json @@ -3472,5 +3472,18 @@ "description": "Bindings for golib - a library that (ab)uses gccgo to bring Go's channels and goroutines to the rest of the world", "license": "BSD", "web": "https://github.com/stefantalpalaru/golib-nim" + }, + { + "name": "libnotify", + "url": "https://github.com/FedericoCeratto/nim-libnotify.git", + "method": "git", + "tags": [ + "library", + "wrapper", + "desktop" + ], + "description": "Minimalistic libnotify wrapper for desktop notifications", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-libnotify" } ] From ed3ab5837a50eb5cc4ac70998de82e28ad04bca5 Mon Sep 17 00:00:00 2001 From: James Milne Date: Mon, 16 Nov 2015 23:44:35 +1100 Subject: [PATCH 0156/1381] Added nimcat --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 77212af..de9e107 100644 --- a/packages.json +++ b/packages.json @@ -3485,5 +3485,17 @@ "description": "Minimalistic libnotify wrapper for desktop notifications", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-libnotify" + }, + { + "name": "nimcat", + "url": "https://github.com/shakna-israel/nimcat", + "method": "git", + "tags": [ + "cat", + "cli" + ], + "description": "An implementation of cat in Nim", + "license": "MIT", + "web": "https://github.com/shakna-israel/nimcat", } ] From c76164c2a59fd900a0cb5d0af5460bb67b98ec6e Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Mon, 16 Nov 2015 20:03:28 -0500 Subject: [PATCH 0157/1381] Revert "Added nimcat" --- packages.json | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/packages.json b/packages.json index de9e107..77212af 100644 --- a/packages.json +++ b/packages.json @@ -3485,17 +3485,5 @@ "description": "Minimalistic libnotify wrapper for desktop notifications", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-libnotify" - }, - { - "name": "nimcat", - "url": "https://github.com/shakna-israel/nimcat", - "method": "git", - "tags": [ - "cat", - "cli" - ], - "description": "An implementation of cat in Nim", - "license": "MIT", - "web": "https://github.com/shakna-israel/nimcat", } ] From 0026df6cc209599aeddb86f58e693f06f5d8c58a Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Mon, 16 Nov 2015 20:15:04 -0500 Subject: [PATCH 0158/1381] Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 77212af..16009a8 100644 --- a/packages.json +++ b/packages.json @@ -3485,5 +3485,17 @@ "description": "Minimalistic libnotify wrapper for desktop notifications", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-libnotify" + }, + { + "name": "nimcat", + "url": "https://github.com/shakna-israel/nimcat", + "method": "git", + "tags": [ + "cat", + "cli" + ], + "description": "An implementation of cat in Nim", + "license": "MIT", + "web": "https://github.com/shakna-israel/nimcat" } ] From d7c3df12b028951c3a38f5990d71165c42af9c92 Mon Sep 17 00:00:00 2001 From: c0ffeeartc Date: Thu, 19 Nov 2015 01:36:45 +0200 Subject: [PATCH 0159/1381] added sections package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 16009a8..22ae54d 100644 --- a/packages.json +++ b/packages.json @@ -3497,5 +3497,17 @@ "description": "An implementation of cat in Nim", "license": "MIT", "web": "https://github.com/shakna-israel/nimcat" + }, + { + "name": "sections", + "url": "https://github.com/c0ffeeartc/nim-sections", + "method": "git", + "tags": [ + "BDD", + "test" + ], + "description": "`Section` macro with BDD aliases for testing", + "license": "MIT", + "web": "https://github.com/c0ffeeartc/nim-sections" } ] From 5a70d8e885976fba7e978bf0dca8b041816d81ed Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Fri, 20 Nov 2015 15:14:31 +0600 Subject: [PATCH 0160/1381] Added nimfp library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 22ae54d..d822ce6 100644 --- a/packages.json +++ b/packages.json @@ -3509,5 +3509,17 @@ "description": "`Section` macro with BDD aliases for testing", "license": "MIT", "web": "https://github.com/c0ffeeartc/nim-sections" + }, + { + "name": "nimfp", + "url": "https://github.com/vegansk/nimfp", + "method": "git", + "tags": [ + "functional", + "library" + ], + "description": "Nim functional programming library", + "license": "MIT", + "web": "https://github.com/vegansk/nimfp" } ] From 456b80c1ccf3a4104313ad79cf9eb3c1a2a604e8 Mon Sep 17 00:00:00 2001 From: twist_vector Date: Fri, 20 Nov 2015 16:39:52 -0500 Subject: [PATCH 0161/1381] Added NHSL and nim-stopwatch --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index d822ce6..fc22aff 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,31 @@ [ + { + "name": "nhsl", + "url": "https://github.com/twist-vector/nhsl.git", + "method": "git", + "tags": [ + "library", + "serialization", + "pure" + ], + "description": "Nim Hessian Serialization Library encodes/decodes data into the Hessian binary protocol", + "license": "LGPL", + "web": "https://github.com/twist-vector/nhsl" + }, + { + "name": "nim-stopwatch", + "url": "https://github.com/twist-vector/nim-stopwatch.git", + "method": "git", + "tags": [ + "app", + "timer" + ], + "description": "A Nim-based, non-graphical application designed to measure the amount of time elapsed from its activation to deactivation, includes total elapsed time, lap, and split times.", + "license": "LGPL", + "web": "https://github.com/twist-vector/nim-stopwatch" + }, + + { "name": "argument_parser", "url": "git://github.com/Xe/argument_parser/", From da863fb407a91e90a98b0cae7b0b57402451f03a Mon Sep 17 00:00:00 2001 From: theduke Date: Sat, 21 Nov 2015 16:29:50 +0100 Subject: [PATCH 0162/1381] Added playground pkg. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d822ce6..1243fff 100644 --- a/packages.json +++ b/packages.json @@ -3521,5 +3521,17 @@ "description": "Nim functional programming library", "license": "MIT", "web": "https://github.com/vegansk/nimfp" + }, + { + "name": "playground", + "url": "https://github.com/theduke/nim-playground", + "method": "git", + "tags": [ + "functional", + "library" + ], + "description": "Web-based playground for testing Nim code.", + "license": "MIT", + "web": "https://github.com/theduke/nim-playground" } ] From c0001eac42bbb46f0d1c83443d770382449c356e Mon Sep 17 00:00:00 2001 From: twist_vector Date: Sat, 21 Nov 2015 12:00:40 -0500 Subject: [PATCH 0163/1381] Changed 'nim-stopwatch' to 'nimstopwatch' --- packages.json | 52 +++++++++++++++++++++++++-------------------------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/packages.json b/packages.json index fc22aff..8231900 100644 --- a/packages.json +++ b/packages.json @@ -1,31 +1,4 @@ [ - { - "name": "nhsl", - "url": "https://github.com/twist-vector/nhsl.git", - "method": "git", - "tags": [ - "library", - "serialization", - "pure" - ], - "description": "Nim Hessian Serialization Library encodes/decodes data into the Hessian binary protocol", - "license": "LGPL", - "web": "https://github.com/twist-vector/nhsl" - }, - { - "name": "nim-stopwatch", - "url": "https://github.com/twist-vector/nim-stopwatch.git", - "method": "git", - "tags": [ - "app", - "timer" - ], - "description": "A Nim-based, non-graphical application designed to measure the amount of time elapsed from its activation to deactivation, includes total elapsed time, lap, and split times.", - "license": "LGPL", - "web": "https://github.com/twist-vector/nim-stopwatch" - }, - - { "name": "argument_parser", "url": "git://github.com/Xe/argument_parser/", @@ -3548,5 +3521,30 @@ "description": "Nim functional programming library", "license": "MIT", "web": "https://github.com/vegansk/nimfp" + }, + { + "name": "nhsl", + "url": "https://github.com/twist-vector/nhsl.git", + "method": "git", + "tags": [ + "library", + "serialization", + "pure" + ], + "description": "Nim Hessian Serialization Library encodes/decodes data into the Hessian binary protocol", + "license": "LGPL", + "web": "https://github.com/twist-vector/nhsl" + }, + { + "name": "nimstopwatch", + "url": "https://github.com/twist-vector/nim-stopwatch.git", + "method": "git", + "tags": [ + "app", + "timer" + ], + "description": "A Nim-based, non-graphical application designed to measure the amount of time elapsed from its activation to deactivation, includes total elapsed time, lap, and split times.", + "license": "LGPL", + "web": "https://github.com/twist-vector/nim-stopwatch" } ] From 47e997786739ab5394b6f08d3690e204e8775657 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 21 Nov 2015 17:53:05 +0000 Subject: [PATCH 0164/1381] Better tags for `playground` package. --- packages.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index b4c6312..4802c99 100644 --- a/packages.json +++ b/packages.json @@ -3552,8 +3552,11 @@ "url": "https://github.com/theduke/nim-playground", "method": "git", "tags": [ - "functional", - "library" + "webapp", + "execution", + "nim", + "code", + "sandbox" ], "description": "Web-based playground for testing Nim code.", "license": "MIT", From 5adf37894523985efe60a00c023190b16e7a9965 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Mon, 23 Nov 2015 13:07:23 +0200 Subject: [PATCH 0165/1381] Added nimsl lib --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4802c99..c9536ff 100644 --- a/packages.json +++ b/packages.json @@ -3561,5 +3561,18 @@ "description": "Web-based playground for testing Nim code.", "license": "MIT", "web": "https://github.com/theduke/nim-playground" + }, + { + "name": "nimsl", + "url": "https://github.com/yglukhov/nimsl", + "method": "git", + "tags": [ + "shader", + "opengl", + "glsl" + ], + "description": "Shaders in Nim.", + "license": "MIT", + "web": "https://github.com/yglukhov/nimsl" } ] From ce4522a0775933f3b91cb52c79c4cf656f3d9f80 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Tue, 24 Nov 2015 04:46:56 +0100 Subject: [PATCH 0166/1381] Added package nimlog --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c9536ff..6ba6646 100644 --- a/packages.json +++ b/packages.json @@ -3574,5 +3574,18 @@ "description": "Shaders in Nim.", "license": "MIT", "web": "https://github.com/yglukhov/nimsl" + }, + { + "name": "nimlog", + "url": "https://github.com/theduke/nim-nimlog", + "method": "git", + "tags": [ + "library", + "logging", + "logs" + ], + "description": "Advanced logging library for Nim with structured logging, formatters, filters and writers.", + "license": "MIT", + "web": "https://github.com/theduke/nim-nimlog" } ] From 25aa8445e6be5464a641e4f17613f54fbee5a3eb Mon Sep 17 00:00:00 2001 From: twist_vector Date: Tue, 24 Nov 2015 14:11:42 -0500 Subject: [PATCH 0167/1381] Added bped and geohash --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 6ba6646..dae00ba 100644 --- a/packages.json +++ b/packages.json @@ -3588,4 +3588,30 @@ "license": "MIT", "web": "https://github.com/theduke/nim-nimlog" } + { + "name": "geohash", + "url": "https://github.com/twist-vector/nim-geohash.git", + "method": "git", + "tags": [ + "library", + "geocoding", + "pure" + ], + "description": "Nim implementation of the geohash latitude/longitude geocode system", + "license": "Apache License 2.0", + "web": "https://github.com/twist-vector/nim-geohash" + } + { + "name": "bped", + "url": "https://github.com/twist-vector/nim-bped.git", + "method": "git", + "tags": [ + "library", + "serialization", + "pure" + ], + "description": "Nim implementation of the Bittorrent ascii serialization protocol", + "license": "Apache License 2.0", + "web": "https://github.com/twist-vector/nim-bped" + } ] From 6693928e76886fe1a014493de6486760b62c9bdd Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Tue, 24 Nov 2015 03:37:05 +0100 Subject: [PATCH 0168/1381] Added package values --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6ba6646..1442b33 100644 --- a/packages.json +++ b/packages.json @@ -3587,5 +3587,18 @@ "description": "Advanced logging library for Nim with structured logging, formatters, filters and writers.", "license": "MIT", "web": "https://github.com/theduke/nim-nimlog" + }, + { + "name": "values", + "url": "https://github.com/theduke/nim-values", + "method": "git", + "tags": [ + "library", + "values", + "datastructures" + ], + "description": "Library for working with arbitrary values + a map data structure.", + "license": "MIT", + "web": "https://github.com/theduke/nim-values" } ] From a773e798c2dafcd5b6b3338ee136c53a159f857c Mon Sep 17 00:00:00 2001 From: twist_vector Date: Wed, 25 Nov 2015 05:40:53 -0500 Subject: [PATCH 0169/1381] Fixed missing ',' --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index dae00ba..8ec426a 100644 --- a/packages.json +++ b/packages.json @@ -3587,7 +3587,7 @@ "description": "Advanced logging library for Nim with structured logging, formatters, filters and writers.", "license": "MIT", "web": "https://github.com/theduke/nim-nimlog" - } + }, { "name": "geohash", "url": "https://github.com/twist-vector/nim-geohash.git", @@ -3600,7 +3600,7 @@ "description": "Nim implementation of the geohash latitude/longitude geocode system", "license": "Apache License 2.0", "web": "https://github.com/twist-vector/nim-geohash" - } + }, { "name": "bped", "url": "https://github.com/twist-vector/nim-bped.git", From e58bd1f7e844b3f92bf412b0a1d0a622b7c96e93 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 25 Nov 2015 11:53:51 +0000 Subject: [PATCH 0170/1381] Fixes botched merged. --- packages.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 953b53e..cab756f 100644 --- a/packages.json +++ b/packages.json @@ -3589,7 +3589,6 @@ "web": "https://github.com/theduke/nim-nimlog" }, { -<<<<<<< HEAD "name": "values", "url": "https://github.com/theduke/nim-values", "method": "git", @@ -3601,7 +3600,8 @@ "description": "Library for working with arbitrary values + a map data structure.", "license": "MIT", "web": "https://github.com/theduke/nim-values" -======= + }, + { "name": "geohash", "url": "https://github.com/twist-vector/nim-geohash.git", "method": "git", @@ -3626,6 +3626,5 @@ "description": "Nim implementation of the Bittorrent ascii serialization protocol", "license": "Apache License 2.0", "web": "https://github.com/twist-vector/nim-bped" ->>>>>>> a773e798c2dafcd5b6b3338ee136c53a159f857c } ] From 8113fc92c0c45420cacb0c416b0b09e69f4ebe54 Mon Sep 17 00:00:00 2001 From: Skyforce77 Date: Thu, 26 Nov 2015 06:18:58 +0100 Subject: [PATCH 0171/1381] Added ctrulib wrapper --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index cab756f..7030029 100644 --- a/packages.json +++ b/packages.json @@ -3626,5 +3626,18 @@ "description": "Nim implementation of the Bittorrent ascii serialization protocol", "license": "Apache License 2.0", "web": "https://github.com/twist-vector/nim-bped" + }, + { + "name": "ctrulib", + "url": "https://github.com/skyforce77/ctrulib-nim.git", + "method": "git", + "tags": [ + "library", + "nintendo", + "3ds" + ], + "description": "ctrulib wrapper", + "license": "GPLv2", + "web": "https://github.com/skyforce77/ctrulib-nim" } ] From 82db25f5ad589d9a7b6c256f07d843036824ac5d Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Thu, 26 Nov 2015 23:30:19 +0100 Subject: [PATCH 0172/1381] Updated values and nimlog (renamed to omnilog) --- packages.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages.json b/packages.json index 7030029..d7e6441 100644 --- a/packages.json +++ b/packages.json @@ -3576,8 +3576,8 @@ "web": "https://github.com/yglukhov/nimsl" }, { - "name": "nimlog", - "url": "https://github.com/theduke/nim-nimlog", + "name": "omnilog", + "url": "https://github.com/nim-appkit/omnilog", "method": "git", "tags": [ "library", @@ -3586,11 +3586,11 @@ ], "description": "Advanced logging library for Nim with structured logging, formatters, filters and writers.", "license": "MIT", - "web": "https://github.com/theduke/nim-nimlog" + "web": "https://github.com/nim-appkit/omnilog" }, { "name": "values", - "url": "https://github.com/theduke/nim-values", + "url": "https://github.com/nim-appkit/values", "method": "git", "tags": [ "library", @@ -3599,7 +3599,7 @@ ], "description": "Library for working with arbitrary values + a map data structure.", "license": "MIT", - "web": "https://github.com/theduke/nim-values" + "web": "https://github.com/nim-appkit/values" }, { "name": "geohash", From 3219447cb35948db6b4fb7dd83268693c3049ae4 Mon Sep 17 00:00:00 2001 From: dfdeshom Date: Sat, 28 Nov 2015 23:50:09 -0600 Subject: [PATCH 0173/1381] add nimrdkafka --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d7e6441..3c94af8 100644 --- a/packages.json +++ b/packages.json @@ -3639,5 +3639,18 @@ "description": "ctrulib wrapper", "license": "GPLv2", "web": "https://github.com/skyforce77/ctrulib-nim" - } + }, + { + "name": "nimrdkafka", + "url": "https://github.com/dfdeshom/nimrdkafka.git", + "method": "git", + "tags": [ + "library", + "wrapper", + "kafka" + ], + "description": "Nim wrapper for librdkafka", + "license": "Apache License 2.0", + "web": "https://github.com/dfdeshom/nimrdkafka" + } ] From ef0f75e856058c9e6c7e262399a62f1695992698 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Mon, 30 Nov 2015 18:11:01 +0100 Subject: [PATCH 0174/1381] Added utils and YAML packages --- packages.json | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 3c94af8..4c34f76 100644 --- a/packages.json +++ b/packages.json @@ -3652,5 +3652,31 @@ "description": "Nim wrapper for librdkafka", "license": "Apache License 2.0", "web": "https://github.com/dfdeshom/nimrdkafka" - } + }, + { + "name": "utils", + "url": "https://github.com/nim-appkit/utils", + "method": "git", + "tags": [ + "library", + "utilities", + ], + "description": "Collection of string, parsing, pointer, ... utilities.", + "license": "MIT", + "web": "https://github.com/nim-appkit/utils" + }, + { + "name": "yaml", + "url": "https://github.com/nim-appkit/yaml", + "method": "git", + "tags": [ + "library", + "serialization", + "parsing" + "yaml" + ], + "description": "YAML parser", + "license": "MIT", + "web": "https://github.com/nim-appkit/yaml" + } ] From edb1f1695174192e9a71a87efa4d79c68f84c5a0 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Mon, 30 Nov 2015 18:22:00 +0100 Subject: [PATCH 0175/1381] fixed line ending --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 4c34f76..e2e0a11 100644 --- a/packages.json +++ b/packages.json @@ -3679,4 +3679,4 @@ "license": "MIT", "web": "https://github.com/nim-appkit/yaml" } -] +] \ No newline at end of file From ca81287d7227b7fc3cb9915c43623bd5e38b33c6 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Mon, 30 Nov 2015 18:24:19 +0100 Subject: [PATCH 0176/1381] fixed ... --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index e2e0a11..ddbe227 100644 --- a/packages.json +++ b/packages.json @@ -3659,7 +3659,7 @@ "method": "git", "tags": [ "library", - "utilities", + "utilities" ], "description": "Collection of string, parsing, pointer, ... utilities.", "license": "MIT", @@ -3672,7 +3672,7 @@ "tags": [ "library", "serialization", - "parsing" + "parsing", "yaml" ], "description": "YAML parser", From 29f7f12419093639584a8465d218ca2f76dd38cf Mon Sep 17 00:00:00 2001 From: James Boyden Date: Thu, 3 Dec 2015 14:08:05 +1100 Subject: [PATCH 0177/1381] Added nim-pymod --- packages.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ddbe227..3f3353c 100644 --- a/packages.json +++ b/packages.json @@ -3678,5 +3678,27 @@ "description": "YAML parser", "license": "MIT", "web": "https://github.com/nim-appkit/yaml" + }, + { + "name": "pymod", + "url": "https://github.com/jboy/nim-pymod", + "method": "git", + "tags": [ + "wrapper", + "python", + "module", + "numpy", + "array", + "matrix", + "ndarray", + "pyobject", + "pyarrayobject", + "iterator", + "iterators", + "docstring", + ], + "description": "Auto-generate a Python module that wraps a Nim module.", + "license": "MIT", + "web": "https://github.com/jboy/nim-pymod" } -] \ No newline at end of file +] From f4d6ac10c07eb11d5acd4ad1ca3ca8a2fd5cbf70 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 4 Dec 2015 15:55:21 +0000 Subject: [PATCH 0178/1381] Fix trailing commas --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 3f3353c..cb49349 100644 --- a/packages.json +++ b/packages.json @@ -3695,7 +3695,7 @@ "pyarrayobject", "iterator", "iterators", - "docstring", + "docstring" ], "description": "Auto-generate a Python module that wraps a Nim module.", "license": "MIT", From 30eb49c3af7c698a49c6e181909a7cd8e3c78ca8 Mon Sep 17 00:00:00 2001 From: JamesP Date: Sat, 5 Dec 2015 22:41:52 +1000 Subject: [PATCH 0179/1381] add db package - unified single module combining db_sqlite, db_postgres, db_mysql --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index cb49349..280ecf6 100644 --- a/packages.json +++ b/packages.json @@ -3700,5 +3700,24 @@ "description": "Auto-generate a Python module that wraps a Nim module.", "license": "MIT", "web": "https://github.com/jboy/nim-pymod" + }, + { + "name": "db", + "url": "https://github.com/jlp765/db", + "method": "git", + "tags": [ + "wrapper", + "database", + "module", + "sqlite", + "mysql", + "postgres", + "db_sqlite", + "db_mysql", + "db_postgres" + ], + "description": "Unified db access module, providing a single library module to access the db_sqlite, db_mysql and db_postgres modules.", + "license": "MIT", + "web": "https://github.com/jlp765/db" } ] From be06ca32ef2f0240f1a571ee69681a230f2d1ea5 Mon Sep 17 00:00:00 2001 From: dfdeshom Date: Mon, 7 Dec 2015 16:27:14 -0600 Subject: [PATCH 0180/1381] add nimsnappy, a wrapper for the snappy library --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 280ecf6..6c299ef 100644 --- a/packages.json +++ b/packages.json @@ -3719,5 +3719,17 @@ "description": "Unified db access module, providing a single library module to access the db_sqlite, db_mysql and db_postgres modules.", "license": "MIT", "web": "https://github.com/jlp765/db" - } + }, + { + "name": "nimsnappy", + "url": "https://github.com/dfdeshom/nimsnappy.git", + "method": "git", + "tags": [ + "wrapper", + "compression" + ], + "description": "Nim wrapper for the snappy compression library. there is also a high-level API for easy use", + "license": "BSD", + "web": "https://github.com/dfdeshom/nimsnappy" + } ] From 8fd77da40dd4313c8fe1a9dc655a4174ad398c25 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Wed, 9 Dec 2015 15:51:07 +0200 Subject: [PATCH 0181/1381] Added sound lib --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 6c299ef..9ff8eb3 100644 --- a/packages.json +++ b/packages.json @@ -3731,5 +3731,17 @@ "description": "Nim wrapper for the snappy compression library. there is also a high-level API for easy use", "license": "BSD", "web": "https://github.com/dfdeshom/nimsnappy" - } + }, + { + "name": "sound", + "url": "https://github.com/yglukhov/sound.git", + "method": "git", + "tags": [ + "sound", + "ogg" + ], + "description": "Cross-platform sound mixer library", + "license": "MIT", + "web": "https://github.com/yglukhov/sound" + } ] From 3f28fda4520ad9557bebf5dffbdbd471e09b8ca5 Mon Sep 17 00:00:00 2001 From: jangko Date: Wed, 9 Dec 2015 21:05:44 +0700 Subject: [PATCH 0182/1381] add nimLUA glue code generator to bind Nim and Lua together using Nim's powerful macro --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 6c299ef..c64e57e 100644 --- a/packages.json +++ b/packages.json @@ -3731,5 +3731,20 @@ "description": "Nim wrapper for the snappy compression library. there is also a high-level API for easy use", "license": "BSD", "web": "https://github.com/dfdeshom/nimsnappy" - } + }, + { + "name": "nimLUA", + "url": "https://github.com/jangko/nimLUA", + "method": "git", + "tags": [ + "lua", + "library", + "bind", + "glue", + "macros" + ], + "description": "glue code generator to bind Nim and Lua together using Nim's powerful macro", + "license": "MIT", + "web": "https://github.com/jangko/nimLUA" + } ] From 1e57aa0ec74b978a96ab321e6014153268987841 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 22 Dec 2015 22:55:05 +0000 Subject: [PATCH 0183/1381] Added package nimi3status --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 86e9b87..fbad044 100644 --- a/packages.json +++ b/packages.json @@ -3758,5 +3758,17 @@ "description": "Cross-platform sound mixer library", "license": "MIT", "web": "https://github.com/yglukhov/sound" + }, + { + "name": "nimi3status", + "url": "https://github.com/FedericoCeratto/nimi3status", + "method": "git", + "tags": [ + "i3", + "i3status" + ], + "description": "Lightweight i3 status bar.", + "license": "GPLv3", + "web": "https://github.com/FedericoCeratto/nimi3status" } ] From dcbfa6c1fcd9932e91849386ba0b9786d0c91a2f Mon Sep 17 00:00:00 2001 From: Rostyslav Dzinko Date: Wed, 23 Dec 2015 11:34:27 +0200 Subject: [PATCH 0184/1381] Changed dash to underscore in package name --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fbad044..486291a 100644 --- a/packages.json +++ b/packages.json @@ -3770,5 +3770,19 @@ "description": "Lightweight i3 status bar.", "license": "GPLv3", "web": "https://github.com/FedericoCeratto/nimi3status" + }, + { + "name": "native_dialogs", + "url": "https://github.com/SSPkrolik/nim-native-dialogs.git", + "method": "git", + "tags": [ + "ui", + "gui", + "cross-platform", + "library" + ], + "description": "Implements framework-agnostic native operating system dialogs calls", + "license": "MIT", + "web": "https://github.com/SSPkrolik/nim-native-dialogs" } ] From 1277680b08c155ce74c1ea863e27288c43ab8ef2 Mon Sep 17 00:00:00 2001 From: didier deshommes Date: Wed, 23 Dec 2015 20:17:20 -0600 Subject: [PATCH 0185/1381] add nimlz4 --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 486291a..985eae2 100644 --- a/packages.json +++ b/packages.json @@ -3784,5 +3784,19 @@ "description": "Implements framework-agnostic native operating system dialogs calls", "license": "MIT", "web": "https://github.com/SSPkrolik/nim-native-dialogs" - } + }, + { + "name": "nimlz4", + "url": "https://github.com/dfdeshom/nimlz4.git", + "method": "git", + "tags": [ + "wrapper", + "compression", + "lzo", + "lz4" + ], + "description": "Nim wrapper for the LZ4 library. There is also a high-level API for easy use", + "license": "BSD", + "web": "https://github.com/dfdeshom/nimlz4" + } ] From b25f7a7d4014cd974883fc3230830bf9d6e1d859 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 24 Dec 2015 23:02:54 +0200 Subject: [PATCH 0186/1381] Added variant pkg --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 486291a..06683f8 100644 --- a/packages.json +++ b/packages.json @@ -3784,5 +3784,16 @@ "description": "Implements framework-agnostic native operating system dialogs calls", "license": "MIT", "web": "https://github.com/SSPkrolik/nim-native-dialogs" + }, + { + "name": "variant", + "url": "https://github.com/yglukhov/variant.git", + "method": "git", + "tags": [ + "variant" + ], + "description": "Variant type and type matching", + "license": "MIT", + "web": "https://github.com/yglukhov/variant" } ] From bf72eb92964463a6f05c1f58782f61a0b4e9b6c1 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 25 Dec 2015 21:13:04 +0000 Subject: [PATCH 0187/1381] Rename Nimrod to Nim --- packages.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/packages.json b/packages.json index 06683f8..aa490ba 100644 --- a/packages.json +++ b/packages.json @@ -39,7 +39,7 @@ "framework", "dsl" ], - "description": "A sinatra-like web framework for Nimrod.", + "description": "A sinatra-like web framework for Nim.", "license": "MIT", "web": "https://github.com/dom96/jester" }, @@ -52,7 +52,7 @@ "html", "template" ], - "description": "A simple string templating library for Nimrod.", + "description": "A simple string templating library for Nim.", "license": "BSD", "web": "https://github.com/onionhammer/nim-templates" }, @@ -64,7 +64,7 @@ "hash", "murmur" ], - "description": "MurmurHash in pure Nimrod.", + "description": "MurmurHash in pure Nim.", "license": "MIT", "web": "https://github.com/olahol/nimrod-murmur" }, @@ -81,7 +81,7 @@ "opengl", "glsl" ], - "description": "Wrapper of the libtcod library for the Nimrod language.", + "description": "Wrapper of the libtcod library for the Nim language.", "license": "zlib", "web": "https://github.com/Vladar4/libtcod-nim" }, @@ -94,7 +94,7 @@ "engine", "sdl" ], - "description": "Simple 2D game engine for Nimrod language.", + "description": "Simple 2D game engine for Nim language.", "license": "MIT", "web": "https://github.com/Vladar4/nimgame" }, @@ -136,7 +136,7 @@ "localisation", "globalization" ], - "description": "A simple library for localizing Nimrod applications.", + "description": "A simple library for localizing Nim applications.", "license": "MIT", "web": "https://github.com/Amrykid/nim-locale" }, @@ -164,7 +164,7 @@ "automation", "sortof" ], - "description": "make-like for Nimrod. Describe your builds as tasks!", + "description": "make-like for Nim. Describe your builds as tasks!", "license": "MIT", "web": "https://github.com/fowlmouth/nake" }, @@ -179,7 +179,7 @@ "windowing", "game" ], - "description": "Nimrod bindings for GLFW library.", + "description": "Nim bindings for GLFW library.", "license": "MIT", "web": "https://github.com/rafaelvasco/nimrod-glfw" }, @@ -303,7 +303,7 @@ "gtk", "nimrod" ], - "description": "A Nimrod IDE.", + "description": "A Nim IDE.", "license": "GPLv2", "web": "https://github.com/nim-lang/Aporia" }, @@ -319,7 +319,7 @@ "C", "nimrod" ], - "description": "c2nim is a tool to translate Ansi C code to Nimrod.", + "description": "c2nim is a tool to translate Ansi C code to Nim.", "license": "MIT", "web": "https://github.com/nim-lang/c2nim" }, @@ -334,7 +334,7 @@ "Pascal", "nimrod" ], - "description": "pas2nim is a tool to translate Pascal code to Nimrod.", + "description": "pas2nim is a tool to translate Pascal code to Nim.", "license": "MIT", "web": "https://github.com/nim-lang/pas2nim" }, @@ -711,7 +711,7 @@ "MurmurHash", "MurmurHash3" ], - "description": "Efficient Bloom filter implementation in Nimrod using MurmurHash3.", + "description": "Efficient Bloom filter implementation in Nim using MurmurHash3.", "license": "MIT", "web": "https://www.github.com/boydgreenfield/nimrod-bloom/" }, @@ -753,7 +753,7 @@ "libpng", "image" ], - "description": "Nimrod wrapper for the libpng library", + "description": "Nim wrapper for the libpng library", "license": "libpng", "web": "https://github.com/barcharcraz/nimlibpng" }, @@ -958,7 +958,7 @@ "hash", "hashing" ], - "description": "A simple MurmurHash3 wrapper for Nimrod", + "description": "A simple MurmurHash3 wrapper for Nim", "license": "MIT", "web": "https://github.com/boydgreenfield/nimrod-murmur/" }, @@ -970,7 +970,7 @@ "hex", "encoding" ], - "description": "A simple hex package for Nimrod", + "description": "A simple hex package for Nim", "license": "MIT", "web": "https://github.com/esbullington/nimrod-hex" }, @@ -996,7 +996,7 @@ "dsl", "html" ], - "description": "Compiles jade templates to Nimrod procedures.", + "description": "Compiles jade templates to Nim procedures.", "license": "MIT", "web": "https://github.com/idlewan/jade-nim" }, @@ -1010,7 +1010,7 @@ "automation", "documentation" ], - "description": "Generates a GitHub documentation website for Nimrod projects.", + "description": "Generates a GitHub documentation website for Nim projects.", "license": "MIT", "web": "http://gradha.github.io/gh_nimrod_doc_pages/" }, From 704b972bcd7a726bb1557a5149e7285a86f61ecb Mon Sep 17 00:00:00 2001 From: achesak Date: Sun, 27 Dec 2015 20:45:18 -0600 Subject: [PATCH 0188/1381] Added pythonmath. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index aa490ba..5c180fa 100644 --- a/packages.json +++ b/packages.json @@ -3795,5 +3795,18 @@ "description": "Variant type and type matching", "license": "MIT", "web": "https://github.com/yglukhov/variant" + }, + { + "name": "pythonmath", + "url": "git://github.com/achesak/nim-pythonmath", + "method": "git", + "tags": [ + "library", + "python", + "math" + ], + "description": "Module to provide an interface as similar as possible to Python's math libary", + "license": "MIT", + "web": "https://github.com/achesak/nim-pythonmath" } ] From a8a690fda73de22ce62fe2d790323d872dc02edc Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 28 Dec 2015 14:22:58 +0000 Subject: [PATCH 0189/1381] Fixes merge commit. --- packages.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages.json b/packages.json index f2d7579..eed015d 100644 --- a/packages.json +++ b/packages.json @@ -3786,7 +3786,6 @@ "web": "https://github.com/SSPkrolik/nim-native-dialogs" }, { -<<<<<<< HEAD "name": "variant", "url": "https://github.com/yglukhov/variant.git", "method": "git", From a862dbbb03266f43e6053d8bf145dbbdc4a55a43 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 29 Dec 2015 22:15:53 +0000 Subject: [PATCH 0190/1381] Added alias for nim-vorbis, nim-portaudio and nim-ogg. --- packages.json | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/packages.json b/packages.json index eed015d..6a8cf04 100644 --- a/packages.json +++ b/packages.json @@ -633,6 +633,23 @@ "description": "Binding to libogg", "license": "CC0" }, + { + "name": "ogg", + "url": "https://bitbucket.org/BitPuffin/nim-ogg", + "method": "hg", + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "video", + "metadata", + "media" + ], + "description": "Binding to libogg", + "license": "CC0" + }, { "name": "nim-vorbis", "url": "https://bitbucket.org/BitPuffin/nim-vorbis", @@ -649,6 +666,22 @@ "description": "Binding to libvorbis", "license": "CC0" }, + { + "name": "vorbis", + "url": "https://bitbucket.org/BitPuffin/nim-vorbis", + "method": "hg", + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "metadata", + "media" + ], + "description": "Binding to libvorbis", + "license": "CC0" + }, { "name": "nim-portaudio", "url": "https://bitbucket.org/BitPuffin/nim-portaudio", @@ -665,6 +698,22 @@ "description": "Binding to portaudio", "license": "CC0" }, + { + "name": "portaudio", + "url": "https://bitbucket.org/BitPuffin/nim-portaudio", + "method": "hg", + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "media", + "io" + ], + "description": "Binding to portaudio", + "license": "CC0" + }, { "name": "commandeer", "url": "git://github.com/fenekku/commandeer", From 021b1d17cbf87a487a8e4169947f468599b87da4 Mon Sep 17 00:00:00 2001 From: marcoapintoo Date: Wed, 30 Dec 2015 11:35:07 -0400 Subject: [PATCH 0191/1381] Update packages.json Adding a new Nim package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 6a8cf04..bf1d13c 100644 --- a/packages.json +++ b/packages.json @@ -3871,5 +3871,17 @@ "description": "Nim wrapper for the LZ4 library. There is also a high-level API for easy use", "license": "BSD", "web": "https://github.com/dfdeshom/nimlz4" + }, + { + "name": "pythonize", + "url": "https://github.com/marcoapintoo/nim-pythonize.git", + "method": "git", + "tags": [ + "python", + "wrapper", + ], + "description": "A higher-level wrapper for the Python Programing Language", + "license": "MIT", + "web": "https://github.com/marcoapintoo/nim-pythonize" } ] From 8eaa7b220f282311543e9b49df470fea94646fde Mon Sep 17 00:00:00 2001 From: marcoapintoo Date: Wed, 30 Dec 2015 11:56:28 -0400 Subject: [PATCH 0192/1381] Fixing the trailing comma... --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bf1d13c..a373159 100644 --- a/packages.json +++ b/packages.json @@ -3878,7 +3878,7 @@ "method": "git", "tags": [ "python", - "wrapper", + "wrapper" ], "description": "A higher-level wrapper for the Python Programing Language", "license": "MIT", From 48a6b9fab90f849396f65353c9e46b9b80e3e9bc Mon Sep 17 00:00:00 2001 From: achesak Date: Wed, 30 Dec 2015 17:02:41 -0600 Subject: [PATCH 0193/1381] Added fnmatch. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 6a8cf04..2c51da2 100644 --- a/packages.json +++ b/packages.json @@ -3871,5 +3871,19 @@ "description": "Nim wrapper for the LZ4 library. There is also a high-level API for easy use", "license": "BSD", "web": "https://github.com/dfdeshom/nimlz4" + }, + { + "name": "fnmatch", + "url": "git://github.com/achesak/nim-fnmatch", + "method": "git", + "tags": [ + "library", + "unix", + "files", + "matching" + ], + "description": "Nim module for filename matching with UNIX shell patterns", + "license": "MIT", + "web": "https://github.com/achesak/nim-fnmatch" } ] From c63e2db6816a7ac366bd9e4ae38cec66f94d5c5c Mon Sep 17 00:00:00 2001 From: achesak Date: Wed, 30 Dec 2015 17:05:29 -0600 Subject: [PATCH 0194/1381] Added shorturl. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 2c51da2..8f6940e 100644 --- a/packages.json +++ b/packages.json @@ -3885,5 +3885,18 @@ "description": "Nim module for filename matching with UNIX shell patterns", "license": "MIT", "web": "https://github.com/achesak/nim-fnmatch" + }, + { + "name": "shorturl", + "url": "git://github.com/achesak/nim-shorturl", + "method": "git", + "tags": [ + "library", + "url", + "uid" + ], + "description": "Nim module for generating URL identifiers for Tiny URL and bit.ly-like URLs", + "license: "MIT", + "web": "https://github.com/achesak/nim-shorturl" } ] From a6a2c7b55a9af6c074df684e0ed41020faa2e17a Mon Sep 17 00:00:00 2001 From: achesak Date: Wed, 30 Dec 2015 17:06:49 -0600 Subject: [PATCH 0195/1381] Fixed quote issue --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 8f6940e..601cda8 100644 --- a/packages.json +++ b/packages.json @@ -3896,7 +3896,7 @@ "uid" ], "description": "Nim module for generating URL identifiers for Tiny URL and bit.ly-like URLs", - "license: "MIT", + "license": "MIT", "web": "https://github.com/achesak/nim-shorturl" } ] From 24cdc93c1f4edb2d29246d613e1838238c646f61 Mon Sep 17 00:00:00 2001 From: Charles Blake Date: Thu, 31 Dec 2015 13:33:07 -0500 Subject: [PATCH 0196/1381] Add entry for cligen. --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index a373159..eaeb0c2 100644 --- a/packages.json +++ b/packages.json @@ -3883,5 +3883,21 @@ "description": "A higher-level wrapper for the Python Programing Language", "license": "MIT", "web": "https://github.com/marcoapintoo/nim-pythonize" + }, + { + "name": "cligen", + "url": "https://github.com/c-blake/cligen.git", + "method": "git", + "tags": [ + "library", + "commandline", + "arguments", + "switches", + "parsing", + "options" + ], + "description": "Infer & generate command-line interace/option/argument parsers", + "license": "MIT", + "web": "https://github.com/c-blake/cligen" } ] From 9cbe947b9a4df49d3324c0483e63b46c3d4aaba4 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Thu, 7 Jan 2016 17:46:26 +0100 Subject: [PATCH 0197/1381] Added TeaFiles and Emmy --- packages.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/packages.json b/packages.json index d0de9a6..5f73408 100644 --- a/packages.json +++ b/packages.json @@ -3926,5 +3926,33 @@ "description": "Nim module for generating URL identifiers for Tiny URL and bit.ly-like URLs", "license": "MIT", "web": "https://github.com/achesak/nim-shorturl" + }, + { + "name": "teafiles", + "url": "git@github.com:unicredit/nim-teafiles.git", + "method": "git", + "tags": [ + "teafiles", + "mmap", + "timeseries" + ], + "description": "TeaFiles provide fast read/write access to time series data", + "license": "Apache2", + "web": "https://github.com/unicredit/nim-teafiles" + }, + { + "name": "emmy", + "url": "git@github.com:unicredit/emmy.git", + "method": "git", + "tags": [ + "algebra", + "polynomials", + "primes", + "ring", + "quotients" + ], + "description": "Algebraic structures and related operations for Nim", + "license": "Apache2", + "web": "https://github.com/unicredit/emmy" } ] From 7d07d35f4e346b74a69435ba97c4c688bdf9a6cb Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Fri, 8 Jan 2016 12:12:49 +0200 Subject: [PATCH 0198/1381] Renamed nim-libclang to libclang. --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 5f73408..fb563ea 100644 --- a/packages.json +++ b/packages.json @@ -1581,7 +1581,7 @@ "web": "https://github.com/flaviut/easy-bcrypt/blob/master/easy-bcrypt.nimble" }, { - "name": "nim-libclang", + "name": "libclang", "url": "https://github.com/cowboy-coders/nim-libclang.git", "method": "git", "tags": [ @@ -1593,6 +1593,19 @@ "license": "MIT", "web": "https://github.com/cowboy-coders/nim-libclang" }, + { + "name": "nim-libclang", + "url": "https://github.com/cowboy-coders/nim-libclang.git", + "method": "git", + "tags": [ + "wrapper", + "bindings", + "clang" + ], + "description": "Please use libclang instead.", + "license": "MIT", + "web": "https://github.com/cowboy-coders/nim-libclang" + }, { "name": "nimqml", "url": "git://github.com/filcuc/nimqml", From 59fb639e0132576df4b530f730a0a93ae9795237 Mon Sep 17 00:00:00 2001 From: matkuki Date: Sun, 10 Jan 2016 23:29:18 +0100 Subject: [PATCH 0199/1381] added impulse_engine package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fb563ea..fb16f6b 100644 --- a/packages.json +++ b/packages.json @@ -3967,5 +3967,18 @@ "description": "Algebraic structures and related operations for Nim", "license": "Apache2", "web": "https://github.com/unicredit/emmy" + }, + { + "name": "impulse_engine", + "url": "git://github.com/matkuki/Nim-Impulse-Engine", + "method": "git", + "tags": [ + "physics", + "engine", + "2D" + ], + "description": "Nim port of a simple 2D physics engine", + "license": "zlib", + "web": "https://github.com/matkuki/Nim-Impulse-Engine" } ] From 0a44899edb3b523f1addb9e73ee028cf0c104859 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 18 Jan 2016 00:57:34 +0000 Subject: [PATCH 0200/1381] Added notifications library --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index fb16f6b..8212ff7 100644 --- a/packages.json +++ b/packages.json @@ -3980,5 +3980,21 @@ "description": "Nim port of a simple 2D physics engine", "license": "zlib", "web": "https://github.com/matkuki/Nim-Impulse-Engine" + }, + { + "name": "notifications", + "url": "git://github.com/dom96/notifications", + "method": "git", + "tags": [ + "notifications", + "alerts", + "gui", + "toasts", + "macosx", + "cocoa" + ], + "description": "Library for displaying notifications on the desktop", + "license": "MIT", + "web": "https://github.com/dom96/notifications" } ] From 95943b7fcfe610f39d4cbf1aa86910faf07a7bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Tue, 19 Jan 2016 17:39:35 +0100 Subject: [PATCH 0201/1381] added reactor.nim --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 8212ff7..0c68706 100644 --- a/packages.json +++ b/packages.json @@ -3996,5 +3996,19 @@ "description": "Library for displaying notifications on the desktop", "license": "MIT", "web": "https://github.com/dom96/notifications" + }, + { + "name": "reactor", + "url": "https://github.com/zielmicha/reactor.nim", + "method": "git", + "tags": [ + "async", + "libuv", + "http", + "tcp" + ], + "description": "Asynchronous networking engine for Nim", + "license": "MIT", + "web": "https://networkos.net/nim/reactor.nim" } ] From c1dc36fc9ae472a2973245b8a9beb00122450650 Mon Sep 17 00:00:00 2001 From: Nick Greenfield Date: Thu, 21 Jan 2016 15:24:25 -0800 Subject: [PATCH 0202/1381] Update bitarray package location --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 0c68706..df9249e 100644 --- a/packages.json +++ b/packages.json @@ -1164,7 +1164,7 @@ }, { "name": "bitarray", - "url": "git://github.com/refgenomics/nim-bitarray/", + "url": "git://github.com/onecodex/nim-bitarray/", "method": "git", "tags": [ "Bit arrays", @@ -1174,7 +1174,7 @@ ], "description": "mmap-backed bitarray implementation in Nim.", "license": "MIT", - "web": "https://www.github.com/refgenomics/nim-bitarray/" + "web": "https://www.github.com/onecodex/nim-bitarray/" }, { "name": "appdirs", From fcfe3631c91f7d8b4c4a5fe30a501a390cf2b67b Mon Sep 17 00:00:00 2001 From: achesak Date: Fri, 22 Jan 2016 15:01:13 -0600 Subject: [PATCH 0203/1381] Added biscuits. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index df9249e..de6a027 100644 --- a/packages.json +++ b/packages.json @@ -4010,5 +4010,17 @@ "description": "Asynchronous networking engine for Nim", "license": "MIT", "web": "https://networkos.net/nim/reactor.nim" + }, + { + "name": "biscuits", + "url": "git://github.com/achesak/nim-biscuits", + "method": "git", + "tags": [ + "cookie", + "persistence" + ], + "description": "better cookie handling", + "license": "MIT", + "web": "https://github.com/achesak/nim-biscuits" } ] From 2100821936827963dace300718358d5070097119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sat, 23 Jan 2016 22:50:58 +0100 Subject: [PATCH 0204/1381] add collections and Cap'n Proto implementation - capnp depends on collections --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index df9249e..15a6abd 100644 --- a/packages.json +++ b/packages.json @@ -4010,5 +4010,31 @@ "description": "Asynchronous networking engine for Nim", "license": "MIT", "web": "https://networkos.net/nim/reactor.nim" + }, + { + "name": "collections", + "url": "https://github.com/zielmicha/collections.nim", + "method": "git", + "tags": [ + "iterator", + "functional" + ], + "description": "Various collections and utilities", + "license": "MIT", + "web": "https://github.com/zielmicha/collections.nim" + }, + { + "name": "capnp", + "url": "https://github.com/zielmicha/capnp.nim", + "method": "git", + "tags": [ + "capnp", + "serialization", + "protocol", + "rpc" + ], + "description": "Cap'n Proto implementation for Nim", + "license": "MIT", + "web": "https://github.com/zielmicha/capnp.nim" } ] From 4f6eebb549952d625f39d1e6e51841693d156077 Mon Sep 17 00:00:00 2001 From: lompik Date: Tue, 26 Jan 2016 20:40:15 -0600 Subject: [PATCH 0205/1381] Add pari/gp C libary wrapper --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 0c00c24..672afe8 100644 --- a/packages.json +++ b/packages.json @@ -4049,4 +4049,16 @@ "license": "MIT", "web": "https://github.com/achesak/nim-biscuits" } + { + "name": "pari", + "url": "git://github.com/lompik/pari.nim", + "method": "git", + "tags": [ + "number theory", + "computer algebra system" + ], + "description": "Pari/GP C library wrapper", + "license": "MIT", + "web": "https://github.com/lompik/pari.nim" + } ] From 69be15c218c7b6f35b27ceafe1de299db26a9e89 Mon Sep 17 00:00:00 2001 From: James Browder Date: Wed, 27 Jan 2016 12:27:25 -0600 Subject: [PATCH 0206/1381] missing comma in json --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 672afe8..f08303d 100644 --- a/packages.json +++ b/packages.json @@ -4048,7 +4048,7 @@ "description": "better cookie handling", "license": "MIT", "web": "https://github.com/achesak/nim-biscuits" - } + }, { "name": "pari", "url": "git://github.com/lompik/pari.nim", From 58f65067b3e449d01d3194b34c0e1c0f66e40358 Mon Sep 17 00:00:00 2001 From: gmpreussner Date: Sat, 30 Jan 2016 13:20:41 -0500 Subject: [PATCH 0207/1381] Renamed packages to follow upcoming nimble package naming conventions. --- packages.json | 54 +++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/packages.json b/packages.json index f08303d..6c03f8b 100644 --- a/packages.json +++ b/packages.json @@ -1771,8 +1771,8 @@ "web": "https://github.com/def-/nim-bpg" }, { - "name": "io-spacenav", - "url": "git://github.com/nimious/io-spacenav.git", + "name": "spacenav", + "url": "git://github.com/nimious/spacenav.git", "method": "git", "tags": [ "binding", @@ -1786,7 +1786,7 @@ ], "description": "Bindings for libspnav, the free 3Dconnexion device driver", "license": "MIT", - "web": "https://github.com/nimious/io-spacenav" + "web": "https://github.com/nimious/spacenav" }, { "name": "optionals", @@ -1916,8 +1916,8 @@ "web": "https://github.com/apense/nimrat" }, { - "name": "io-isense", - "url": "git://github.com/nimious/io-isense.git", + "name": "isense", + "url": "git://github.com/nimious/isense.git", "method": "git", "tags": [ "binding", @@ -1932,11 +1932,11 @@ ], "description": "Bindings for the InterSense SDK", "license": "MIT", - "web": "https://github.com/nimious/io-isense" + "web": "https://github.com/nimious/isense" }, { - "name": "io-usb", - "url": "git://github.com/nimious/io-usb.git", + "name": "libusb", + "url": "git://github.com/nimious/libusb.git", "method": "git", "tags": [ "binding", @@ -1945,7 +1945,7 @@ ], "description": "Bindings for libusb, the cross-platform user library to access USB devices.", "license": "MIT", - "web": "https://github.com/nimious/io-usb" + "web": "https://github.com/nimious/libusb" }, { "name": "nimcfitsio", @@ -2014,8 +2014,8 @@ "web": "https://github.com/nim-lang/osinfo" }, { - "name": "io-myo", - "url": "git://github.com/nimious/io-myo.git", + "name": "myo", + "url": "git://github.com/nimious/myo.git", "method": "git", "tags": [ "binding", @@ -2026,11 +2026,11 @@ ], "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", "license": "MIT", - "web": "https://github.com/nimious/io-myo" + "web": "https://github.com/nimious/myo" }, { - "name": "io-oculus", - "url": "git://github.com/nimious/io-oculus.git", + "name": "oculus", + "url": "git://github.com/nimious/oculus.git", "method": "git", "tags": [ "binding", @@ -2045,7 +2045,7 @@ ], "description": "Bindings for the Oculus VR SDK.", "license": "MIT", - "web": "https://github.com/nimious/io-oculus" + "web": "https://github.com/nimious/oculus" }, { "name": "closure_compiler", @@ -2062,8 +2062,8 @@ "web": "https://github.com/yglukhov/closure_compiler" }, { - "name": "io-serialport", - "url": "git://github.com/nimious/io-serialport.git", + "name": "serialport", + "url": "git://github.com/nimious/serialport.git", "method": "git", "tags": [ "binding", @@ -2073,7 +2073,7 @@ ], "description": "Bindings for libserialport, the cross-platform serial communication library.", "license": "MIT", - "web": "https://github.com/nimious/io-serialport" + "web": "https://github.com/nimious/serialport" }, { "name": "beanstalkd", @@ -2285,8 +2285,8 @@ "web": "https://github.com/saratchandra92/nim-geocoding" }, { - "name": "io-gles", - "url": "git://github.com/nimious/io-gles.git", + "name": "gles", + "url": "git://github.com/nimious/gles.git", "method": "git", "tags": [ "binding", @@ -2296,11 +2296,11 @@ ], "description": "Bindings for OpenGL ES, the embedded 3D graphics library.", "license": "MIT", - "web": "https://github.com/nimious/io-gles" + "web": "https://github.com/nimious/gles" }, { - "name": "io-egl", - "url": "git://github.com/nimious/io-egl.git", + "name": "egl", + "url": "git://github.com/nimious/egl.git", "method": "git", "tags": [ "binding", @@ -2312,11 +2312,11 @@ ], "description": "Bindings for EGL, the native platform interface for rendering APIs.", "license": "MIT", - "web": "https://github.com/nimious/io-egl" + "web": "https://github.com/nimious/egl" }, { - "name": "io-sixense", - "url": "git://github.com/nimious/io-sixense.git", + "name": "sixense", + "url": "git://github.com/nimious/sixense.git", "method": "git", "tags": [ "binding", @@ -2327,7 +2327,7 @@ ], "description": "Bindings for the Sixense Core API.", "license": "MIT", - "web": "https://github.com/nimious/io-sixense" + "web": "https://github.com/nimious/sixense" }, { "name": "tnetstring", From 73d3d8ff9f4e32a64c76779b75f2c6a54ebbeff5 Mon Sep 17 00:00:00 2001 From: gmpreussner Date: Sat, 30 Jan 2016 21:34:28 -0500 Subject: [PATCH 0208/1381] Added renamed packages as separate entries, so the old ones continue to work. --- packages.json | 215 +++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 179 insertions(+), 36 deletions(-) diff --git a/packages.json b/packages.json index 6c03f8b..81e6a96 100644 --- a/packages.json +++ b/packages.json @@ -1771,8 +1771,8 @@ "web": "https://github.com/def-/nim-bpg" }, { - "name": "spacenav", - "url": "git://github.com/nimious/spacenav.git", + "name": "io-spacenav", + "url": "git://github.com/nimious/io-spacenav.git", "method": "git", "tags": [ "binding", @@ -1784,9 +1784,9 @@ "spacepilot", "spacenavigator" ], - "description": "Bindings for libspnav, the free 3Dconnexion device driver", + "description": "Obsolete - please use spacenav instead!", "license": "MIT", - "web": "https://github.com/nimious/spacenav" + "web": "https://github.com/nimious/io-spacenav" }, { "name": "optionals", @@ -1916,8 +1916,8 @@ "web": "https://github.com/apense/nimrat" }, { - "name": "isense", - "url": "git://github.com/nimious/isense.git", + "name": "io-isense", + "url": "git://github.com/nimious/io-isense.git", "method": "git", "tags": [ "binding", @@ -1930,22 +1930,22 @@ "tracking", "sensor" ], - "description": "Bindings for the InterSense SDK", + "description": "Obsolete - please use isense instead!", "license": "MIT", - "web": "https://github.com/nimious/isense" + "web": "https://github.com/nimious/io-isense" }, { - "name": "libusb", - "url": "git://github.com/nimious/libusb.git", + "name": "io-usb", + "url": "git://github.com/nimious/io-usb.git", "method": "git", "tags": [ "binding", "usb", "libusb" ], - "description": "Bindings for libusb, the cross-platform user library to access USB devices.", + "description": "Obsolete - please use libusb instead!", "license": "MIT", - "web": "https://github.com/nimious/libusb" + "web": "https://github.com/nimious/io-usb" }, { "name": "nimcfitsio", @@ -2014,8 +2014,8 @@ "web": "https://github.com/nim-lang/osinfo" }, { - "name": "myo", - "url": "git://github.com/nimious/myo.git", + "name": "io-myo", + "url": "git://github.com/nimious/io-myo.git", "method": "git", "tags": [ "binding", @@ -2024,13 +2024,13 @@ "armband", "gesture" ], - "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", + "description": "Obsolete - please use myo instead!", "license": "MIT", - "web": "https://github.com/nimious/myo" + "web": "https://github.com/nimious/io-myo" }, { - "name": "oculus", - "url": "git://github.com/nimious/oculus.git", + "name": "io-oculus", + "url": "git://github.com/nimious/io-oculus.git", "method": "git", "tags": [ "binding", @@ -2043,9 +2043,9 @@ "dk2", "gearvr" ], - "description": "Bindings for the Oculus VR SDK.", + "description": "Obsolete - please use oculus instead!", "license": "MIT", - "web": "https://github.com/nimious/oculus" + "web": "https://github.com/nimious/io-oculus" }, { "name": "closure_compiler", @@ -2062,8 +2062,8 @@ "web": "https://github.com/yglukhov/closure_compiler" }, { - "name": "serialport", - "url": "git://github.com/nimious/serialport.git", + "name": "io-serialport", + "url": "git://github.com/nimious/io-serialport.git", "method": "git", "tags": [ "binding", @@ -2071,9 +2071,9 @@ "serial", "communication" ], - "description": "Bindings for libserialport, the cross-platform serial communication library.", + "description": "Obsolete - please use serialport instead!", "license": "MIT", - "web": "https://github.com/nimious/serialport" + "web": "https://github.com/nimious/io-serialport" }, { "name": "beanstalkd", @@ -2285,8 +2285,8 @@ "web": "https://github.com/saratchandra92/nim-geocoding" }, { - "name": "gles", - "url": "git://github.com/nimious/gles.git", + "name": "io-gles", + "url": "git://github.com/nimious/io-gles.git", "method": "git", "tags": [ "binding", @@ -2294,13 +2294,13 @@ "gles", "opengl es" ], - "description": "Bindings for OpenGL ES, the embedded 3D graphics library.", + "description": "Obsolete - please use gles instead!", "license": "MIT", - "web": "https://github.com/nimious/gles" + "web": "https://github.com/nimious/io-gles" }, { - "name": "egl", - "url": "git://github.com/nimious/egl.git", + "name": "io-egl", + "url": "git://github.com/nimious/io-egl.git", "method": "git", "tags": [ "binding", @@ -2310,13 +2310,13 @@ "opengl es", "openvg" ], - "description": "Bindings for EGL, the native platform interface for rendering APIs.", + "description": "Obsolete - please use egl instead!", "license": "MIT", - "web": "https://github.com/nimious/egl" + "web": "https://github.com/nimious/io-egl" }, { - "name": "sixense", - "url": "git://github.com/nimious/sixense.git", + "name": "io-sixense", + "url": "git://github.com/nimious/io-sixense.git", "method": "git", "tags": [ "binding", @@ -2325,9 +2325,9 @@ "stem system", "vr" ], - "description": "Bindings for the Sixense Core API.", + "description": "Obsolete - please use sixense instead!", "license": "MIT", - "web": "https://github.com/nimious/sixense" + "web": "https://github.com/nimious/io-sixense" }, { "name": "tnetstring", @@ -4060,5 +4060,148 @@ "description": "Pari/GP C library wrapper", "license": "MIT", "web": "https://github.com/lompik/pari.nim" + }, + { + "name": "spacenav", + "url": "git://github.com/nimious/spacenav.git", + "method": "git", + "tags": [ + "binding", + "3dx", + "3dconnexion", + "libspnav", + "spacenav", + "spacemouse", + "spacepilot", + "spacenavigator" + ], + "description": "Bindings for libspnav, the free 3Dconnexion device driver", + "license": "MIT", + "web": "https://github.com/nimious/spacenav" + }, + { + "name": "isense", + "url": "git://github.com/nimious/isense.git", + "method": "git", + "tags": [ + "binding", + "isense", + "intersense", + "inertiacube", + "intertrax", + "microtrax", + "thales", + "tracking", + "sensor" + ], + "description": "Bindings for the InterSense SDK", + "license": "MIT", + "web": "https://github.com/nimious/isense" + }, + { + "name": "libusb", + "url": "git://github.com/nimious/libusb.git", + "method": "git", + "tags": [ + "binding", + "usb", + "libusb" + ], + "description": "Bindings for libusb, the cross-platform user library to access USB devices.", + "license": "MIT", + "web": "https://github.com/nimious/libusb" + }, + { + "name": "myo", + "url": "git://github.com/nimious/myo.git", + "method": "git", + "tags": [ + "binding", + "myo", + "thalmic", + "armband", + "gesture" + ], + "description": "Bindings for the Thalmic Labs Myo gesture control armband SDK.", + "license": "MIT", + "web": "https://github.com/nimious/myo" + }, + { + "name": "oculus", + "url": "git://github.com/nimious/oculus.git", + "method": "git", + "tags": [ + "binding", + "oculus", + "rift", + "vr", + "libovr", + "ovr", + "dk1", + "dk2", + "gearvr" + ], + "description": "Bindings for the Oculus VR SDK.", + "license": "MIT", + "web": "https://github.com/nimious/oculus" + }, + { + "name": "serialport", + "url": "git://github.com/nimious/serialport.git", + "method": "git", + "tags": [ + "binding", + "libserialport", + "serial", + "communication" + ], + "description": "Bindings for libserialport, the cross-platform serial communication library.", + "license": "MIT", + "web": "https://github.com/nimious/serialport" + }, + { + "name": "gles", + "url": "git://github.com/nimious/gles.git", + "method": "git", + "tags": [ + "binding", + "khronos", + "gles", + "opengl es" + ], + "description": "Bindings for OpenGL ES, the embedded 3D graphics library.", + "license": "MIT", + "web": "https://github.com/nimious/gles" + }, + { + "name": "egl", + "url": "git://github.com/nimious/egl.git", + "method": "git", + "tags": [ + "binding", + "khronos", + "egl", + "opengl", + "opengl es", + "openvg" + ], + "description": "Bindings for EGL, the native platform interface for rendering APIs.", + "license": "MIT", + "web": "https://github.com/nimious/egl" + }, + { + "name": "sixense", + "url": "git://github.com/nimious/sixense.git", + "method": "git", + "tags": [ + "binding", + "sixense", + "razer hydra", + "stem system", + "vr" + ], + "description": "Bindings for the Sixense Core API.", + "license": "MIT", + "web": "https://github.com/nimious/sixense" } ] From c270e73da035b5343a738900dd6a05accd433457 Mon Sep 17 00:00:00 2001 From: Star Brilliant Date: Sun, 31 Jan 2016 23:37:16 +0800 Subject: [PATCH 0209/1381] Add KissFFT package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f08303d..77715ef 100644 --- a/packages.json +++ b/packages.json @@ -4060,5 +4060,18 @@ "description": "Pari/GP C library wrapper", "license": "MIT", "web": "https://github.com/lompik/pari.nim" + }, + { + "name": "kissfft", + "url": "git://github.com/m13253/nim-kissfft", + "method": "git", + "tags": [ + "fft", + "dsp", + "signal" + ], + "description": "Nim binding for KissFFT Fast Fourier Transform library", + "license": "BSD", + "web": "https://github.com/m13253/nim-kissfft" } ] From 789bdb8a788ad6f8e6496d350febb151eeb4a883 Mon Sep 17 00:00:00 2001 From: Steven R Wiley Date: Mon, 1 Feb 2016 12:37:35 -0800 Subject: [PATCH 0210/1381] Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 81e6a96..10c4203 100644 --- a/packages.json +++ b/packages.json @@ -4203,5 +4203,17 @@ "description": "Bindings for the Sixense Core API.", "license": "MIT", "web": "https://github.com/nimious/sixense" + }, + { + "name": "listsv", + "url": "git://github.com/srwiley/listsv.git", + "method": "git", + "tags": [ + "singly linked list", + "doubly linked list" + ], + "description": "Basic operations on singly and doubly linked lists.", + "license": "MIT", + "web": "https://github.com/srwiley/listsv" } ] From c81b71cc1f827381a996c4ffc284236dfe040d27 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Wed, 10 Feb 2016 01:49:18 +0100 Subject: [PATCH 0211/1381] Fix bad merge --- packages.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages.json b/packages.json index d482e9c..840289d 100644 --- a/packages.json +++ b/packages.json @@ -4062,7 +4062,6 @@ "web": "https://github.com/lompik/pari.nim" }, { -<<<<<<< HEAD "name": "spacenav", "url": "git://github.com/nimious/spacenav.git", "method": "git", From 7b6f5cb08d82d1734ec73a5b7521cee44bb5e137 Mon Sep 17 00:00:00 2001 From: Ivan Koster Date: Sat, 13 Feb 2016 15:49:37 +0100 Subject: [PATCH 0212/1381] Add nimbench package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 840289d..bd668b6 100644 --- a/packages.json +++ b/packages.json @@ -4228,5 +4228,18 @@ "description": "Nim binding for KissFFT Fast Fourier Transform library", "license": "BSD", "web": "https://github.com/m13253/nim-kissfft" + }, + { + "name": "nimbench", + "url": "git://github.com/ivankoster/nimbench.git", + "method": "git", + "tags": [ + "benchmark", + "micro benchmark", + "timer" + ], + "description": "Micro benchmarking tool to measure speed of code, with the goal of optimizing it.", + "license": "Apache License, Version 2.0", + "web": "https://github.com/ivankoster/nimbench" } ] From 4ff7d81f9c3ba4a9b18e183d995aa231f367bdcd Mon Sep 17 00:00:00 2001 From: Electric-Blue Date: Sun, 14 Feb 2016 23:05:29 +0300 Subject: [PATCH 0213/1381] Added NimBluez. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bd668b6..a033d72 100644 --- a/packages.json +++ b/packages.json @@ -4241,5 +4241,19 @@ "description": "Micro benchmarking tool to measure speed of code, with the goal of optimizing it.", "license": "Apache License, Version 2.0", "web": "https://github.com/ivankoster/nimbench" + }, + { + "name": "nimbluez", + "url": "git://github.com/Electric-Blue/NimBluez.git", + "method": "git", + "tags": [ + "bluetooth", + "library", + "wrapper", + "sockets" + ], + "description": "Nim modules for access to system Bluetooth resources.", + "license": "BSD", + "web": "https://github.com/Electric-Blue/NimBluez" } ] From e9824f374aad86f2b8fe47c7787481caade9ba66 Mon Sep 17 00:00:00 2001 From: Kevin Dean Date: Sun, 14 Feb 2016 20:23:28 -0600 Subject: [PATCH 0214/1381] Add nest package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bd668b6..07016ff 100644 --- a/packages.json +++ b/packages.json @@ -4241,5 +4241,19 @@ "description": "Micro benchmarking tool to measure speed of code, with the goal of optimizing it.", "license": "Apache License, Version 2.0", "web": "https://github.com/ivankoster/nimbench" + }, + { + "name": "nest", + "url": "git://github.com/kedean/nest.git", + "method": "git", + "tags": [ + "library", + "api", + "router", + "web" + ], + "description": "RESTful URI router", + "license": "MIT", + "web": "https://github.com/kedean/nest" } ] From 5929588dd6d352416bfb47dcd920cda1bb12afad Mon Sep 17 00:00:00 2001 From: matkuki Date: Mon, 15 Feb 2016 11:39:39 +0100 Subject: [PATCH 0215/1381] chipmunk update --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 07016ff..6113be8 100644 --- a/packages.json +++ b/packages.json @@ -184,7 +184,7 @@ "web": "https://github.com/rafaelvasco/nimrod-glfw" }, { - "name": "chipmunk", + "name": "chipmunk6", "url": "git://github.com/fowlmouth/nimrod-chipmunk/", "method": "git", "tags": [ @@ -192,7 +192,7 @@ "physics", "game" ], - "description": "Binding for Chipmunk 6.1", + "description": "Bindings for Chipmunk2D 6.x physics library", "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-chipmunk" }, From 5927394e3c3df5a153c0066f573bf0d657287c7f Mon Sep 17 00:00:00 2001 From: matkuki Date: Mon, 15 Feb 2016 17:30:08 +0100 Subject: [PATCH 0216/1381] Update packages.json Added the old wrapper module for backwards compatibility --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6113be8..8826b8f 100644 --- a/packages.json +++ b/packages.json @@ -183,6 +183,19 @@ "license": "MIT", "web": "https://github.com/rafaelvasco/nimrod-glfw" }, + { + "name": "chipmunk", + "url": "git://github.com/fowlmouth/nimrod-chipmunk/", + "method": "git", + "tags": [ + "library", + "physics", + "game" + ], + "description": "Bindings for Chipmunk2D 6.x physics library (for backwards compatibility)", + "license": "MIT", + "web": "https://github.com/fowlmouth/nimrod-chipmunk" + }, { "name": "chipmunk6", "url": "git://github.com/fowlmouth/nimrod-chipmunk/", From a921fe8e45d66d1958b318772b98bb788406e921 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Tue, 16 Feb 2016 20:31:59 +0100 Subject: [PATCH 0217/1381] Added package nimyaml --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4ed9e28..e2f86bd 100644 --- a/packages.json +++ b/packages.json @@ -4282,5 +4282,19 @@ "description": "Nim modules for access to system Bluetooth resources.", "license": "BSD", "web": "https://github.com/Electric-Blue/NimBluez" + }, + { + "name": "nimyaml", + "url": "git://github.com/flyx/NimYAML", + "method": "git", + "tags": [ + "serialization", + "parsing", + "library", + "yaml" + ], + "description": "YAML 1.2 implementation for Nim", + "license": "MIT", + "web": "http://flyx.github.io/NimYAML/" } ] From 557d9949761de6ac17c49f55d8e36bc68bcf8ad2 Mon Sep 17 00:00:00 2001 From: Nick Greenfield Date: Fri, 19 Feb 2016 10:17:53 -0800 Subject: [PATCH 0218/1381] Remove trailing slashes from url/web links for boydgreenfield/onecodex packages --- packages.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index e2f86bd..1faf1a0 100644 --- a/packages.json +++ b/packages.json @@ -762,7 +762,7 @@ }, { "name": "bloom", - "url": "git://github.com/boydgreenfield/nimrod-bloom/", + "url": "git://github.com/boydgreenfield/nimrod-bloom", "method": "git", "tags": [ "Bloom filter", @@ -775,7 +775,7 @@ ], "description": "Efficient Bloom filter implementation in Nim using MurmurHash3.", "license": "MIT", - "web": "https://www.github.com/boydgreenfield/nimrod-bloom/" + "web": "https://www.github.com/boydgreenfield/nimrod-bloom" }, { "name": "awesome_rmdir", @@ -1011,7 +1011,7 @@ }, { "name": "murmur3", - "url": "git://github.com/boydgreenfield/nimrod-murmur/", + "url": "git://github.com/boydgreenfield/nimrod-murmur", "method": "git", "tags": [ "MurmurHash", @@ -1022,7 +1022,7 @@ ], "description": "A simple MurmurHash3 wrapper for Nim", "license": "MIT", - "web": "https://github.com/boydgreenfield/nimrod-murmur/" + "web": "https://github.com/boydgreenfield/nimrod-murmur" }, { "name": "hex", @@ -1177,7 +1177,7 @@ }, { "name": "bitarray", - "url": "git://github.com/onecodex/nim-bitarray/", + "url": "git://github.com/onecodex/nim-bitarray", "method": "git", "tags": [ "Bit arrays", @@ -1187,7 +1187,7 @@ ], "description": "mmap-backed bitarray implementation in Nim.", "license": "MIT", - "web": "https://www.github.com/onecodex/nim-bitarray/" + "web": "https://www.github.com/onecodex/nim-bitarray" }, { "name": "appdirs", From 8d1ff41d4661e14e47ceb9dee1612ec4173bce4a Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 22 Feb 2016 14:15:40 +0700 Subject: [PATCH 0219/1381] Added package jsmn --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 1faf1a0..cff3106 100644 --- a/packages.json +++ b/packages.json @@ -4296,5 +4296,20 @@ "description": "YAML 1.2 implementation for Nim", "license": "MIT", "web": "http://flyx.github.io/NimYAML/" + }, + { + "name": "jsmn", + "url": "https://github.com/OpenSystemsLab/jsmn.nim", + "method": "git", + "tags": [ + "json", + "token", + "tokenizer", + "parser", + "jsmn" + ], + "description": "Jsmn - a world fastest JSON parser - in pure Nim", + "license": "MIT", + "web": "https://github.com/OpenSystemsLab/jsmn.nim" } ] From 6cab78fe11d0bf215f00057afb34ec73de85d3cb Mon Sep 17 00:00:00 2001 From: baabelfish Date: Wed, 24 Feb 2016 00:21:18 +0200 Subject: [PATCH 0220/1381] Added mangle --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cff3106..8b8704c 100644 --- a/packages.json +++ b/packages.json @@ -4311,5 +4311,19 @@ "description": "Jsmn - a world fastest JSON parser - in pure Nim", "license": "MIT", "web": "https://github.com/OpenSystemsLab/jsmn.nim" + }, + { + "name": "mangle", + "url": "https://github.com/baabelfish/mangle", + "method": "git", + "tags": [ + "functional", + "iterators", + "lazy", + "library" + ], + "description": "Yet another iterator library", + "license": "MIT", + "web": "https://github.com/baabelfish/mangle" } ] From 277178ccfbf55b3dae70a9850c622e74b8f54280 Mon Sep 17 00:00:00 2001 From: Lee Date: Fri, 4 Mar 2016 15:38:37 -0500 Subject: [PATCH 0221/1381] Added sling project. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 8b8704c..a93a99a 100644 --- a/packages.json +++ b/packages.json @@ -916,6 +916,20 @@ "license": "MIT", "web": "https://github.com/fowlmouth/signals.nim" }, + { + "name": "sling", + "url": "git://github.com/Druage/sling", + "method": "git", + "tags": [ + "signal", + "slots", + "eventloop", + "callback" + ], + "description": "Signal and Slot library for Nim.", + "license": "unlicense", + "web": "https://github.com/Druage/sling" + }, { "name": "number_files", "url": "git://github.com/gradha/number_files/", From ce32c9e382cb95d88759e83b58463545ea04814a Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Sat, 5 Mar 2016 21:48:51 +0200 Subject: [PATCH 0222/1381] added sdl2-nim --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index a93a99a..286b6ad 100644 --- a/packages.json +++ b/packages.json @@ -833,6 +833,25 @@ "license": "MIT", "web": "https://github.com/nim-lang/sdl2" }, + { + "name": "sdl2-nim", + "url": "git://github.com/Vladar4/sdl2-nim", + "method": "git", + "tags": [ + "library", + "wrapper", + "sdl2", + "game", + "video", + "image", + "audio", + "network", + "ttf" + ], + "description": "Wrapper of the SDL 2 library for the Nim language.", + "license": "zlib", + "web": "https://github.com/Vladar4/sdl2-nim" + }, { "name": "assimp", "url": "git://github.com/barcharcraz/nim-assimp", From 4b8057aa017344cdfc7d8cdc5959e1ba8eb91ec1 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Thu, 10 Mar 2016 10:35:53 +0600 Subject: [PATCH 0223/1381] Add nimshell library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a93a99a..c2f7901 100644 --- a/packages.json +++ b/packages.json @@ -4339,5 +4339,17 @@ "description": "Yet another iterator library", "license": "MIT", "web": "https://github.com/baabelfish/mangle" + }, + { + "name": "nimshell", + "url": "https://github.com/vegansk/nimshell", + "method": "git", + "tags": [ + "shell", + "utility" + ], + "description": "Library for shell scripting in nim", + "license": "MIT", + "web": "https://github.com/vegansk/nimshell" } ] From d5d8f4ff5ed88d9f791370c211ede8aa049abb1c Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Thu, 10 Mar 2016 21:43:46 +0200 Subject: [PATCH 0224/1381] changed - to _ in package sdl2_nim --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 286b6ad..7dd5e85 100644 --- a/packages.json +++ b/packages.json @@ -834,8 +834,8 @@ "web": "https://github.com/nim-lang/sdl2" }, { - "name": "sdl2-nim", - "url": "git://github.com/Vladar4/sdl2-nim", + "name": "sdl2_nim", + "url": "git://github.com/Vladar4/sdl2_nim", "method": "git", "tags": [ "library", @@ -850,7 +850,7 @@ ], "description": "Wrapper of the SDL 2 library for the Nim language.", "license": "zlib", - "web": "https://github.com/Vladar4/sdl2-nim" + "web": "https://github.com/Vladar4/sdl2_nim" }, { "name": "assimp", From bc96e283041c6876ff8cc0f9646b2063a9e97fc2 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Fri, 11 Mar 2016 15:00:40 +0700 Subject: [PATCH 0225/1381] Added package sam --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index a93a99a..012898c 100644 --- a/packages.json +++ b/packages.json @@ -4339,5 +4339,20 @@ "description": "Yet another iterator library", "license": "MIT", "web": "https://github.com/baabelfish/mangle" + }, + { + "name": "sam", + "url": "https://github.com/OpenSystemsLab/sam.nim", + "method": "git", + "tags": [ + "json", + "binding", + "map", + "dump", + "load" + ], + "description": "Fast and just works JSON-Binding for Nim", + "license": "MIT", + "web": "https://github.com/OpenSystemsLab/sam.nim" } ] From 0782a4b844ac7f3eb29d1c3de8b16aeed9323b3d Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Sun, 20 Mar 2016 19:08:31 +0100 Subject: [PATCH 0226/1381] Added Rosencrantz --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 84d241a..5a39f36 100644 --- a/packages.json +++ b/packages.json @@ -4370,5 +4370,19 @@ "description": "Library for shell scripting in nim", "license": "MIT", "web": "https://github.com/vegansk/nimshell" + }, + { + "name": "rosencrantz", + "url": "git://github.com/andreaferretti/rosencrantz", + "method": "git", + "tags": [ + "web", + "server", + "DSL", + "combinators" + ], + "description": "A web DSL for Nim", + "license": "MIT", + "web": "https://github.com/andreaferretti/rosencrantz" } ] From aea8c61437ce10e0664f92c04b99cc001fccdf9e Mon Sep 17 00:00:00 2001 From: kubo39 Date: Mon, 21 Mar 2016 20:54:32 +0900 Subject: [PATCH 0227/1381] Added twitter. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5a39f36..6f1e195 100644 --- a/packages.json +++ b/packages.json @@ -4384,5 +4384,18 @@ "description": "A web DSL for Nim", "license": "MIT", "web": "https://github.com/andreaferretti/rosencrantz" + }, + { + "name": "twitter", + "url": "git://github.com/kubo39/twitter", + "method": "git", + "tags": [ + "library", + "wrapper", + "twitter" + ], + "description": "Low-level twitter API wrapper library for Nim.", + "license": "MIT", + "web": "https://github.com/kubo39/twitter" } ] From 146fdf14fead417b1d4d9e2938c9443a1c32ec03 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 23 Mar 2016 14:30:25 +0000 Subject: [PATCH 0228/1381] Fix merge conflict artifacts. --- packages.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages.json b/packages.json index 4091ccf..fd6d304 100644 --- a/packages.json +++ b/packages.json @@ -4360,7 +4360,6 @@ "web": "https://github.com/baabelfish/mangle" }, { -<<<<<<< HEAD "name": "nimshell", "url": "https://github.com/vegansk/nimshell", "method": "git", From 64f734590db117f5f2bc608b54835915e9182de1 Mon Sep 17 00:00:00 2001 From: achesak Date: Fri, 25 Mar 2016 18:24:02 -0500 Subject: [PATCH 0229/1381] Added srt and subviewer --- packages.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/packages.json b/packages.json index fd6d304..abafdaf 100644 --- a/packages.json +++ b/packages.json @@ -4412,5 +4412,30 @@ "description": "Low-level twitter API wrapper library for Nim.", "license": "MIT", "web": "https://github.com/kubo39/twitter" + }, + { + "name": "srt", + "url": "git://github.com/achesak/nim-srt", + "method": "git", + "tags": [ + "srt", + "subrip", + "subtitle" + ], + "description": "Nim module for parsing SRT (SubRip) subtitle files", + "license": "MIT", + "web": "https://github.com/achesak/nim-srt" + }, + { + "name": "subviewer", + "url": "git://github.co/achesak/nim-subviewer", + "method": "git", + "tags": [ + "subviewer", + "subtitle" + ], + "description": "Nim module for parsing SubViewer subtitle files", + "license": "MIT", + "web": "https://github.com/achesak/nim-subviewer" } ] From 2f83641eefc7e417fb29ebbe7f9df0c12d048799 Mon Sep 17 00:00:00 2001 From: "Mahlon E. Smith" Date: Fri, 25 Mar 2016 16:34:26 -0700 Subject: [PATCH 0230/1381] Add a Stomp library. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fd6d304..9016502 100644 --- a/packages.json +++ b/packages.json @@ -4412,5 +4412,19 @@ "description": "Low-level twitter API wrapper library for Nim.", "license": "MIT", "web": "https://github.com/kubo39/twitter" + }, + { + "name": "stomp", + "url": "https://bitbucket.org/mahlon/nim-stomp", + "method": "hg", + "tags": [ + "stomp", + "library", + "messaging", + "events" + ], + "description": "A pure-nim implementation of the STOMP protocol for machine messaging.", + "license": "MIT", + "web": "http://bitbucket.org/mahlon/nim-stomp" } ] From 4fe35fcf477ea582d30db27bdd8ce1b7c337cad2 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 28 Mar 2016 17:15:58 +0700 Subject: [PATCH 0231/1381] Added package Kinto --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index abafdaf..8589ca0 100644 --- a/packages.json +++ b/packages.json @@ -4437,5 +4437,21 @@ "description": "Nim module for parsing SubViewer subtitle files", "license": "MIT", "web": "https://github.com/achesak/nim-subviewer" + }, + { + "name": "Kinto", + "url": "https://github.com/OpenSystemsLab/kinto.nim", + "method": "git", + "tags": [ + "mozilla", + "kinto", + "json", + "storage", + "server", + "client" + ], + "description": "Kinto Client for Nim", + "license": "MIT", + "web": "https://github.com/OpenSystemsLab/kinto.nim" } ] From f38cf9305ba84288dcda725df85a4a0671d81181 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Wed, 30 Mar 2016 09:52:20 +0600 Subject: [PATCH 0232/1381] Add xmltools library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index aa690bf..771ef6d 100644 --- a/packages.json +++ b/packages.json @@ -4467,5 +4467,19 @@ "description": "Kinto Client for Nim", "license": "MIT", "web": "https://github.com/OpenSystemsLab/kinto.nim" + }, + { + "name": "xmltools", + "url": "https://github.com/vegansk/xmltools", + "method": "git", + "tags": [ + "xml", + "functional", + "library", + "parsing" + ], + "description": "High level xml library for Nim", + "license": "MIT", + "web": "https://github.com/vegansk/xmltools" } ] From 84ccef41d5eda31bfedb01537ab05c5df93bc612 Mon Sep 17 00:00:00 2001 From: Rostyslav Dzinko Date: Thu, 31 Mar 2016 12:47:38 +0300 Subject: [PATCH 0233/1381] Added nimongo package --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 771ef6d..91b2a36 100644 --- a/packages.json +++ b/packages.json @@ -4481,5 +4481,21 @@ "description": "High level xml library for Nim", "license": "MIT", "web": "https://github.com/vegansk/xmltools" + }, + { + "name": "nimongo", + "url": "https://github.com/SSPkrolik/nimongo", + "method": "git", + "tags": [ + "mongo", + "mongodb", + "database", + "server", + "driver", + "storage" + ], + "description": "MongoDB driver in pure Nim language with synchronous and asynchronous I/O support", + "license": "MIT", + "web": "https://github.com/SSPkrolik/nimongo" } ] From 4a0fdc53fa29d493dc450945e23766fa5c1e1e90 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Thu, 31 Mar 2016 15:24:09 +0600 Subject: [PATCH 0234/1381] Add nimboost library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 771ef6d..d385e76 100644 --- a/packages.json +++ b/packages.json @@ -4481,5 +4481,18 @@ "description": "High level xml library for Nim", "license": "MIT", "web": "https://github.com/vegansk/xmltools" + }, + { + "name": "nimboost", + "url": "https://github.com/vegansk/nimboost", + "method": "git", + "tags": [ + "stdlib", + "library", + "utility" + ], + "description": "Additions to the Nim's standard library, like boost for C++", + "license": "MIT", + "web": "https://github.com/vegansk/nimboost" } ] From 0dc2d7a603a8807aed7e9427309171e0d68b90c9 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Mon, 4 Apr 2016 16:12:46 +0600 Subject: [PATCH 0235/1381] Migrate ``nrpl`` to the new repo. The old one is unsupported for a long time --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 841fdc4..f8fa1dd 100644 --- a/packages.json +++ b/packages.json @@ -2307,7 +2307,7 @@ }, { "name": "nrpl", - "url": "https://github.com/wheineman/nrpl", + "url": "https://github.com/vegansk/nrpl", "method": "git", "tags": [ "REPL", @@ -2315,7 +2315,7 @@ ], "description": "A rudimentary Nim REPL", "license": "MIT", - "web": "https://github.com/wheineman/nrpl" + "web": "https://github.com/vegansk/nrpl" }, { "name": "nim-geocoding", From f7f21b7e442afdba3135bcc9e217f8c69edbea9b Mon Sep 17 00:00:00 2001 From: wt Date: Tue, 5 Apr 2016 12:31:33 +0800 Subject: [PATCH 0236/1381] Add asyncdocker Asynchronous docker client written by Nim-lang. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 841fdc4..83d8538 100644 --- a/packages.json +++ b/packages.json @@ -4510,5 +4510,17 @@ "description": "Additions to the Nim's standard library, like boost for C++", "license": "MIT", "web": "https://github.com/vegansk/nimboost" + }, + { + "name": "asyncdocker", + "url": "https://github.com/tulayang/asyncdocker", + "method": "git", + "tags": [ + "async", + "docker" + ], + "description": "Asynchronous docker client written by Nim-lang", + "license": "MIT", + "web": "http://tulayang.github.io/asyncdocker.html" } ] From cf16dad9c7cd9b7679468f2e2df6046985cded73 Mon Sep 17 00:00:00 2001 From: matkuki Date: Tue, 5 Apr 2016 22:16:15 +0200 Subject: [PATCH 0237/1381] Added Python3 wrapper library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 83d8538..a0e35bc 100644 --- a/packages.json +++ b/packages.json @@ -4522,5 +4522,17 @@ "description": "Asynchronous docker client written by Nim-lang", "license": "MIT", "web": "http://tulayang.github.io/asyncdocker.html" + }, + { + "name": "python3", + "url": "git://github.com/matkuki/python3", + "method": "git", + "tags": [ + "python", + "wrapper" + ], + "description": "Wrapper to interface with the Python 3 interpreter", + "license": "MIT", + "web": "https://github.com/matkuki/python3" } ] From 348a6fa054f9e19f5c1b17520089951bb105d7a6 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 6 Apr 2016 10:57:11 +0100 Subject: [PATCH 0238/1381] Replace @rgv151's xxtea package with @andot's xxtea package. Closes #335. --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 0043043..4fa5897 100644 --- a/packages.json +++ b/packages.json @@ -3197,7 +3197,7 @@ }, { "name": "xxtea", - "url": "https://github.com/rgv151/xxtea.nim", + "url": "https://github.com/xxtea/xxtea-nim", "method": "git", "tags": [ "xxtea", @@ -3205,9 +3205,9 @@ "decrypt", "crypto" ], - "description": "XXTEA wrapper for Nim", + "description": "XXTEA encryption algorithm library written in pure Nim.", "license": "MIT", - "web": "https://github.com/rgv151/xxtea.nim" + "web": "https://github.com/xxtea/xxtea-nim" }, { "name": "xxhash", From 716e56e280f2b5c2e964c69d0414348079ffffd7 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Wed, 6 Apr 2016 21:53:51 +0100 Subject: [PATCH 0239/1381] Add more requirements to the package list --- README.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index db4d91e..4257fb2 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This is a central listing of all packages for [Nimble](https://github.com/nim-lang/nimble), a package manager for the [Nim programming language](http://nim-lang.org). +NOTE: The packages listed here are not peer-reviewed or otherwise screened. We try to keep the list up-to-date but we cannot guarantee quality or maturity of the packages. + ## Adding your own package To add your own package, fork this repository, edit [packages.json](packages.json) and make a pull request. @@ -20,10 +22,16 @@ optional): * tags - A list of tags describing this package. * description - A description of this package. * license - The license of the source code in the package. - * web - An optional url for humans to read additional information about + * web - An optional URL for humans to read additional information about the package. + * doc - An optional URL for humans to read the package HTML documentation -Your packages may be removed if the url stops working. It goes without saying -that your pull request will not be accepted unless you fill out all of the -above required fields correctly, the package that ``url`` points to must also -contain a .nimble file, or else it will be rejected. +### Requirements + +While we really appreciate your contribution, please ensure that you package matches the following requirements: other developers rely on your package. Non-compliant packages might be removed with no warning. + +* The URL should work, a .nimble file should be present and the package should be installable +* The package should build correctly with the latest Nim release +* The package should not contain files without a license or in breach of 3rd parties licensing +* Non-mature packages should be flagged as such, especially if they perform security-critical tasks (e.g. encryption) +* If abandoning a package, please tag it as "abandoned". From 583bf4ee5be872f6281149fd5ff2f1727bd04842 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Thu, 7 Apr 2016 22:30:39 +0100 Subject: [PATCH 0240/1381] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4257fb2..c745073 100644 --- a/README.md +++ b/README.md @@ -28,10 +28,14 @@ optional): ### Requirements -While we really appreciate your contribution, please ensure that you package matches the following requirements: other developers rely on your package. Non-compliant packages might be removed with no warning. +While we really appreciate your contribution, please follow the requirements: other developers will rely on your package. Non-compliant packages might be removed with no warning. * The URL should work, a .nimble file should be present and the package should be installable * The package should build correctly with the latest Nim release * The package should not contain files without a license or in breach of 3rd parties licensing * Non-mature packages should be flagged as such, especially if they perform security-critical tasks (e.g. encryption) -* If abandoning a package, please tag it as "abandoned". +* If abandoning a package, please tag it as "abandoned" +* Optionally GPG-sign your releases +* Optionally follow [SemVer](http://semver.org + +The requirements might change in future. From 75e8a68424b7be6e0b0b76461ec3aba30caf0b50 Mon Sep 17 00:00:00 2001 From: niv Date: Sun, 10 Apr 2016 21:11:58 +0200 Subject: [PATCH 0241/1381] Added package jser --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 4fa5897..3e07884 100644 --- a/packages.json +++ b/packages.json @@ -4421,7 +4421,7 @@ "stomp", "library", "messaging", - "events" + "events" ], "description": "A pure-nim implementation of the STOMP protocol for machine messaging.", "license": "MIT", @@ -4534,5 +4534,18 @@ "description": "Wrapper to interface with the Python 3 interpreter", "license": "MIT", "web": "https://github.com/matkuki/python3" + }, + { + "name": "jser", + "url": "https://github.com/niv/jser.nim", + "method": "git", + "tags": [ + "json", + "serialize", + "tuple" + ], + "description": "json de/serializer for tuples and more", + "license": "MIT", + "web": "https://github.com/niv/jser.nim" } ] From 6f2a00f07be37124c3ba374915ac71623ef33ffb Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Tue, 12 Apr 2016 17:49:34 +0100 Subject: [PATCH 0242/1381] Added package pledge --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3e07884..3543124 100644 --- a/packages.json +++ b/packages.json @@ -4547,5 +4547,17 @@ "description": "json de/serializer for tuples and more", "license": "MIT", "web": "https://github.com/niv/jser.nim" + }, + { + "name": "pledge", + "url": "https://github.com/euantorano/pledge.nim", + "method": "git", + "tags": [ + "pledge", + "openbsd" + ], + "description": "OpenBSDs pledge(2) for Nim.", + "license": "BSD", + "web": "https://github.com/euantorano/pledge.nim" } ] From dc0d81cc2ca8033a03469d27bca90772c6e7d591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Krampe?= Date: Wed, 13 Apr 2016 11:17:00 +0200 Subject: [PATCH 0243/1381] Added sophia and renamed ni to spry --- packages.json | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 3543124..eade614 100644 --- a/packages.json +++ b/packages.json @@ -3384,17 +3384,17 @@ "web": "https://github.com/Senketsu/nim-db-ex" }, { - "name": "ni", - "url": "git://github.com/gokr/ni/", + "name": "spry", + "url": "git://github.com/gokr/spry", "method": "git", "tags": [ "language", "library", "scripting" ], - "description": "A Rebol-ish language implemented as an AST interpreter", + "description": "A Smalltalk and Rebol inspired language implemented as an AST interpreter", "license": "MIT", - "web": "https://github.com/gokr/ni" + "web": "https://github.com/gokr/spry" }, { "name": "nimBMP", @@ -4559,5 +4559,18 @@ "description": "OpenBSDs pledge(2) for Nim.", "license": "BSD", "web": "https://github.com/euantorano/pledge.nim" + }, + { + "name": "sophia", + "url": "git://github.com/gokr/nim-sophia", + "method": "git", + "tags": [ + "library", + "wrapper", + "database" + ], + "description": "Nim wrapper of the Sophia key/value store", + "license": "MIT", + "web": "https://github.com/gokr/nim-sophia" } ] From a2f7027eec265525986f5202bbc4fd67f3862402 Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Thu, 14 Apr 2016 18:03:19 +0100 Subject: [PATCH 0244/1381] Added package progress --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index eade614..f5a32ca 100644 --- a/packages.json +++ b/packages.json @@ -4572,5 +4572,19 @@ "description": "Nim wrapper of the Sophia key/value store", "license": "MIT", "web": "https://github.com/gokr/nim-sophia" + }, + { + "name": "progress", + "url": "https://github.com/euantorano/progress.nim", + "method": "git", + "tags": [ + "progress", + "bar", + "terminal", + "ui" + ], + "description": "A simple progress bar for Nim.", + "license": "BSD", + "web": "https://github.com/euantorano/progress.nim" } ] From 261d2c353831bcd164094610f0c6730cfb764258 Mon Sep 17 00:00:00 2001 From: niv Date: Thu, 14 Apr 2016 20:26:28 +0200 Subject: [PATCH 0245/1381] Added package websocket --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f5a32ca..f46ee31 100644 --- a/packages.json +++ b/packages.json @@ -4586,5 +4586,20 @@ "description": "A simple progress bar for Nim.", "license": "BSD", "web": "https://github.com/euantorano/progress.nim" + }, + { + "name": "websocket", + "url": "https://github.com/niv/websocket.nim", + "method": "git", + "tags": [ + "http", + "websockets", + "async", + "client", + "server" + ], + "description": "websockets for nim", + "license": "MIT", + "web": "https://github.com/niv/websocket.nim" } ] From ea5b1d80b8ec0ff3648a342678bb5816656757a2 Mon Sep 17 00:00:00 2001 From: Shaun Cutts Date: Sat, 23 Apr 2016 02:20:48 -0400 Subject: [PATCH 0246/1381] Adding "cucumber_nim" --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index f46ee31..6bda4a9 100644 --- a/packages.json +++ b/packages.json @@ -4601,5 +4601,16 @@ "description": "websockets for nim", "license": "MIT", "web": "https://github.com/niv/websocket.nim" + }, + { + "name": "cucumber", + "url": "https://github.com/shaunc/cucumber_nim", + "method": "git", + "tags": [ + "testing", "cucumber", "bdd" + ], + "description": "implements the cucumber BDD framework in the nim language", + "license": "MIT", + "web": "https://github.com/shaunc/cucumber_nim" } ] From 3f1d9ed610f26cb378e5fc5ca2ac39d0fecf2d60 Mon Sep 17 00:00:00 2001 From: Lompiktab Date: Sat, 23 Apr 2016 18:41:01 +0400 Subject: [PATCH 0247/1381] Add libmpdclient package --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 6bda4a9..77e8c9a 100644 --- a/packages.json +++ b/packages.json @@ -4612,5 +4612,16 @@ "description": "implements the cucumber BDD framework in the nim language", "license": "MIT", "web": "https://github.com/shaunc/cucumber_nim" + }, + { + "name": "libmpdclient", + "url": "https://github.com/lompik/libmpdclient.nim", + "method": "git", + "tags": [ + "MPD", "Music Player Daemon" + ], + "description": "Bindings for the Music Player Daemon C client library", + "license": "BSD", + "web": "https://github.com/lompik/libmpdclient.nim" } ] From 0d020269d9f53d41acf7cb0fb546b6c7142a5e46 Mon Sep 17 00:00:00 2001 From: greencardamom Date: Wed, 27 Apr 2016 21:33:19 -0400 Subject: [PATCH 0248/1381] awk package --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 77e8c9a..4d79ad0 100644 --- a/packages.json +++ b/packages.json @@ -4624,4 +4624,15 @@ "license": "BSD", "web": "https://github.com/lompik/libmpdclient.nim" } + { + "name": "awk", + "url": "https://github.com/greencardamom/awk", + "method": "git", + "tags": [ + "awk" + ], + "description": "Nim for awk programmers", + "license": "MIT", + "web": "https://github.com/greencardamom/awk" + } ] From e04e05a13aeea8822983da65b4582d8c3102c7f8 Mon Sep 17 00:00:00 2001 From: greencardamom Date: Wed, 27 Apr 2016 22:00:41 -0400 Subject: [PATCH 0249/1381] Update packages.json --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 4d79ad0..3355b37 100644 --- a/packages.json +++ b/packages.json @@ -4623,7 +4623,7 @@ "description": "Bindings for the Music Player Daemon C client library", "license": "BSD", "web": "https://github.com/lompik/libmpdclient.nim" - } + }, { "name": "awk", "url": "https://github.com/greencardamom/awk", From 166749eb8bf4048f8fb2a01d637e49b976b43001 Mon Sep 17 00:00:00 2001 From: Hiroki Noda Date: Mon, 9 May 2016 09:06:22 +0900 Subject: [PATCH 0250/1381] Update nim compiler on travis. --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ac14ac4..a3b4f7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,16 +5,16 @@ language: c install: - | - wget http://nim-lang.org/download/nim-0.11.2.tar.xz - tar xf nim-0.11.2.tar.xz - cd nim-0.11.2 + wget http://nim-lang.org/download/nim-0.13.0.tar.xz + tar xf nim-0.13.0.tar.xz + cd nim-0.13.0 sh build.sh cd .. before_script: - set -e - set -x - - export PATH=`pwd`/nim-0.11.2/bin:$PATH + - export PATH=`pwd`/nim-0.13.0/bin:$PATH script: - nim c -d:ssl -r package_scanner.nim From c3a5625300319d5202ec64624d633b6c64ef00d7 Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Mon, 9 May 2016 21:02:07 +0100 Subject: [PATCH 0251/1381] Added package dotenv --- packages.json | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 3355b37..b57129e 100644 --- a/packages.json +++ b/packages.json @@ -4607,7 +4607,9 @@ "url": "https://github.com/shaunc/cucumber_nim", "method": "git", "tags": [ - "testing", "cucumber", "bdd" + "testing", + "cucumber", + "bdd" ], "description": "implements the cucumber BDD framework in the nim language", "license": "MIT", @@ -4618,7 +4620,8 @@ "url": "https://github.com/lompik/libmpdclient.nim", "method": "git", "tags": [ - "MPD", "Music Player Daemon" + "MPD", + "Music Player Daemon" ], "description": "Bindings for the Music Player Daemon C client library", "license": "BSD", @@ -4634,5 +4637,19 @@ "description": "Nim for awk programmers", "license": "MIT", "web": "https://github.com/greencardamom/awk" + }, + { + "name": "dotenv", + "url": "https://github.com/euantorano/dotenv.nim", + "method": "git", + "tags": [ + "env", + "dotenv", + "configuration", + "environment" + ], + "description": "Loads environment variables from `.env`.", + "license": "BSD", + "web": "https://github.com/euantorano/dotenv.nim" } ] From b8b208a8371fc80026c5efd0dfd1b46be7775576 Mon Sep 17 00:00:00 2001 From: Aidan Steele Date: Thu, 12 May 2016 10:55:42 +1000 Subject: [PATCH 0252/1381] Added sph --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index b57129e..cf9918c 100644 --- a/packages.json +++ b/packages.json @@ -4651,5 +4651,19 @@ "description": "Loads environment variables from `.env`.", "license": "BSD", "web": "https://github.com/euantorano/dotenv.nim" + }, + { + "name": "sph", + "url": "https://github.com/aidansteele/sph", + "method": "git", + "tags": [ + "crypto", + "hashes", + "md5", + "sha" + ], + "description": "Large number of cryptographic hashes for Nim", + "license": "MIT", + "web": "https://github.com/aidansteele/sph" } ] From e04992c6839c0b4f125dbe74857d1df437ed4fbd Mon Sep 17 00:00:00 2001 From: Aidan Steele Date: Fri, 13 May 2016 20:44:57 +1000 Subject: [PATCH 0253/1381] Added aws_sdk --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index cf9918c..bfbfe7a 100644 --- a/packages.json +++ b/packages.json @@ -4665,5 +4665,17 @@ "description": "Large number of cryptographic hashes for Nim", "license": "MIT", "web": "https://github.com/aidansteele/sph" + }, + { + "name": "aws_sdk", + "url": "https://github.com/aidansteele/aws_sdk.nim", + "method": "git", + "tags": [ + "aws", + "amazon" + ], + "description": "Library for interacting with Amazon Web Services (AWS)", + "license": "MIT", + "web": "https://github.com/aidansteele/aws_sdk.nim" } ] From ef3eae768df755c14d5691adf4ba37275b05390b Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 14 May 2016 13:07:22 +0100 Subject: [PATCH 0254/1381] Add libsodium wrapper --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cf9918c..61b2031 100644 --- a/packages.json +++ b/packages.json @@ -4665,5 +4665,19 @@ "description": "Large number of cryptographic hashes for Nim", "license": "MIT", "web": "https://github.com/aidansteele/sph" + }, + { + "name": "libsodium", + "url": "https://github.com/FedericoCeratto/nim-libsodium", + "method": "git", + "tags": [ + "wrapper", + "library", + "security", + "crypto", + ], + "description": "libsodium wrapper", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-libsodium" } ] From 8bfccfcbcd212bf2ac581936050ca0f577a76f77 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 15 May 2016 12:55:34 +0100 Subject: [PATCH 0255/1381] Remove trailing comma. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 61b2031..dc53ff9 100644 --- a/packages.json +++ b/packages.json @@ -4674,7 +4674,7 @@ "wrapper", "library", "security", - "crypto", + "crypto" ], "description": "libsodium wrapper", "license": "LGPLv3", From 904d401a0c3fa449df78753152d72e27d5e0266d Mon Sep 17 00:00:00 2001 From: Parashurama Date: Mon, 16 May 2016 16:24:58 +0200 Subject: [PATCH 0256/1381] added i18n module. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c9ad124..4575844 100644 --- a/packages.json +++ b/packages.json @@ -4691,5 +4691,18 @@ "description": "Library for interacting with Amazon Web Services (AWS)", "license": "MIT", "web": "https://github.com/aidansteele/aws_sdk.nim" + }, + { + "name": "i18n", + "url": "https://github.com/Parashurama/nim-i18n", + "method": "git", + "tags": [ + "gettext", + "i18n", + "internationalisation" + ], + "description": "Bring a gettext-like internationalisation module to Nim", + "license": "MIT", + "web": "https://github.com/Parashurama/nim-i18n" } ] From fca130c077d6b0c6b52262967ba42f5221fd1eae Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Wed, 18 May 2016 19:17:22 +0300 Subject: [PATCH 0257/1381] Added persistent_enums --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4575844..f9baf64 100644 --- a/packages.json +++ b/packages.json @@ -4704,5 +4704,18 @@ "description": "Bring a gettext-like internationalisation module to Nim", "license": "MIT", "web": "https://github.com/Parashurama/nim-i18n" + }, + { + "name": "persistent_enums", + "url": "https://github.com/yglukhov/persistent_enums", + "method": "git", + "tags": [ + "enum", + "binary", + "protocol" + ], + "description": "Define enums which values preserve their binary representation upon inserting or reordering", + "license": "MIT", + "web": "https://github.com/yglukhov/persistent_enums" } ] From 9613f4673ebbe3176ca0e0edbf24b07f4ad0274f Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Fri, 20 May 2016 16:11:10 +0200 Subject: [PATCH 0258/1381] Added nimcl and nimblas --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index f9baf64..929e421 100644 --- a/packages.json +++ b/packages.json @@ -4717,5 +4717,31 @@ "description": "Define enums which values preserve their binary representation upon inserting or reordering", "license": "MIT", "web": "https://github.com/yglukhov/persistent_enums" + }, + { + "name": "nimcl", + "url": "https://github.com/unicredit/nimcl", + "method": "git", + "tags": [ + "OpenCL", + "GPU" + ], + "description": "High level wrapper over OpenCL", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/nimcl" + }, + { + "name": "nimblas", + "url": "https://github.com/unicredit/nimblas", + "method": "git", + "tags": [ + "BLAS", + "linear algebra", + "vector", + "matrix" + ], + "description": "BLAS for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/nimblas" } ] From 7067f016a3e989621f3d7aecab2392e32ba40d1e Mon Sep 17 00:00:00 2001 From: Hans Raaf Date: Sun, 22 May 2016 00:11:34 +0200 Subject: [PATCH 0259/1381] Added nimzend package. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index f9baf64..8e0cbbf 100644 --- a/packages.json +++ b/packages.json @@ -4717,5 +4717,19 @@ "description": "Define enums which values preserve their binary representation upon inserting or reordering", "license": "MIT", "web": "https://github.com/yglukhov/persistent_enums" + }, + { + "name": "nimzend", + "url": "https://github.com/metatexx/nimzend", + "method": "git", + "tags": [ + "zend", + "php", + "binding", + "extension" + ], + "description": "Native Nim Zend API glue for easy PHP extension development.", + "license": "MIT", + "web": "https://github.com/metatexx/nimzend" } ] From d8ee731934518d7fe85bedee56f6173261f097bb Mon Sep 17 00:00:00 2001 From: Jeff Ciesielski Date: Thu, 26 May 2016 22:31:23 -0400 Subject: [PATCH 0260/1381] Added package fixmath --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 929e421..3151d94 100644 --- a/packages.json +++ b/packages.json @@ -4743,5 +4743,16 @@ "description": "BLAS for Nim", "license": "Apache License 2.0", "web": "https://github.com/unicredit/nimblas" + }, + { + "name": "fixmath", + "url": "https://github.com/Jeff-Ciesielski/fixmath", + "method": "git", + "tags": [ + "math" + ], + "description": "LibFixMath 16:16 fixed point support for nim", + "license": "MIT", + "web": "https://github.com/Jeff-Ciesielski/fixmath" } ] From d263c40a153491ea5c99268a02a57c24420c5369 Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Thu, 2 Jun 2016 19:52:56 +0200 Subject: [PATCH 0261/1381] Replaced old yaml package with NimYAML --- packages.json | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/packages.json b/packages.json index c8a8eaa..da70534 100644 --- a/packages.json +++ b/packages.json @@ -3773,20 +3773,6 @@ "license": "MIT", "web": "https://github.com/nim-appkit/utils" }, - { - "name": "yaml", - "url": "https://github.com/nim-appkit/yaml", - "method": "git", - "tags": [ - "library", - "serialization", - "parsing", - "yaml" - ], - "description": "YAML parser", - "license": "MIT", - "web": "https://github.com/nim-appkit/yaml" - }, { "name": "pymod", "url": "https://github.com/jboy/nim-pymod", @@ -4317,7 +4303,7 @@ "web": "https://github.com/Electric-Blue/NimBluez" }, { - "name": "nimyaml", + "name": "yaml", "url": "git://github.com/flyx/NimYAML", "method": "git", "tags": [ From 18216fe3d1c9021d47cc51d67166a796791b514f Mon Sep 17 00:00:00 2001 From: Felix Krause Date: Thu, 2 Jun 2016 20:36:27 +0200 Subject: [PATCH 0262/1381] NimYAML now available as `yaml` and `nimyaml` --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index da70534..cb4cd0a 100644 --- a/packages.json +++ b/packages.json @@ -4316,6 +4316,20 @@ "license": "MIT", "web": "http://flyx.github.io/NimYAML/" }, + { + "name": "nimyaml", + "url": "git://github.com/flyx/NimYAML", + "method": "git", + "tags": [ + "serialization", + "parsing", + "library", + "yaml" + ], + "description": "YAML 1.2 implementation for Nim", + "license": "MIT", + "web": "http://flyx.github.io/NimYAML/" + }, { "name": "jsmn", "url": "https://github.com/OpenSystemsLab/jsmn.nim", From 030ed6d7c72e84e42388b042ef0328eb2cfc0209 Mon Sep 17 00:00:00 2001 From: def Date: Wed, 8 Jun 2016 02:38:27 +0200 Subject: [PATCH 0263/1381] Fix gradha's removed packages to use Araq's forks instead (fixes #360) --- packages.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packages.json b/packages.json index cb4cd0a..625ff70 100644 --- a/packages.json +++ b/packages.json @@ -565,14 +565,14 @@ }, { "name": "dropbox_filename_sanitizer", - "url": "git://github.com/gradha/dropbox_filename_sanitizer/", + "url": "git://github.com/Araq/dropbox_filename_sanitizer/", "method": "git", "tags": [ "dropbox" ], "description": "Tool to clean up filenames shared on Dropbox", "license": "MIT", - "web": "https://github.com/gradha/dropbox_filename_sanitizer/" + "web": "https://github.com/Araq/dropbox_filename_sanitizer/" }, { "name": "csv", @@ -779,7 +779,7 @@ }, { "name": "awesome_rmdir", - "url": "git://github.com/gradha/awesome_rmdir/", + "url": "git://github.com/Araq/awesome_rmdir/", "method": "git", "tags": [ "rmdir", @@ -788,7 +788,7 @@ ], "description": "Command to remove acceptably empty directories.", "license": "MIT", - "web": "https://github.com/gradha/awesome_rmdir/" + "web": "https://github.com/Araq/awesome_rmdir/" }, { "name": "nimalpm", @@ -951,7 +951,7 @@ }, { "name": "number_files", - "url": "git://github.com/gradha/number_files/", + "url": "git://github.com/Araq/number_files/", "method": "git", "tags": [ "rename", @@ -960,7 +960,7 @@ ], "description": "Command to add counter suffix/prefix to a list of files.", "license": "MIT", - "web": "https://github.com/gradha/number_files/" + "web": "https://github.com/Araq/number_files/" }, { "name": "redissessions", @@ -1097,7 +1097,7 @@ }, { "name": "gh_nimrod_doc_pages", - "url": "git://github.com/gradha/gh_nimrod_doc_pages", + "url": "git://github.com/Araq/gh_nimrod_doc_pages", "method": "git", "tags": [ "commandline", @@ -1107,11 +1107,11 @@ ], "description": "Generates a GitHub documentation website for Nim projects.", "license": "MIT", - "web": "http://gradha.github.io/gh_nimrod_doc_pages/" + "web": "https://github.com/Araq/gh_nimrod_doc_pages" }, { "name": "midnight_dynamite", - "url": "git://github.com/gradha/midnight_dynamite", + "url": "git://github.com/Araq/midnight_dynamite", "method": "git", "tags": [ "wrapper", @@ -1122,7 +1122,7 @@ ], "description": "Wrapper for the markdown rendering hoedown library", "license": "MIT", - "web": "http://gradha.github.io/midnight_dynamite/" + "web": "https://github.com/Araq/midnight_dynamite" }, { "name": "rsvg", @@ -1353,7 +1353,7 @@ }, { "name": "lazy_rest", - "url": "git://github.com/gradha/lazy_rest", + "url": "git://github.com/Araq/lazy_rest", "method": "git", "tags": [ "library", @@ -1364,7 +1364,7 @@ ], "description": "Simple reST HTML generation with some extras.", "license": "MIT", - "web": "https://github.com/gradha/lazy_rest" + "web": "https://github.com/Araq/lazy_rest" }, { "name": "Phosphor", From e1ca7b21ce460c004b9aedf432359322e35b915c Mon Sep 17 00:00:00 2001 From: def Date: Wed, 8 Jun 2016 03:04:39 +0200 Subject: [PATCH 0264/1381] Fix nanomsg name --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 625ff70..627f95e 100644 --- a/packages.json +++ b/packages.json @@ -1287,7 +1287,7 @@ "web": "https://h3rald.com/hastyscribe" }, { - "name": "nim-nanomsg", + "name": "nanomsg", "url": "git://github.com/def-/nim-nanomsg", "method": "git", "tags": [ From c35177aa937fbcb7b0e95c072ea4d424e062c2f6 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Wed, 8 Jun 2016 13:26:29 +0200 Subject: [PATCH 0265/1381] Added spills --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 627f95e..6792a26 100644 --- a/packages.json +++ b/packages.json @@ -4768,5 +4768,18 @@ "description": "Native Nim Zend API glue for easy PHP extension development.", "license": "MIT", "web": "https://github.com/metatexx/nimzend" + }, + { + "name": "spills", + "url": "https://github.com/andreaferretti/spills", + "method": "git", + "tags": [ + "disk-based", + "sequence", + "memory-mapping" + ], + "description": "Disk-based sequences", + "license": "Apache License 2.0", + "web": "https://github.com/andreaferretti/spills" } ] From 6d91cfad043d233a1726a26ba24fb292fac90b74 Mon Sep 17 00:00:00 2001 From: def Date: Thu, 9 Jun 2016 21:25:18 +0200 Subject: [PATCH 0266/1381] Use secure https instead of insecure git protocol --- packages.json | 324 +++++++++++++++++++++++++------------------------- 1 file changed, 162 insertions(+), 162 deletions(-) diff --git a/packages.json b/packages.json index 6792a26..e8265f7 100644 --- a/packages.json +++ b/packages.json @@ -1,7 +1,7 @@ [ { "name": "argument_parser", - "url": "git://github.com/Xe/argument_parser/", + "url": "https://github.com/Xe/argument_parser/", "method": "git", "tags": [ "library", @@ -16,7 +16,7 @@ }, { "name": "genieos", - "url": "git://github.com/Araq/genieos/", + "url": "https://github.com/Araq/genieos/", "method": "git", "tags": [ "library", @@ -31,7 +31,7 @@ }, { "name": "jester", - "url": "git://github.com/dom96/jester/", + "url": "https://github.com/dom96/jester/", "method": "git", "tags": [ "web", @@ -58,7 +58,7 @@ }, { "name": "murmur", - "url": "git://github.com/olahol/nimrod-murmur/", + "url": "https://github.com/olahol/nimrod-murmur/", "method": "git", "tags": [ "hash", @@ -70,7 +70,7 @@ }, { "name": "libtcod-nim", - "url": "git://github.com/Vladar4/libtcod-nim/", + "url": "https://github.com/Vladar4/libtcod-nim/", "method": "git", "tags": [ "roguelike", @@ -87,7 +87,7 @@ }, { "name": "nimgame", - "url": "git://github.com/Vladar4/nimgame/", + "url": "https://github.com/Vladar4/nimgame/", "method": "git", "tags": [ "game", @@ -100,7 +100,7 @@ }, { "name": "sfml", - "url": "git://github.com/fowlmouth/nimrod-sfml/", + "url": "https://github.com/fowlmouth/nimrod-sfml/", "method": "git", "tags": [ "game", @@ -113,7 +113,7 @@ }, { "name": "enet", - "url": "git://github.com/fowlmouth/nimrod-enet/", + "url": "https://github.com/fowlmouth/nimrod-enet/", "method": "git", "tags": [ "game", @@ -126,7 +126,7 @@ }, { "name": "nim-locale", - "url": "git://github.com/Amrykid/nim-locale/", + "url": "https://github.com/Amrykid/nim-locale/", "method": "git", "tags": [ "library", @@ -142,7 +142,7 @@ }, { "name": "fowltek", - "url": "git://github.com/fowlmouth/nimlibs/", + "url": "https://github.com/fowlmouth/nimlibs/", "method": "git", "tags": [ "game", @@ -157,7 +157,7 @@ }, { "name": "nake", - "url": "git://github.com/fowlmouth/nake/", + "url": "https://github.com/fowlmouth/nake/", "method": "git", "tags": [ "build", @@ -170,7 +170,7 @@ }, { "name": "nimrod-glfw", - "url": "git://github.com/rafaelvasco/nimrod-glfw/", + "url": "https://github.com/rafaelvasco/nimrod-glfw/", "method": "git", "tags": [ "library", @@ -185,7 +185,7 @@ }, { "name": "chipmunk", - "url": "git://github.com/fowlmouth/nimrod-chipmunk/", + "url": "https://github.com/fowlmouth/nimrod-chipmunk/", "method": "git", "tags": [ "library", @@ -198,7 +198,7 @@ }, { "name": "chipmunk6", - "url": "git://github.com/fowlmouth/nimrod-chipmunk/", + "url": "https://github.com/fowlmouth/nimrod-chipmunk/", "method": "git", "tags": [ "library", @@ -211,7 +211,7 @@ }, { "name": "nim-glfw", - "url": "git://github.com/EXetoC/nim-glfw/", + "url": "https://github.com/EXetoC/nim-glfw/", "method": "git", "tags": [ "library", @@ -226,7 +226,7 @@ }, { "name": "nim-ao", - "url": "git://github.com/EXetoC/nim-ao/", + "url": "https://github.com/EXetoC/nim-ao/", "method": "git", "tags": [ "library", @@ -238,7 +238,7 @@ }, { "name": "termbox", - "url": "git://github.com/fowlmouth/nim-termbox", + "url": "https://github.com/fowlmouth/nim-termbox", "method": "git", "tags": [ "library", @@ -265,7 +265,7 @@ }, { "name": "kwin", - "url": "git://github.com/reactormonk/nim-kwin", + "url": "https://github.com/reactormonk/nim-kwin", "method": "git", "tags": [ "library", @@ -278,7 +278,7 @@ }, { "name": "opencv", - "url": "git://github.com/dom96/nim-opencv", + "url": "https://github.com/dom96/nim-opencv", "method": "git", "tags": [ "library", @@ -293,7 +293,7 @@ }, { "name": "nimble", - "url": "git://github.com/nim-lang/nimble", + "url": "https://github.com/nim-lang/nimble", "method": "git", "tags": [ "app", @@ -307,7 +307,7 @@ }, { "name": "aporia", - "url": "git://github.com/nim-lang/Aporia", + "url": "https://github.com/nim-lang/Aporia", "method": "git", "tags": [ "app", @@ -322,7 +322,7 @@ }, { "name": "c2nim", - "url": "git://github.com/nim-lang/c2nim", + "url": "https://github.com/nim-lang/c2nim", "method": "git", "tags": [ "app", @@ -338,7 +338,7 @@ }, { "name": "pas2nim", - "url": "git://github.com/nim-lang/pas2nim", + "url": "https://github.com/nim-lang/pas2nim", "method": "git", "tags": [ "app", @@ -353,7 +353,7 @@ }, { "name": "ipsumgenera", - "url": "git://github.com/dom96/ipsumgenera", + "url": "https://github.com/dom96/ipsumgenera", "method": "git", "tags": [ "app", @@ -382,7 +382,7 @@ }, { "name": "pastebin", - "url": "git://github.com/achesak/nim-pastebin", + "url": "https://github.com/achesak/nim-pastebin", "method": "git", "tags": [ "library", @@ -395,7 +395,7 @@ }, { "name": "yahooweather", - "url": "git://github.com/achesak/nim-yahooweather", + "url": "https://github.com/achesak/nim-yahooweather", "method": "git", "tags": [ "library", @@ -408,7 +408,7 @@ }, { "name": "noaa", - "url": "git://github.com/achesak/nim-noaa", + "url": "https://github.com/achesak/nim-noaa", "method": "git", "tags": [ "library", @@ -421,7 +421,7 @@ }, { "name": "rss", - "url": "git://github.com/achesak/nim-rss", + "url": "https://github.com/achesak/nim-rss", "method": "git", "tags": [ "library", @@ -435,7 +435,7 @@ }, { "name": "extmath", - "url": "git://github.com/achesak/extmath.nim", + "url": "https://github.com/achesak/extmath.nim", "method": "git", "tags": [ "library", @@ -448,7 +448,7 @@ }, { "name": "gtk2", - "url": "git://github.com/nim-lang/gtk2", + "url": "https://github.com/nim-lang/gtk2", "method": "git", "tags": [ "wrapper", @@ -461,7 +461,7 @@ }, { "name": "cairo", - "url": "git://github.com/nim-lang/cairo", + "url": "https://github.com/nim-lang/cairo", "method": "git", "tags": [ "wrapper" @@ -472,7 +472,7 @@ }, { "name": "x11", - "url": "git://github.com/nim-lang/x11", + "url": "https://github.com/nim-lang/x11", "method": "git", "tags": [ "wrapper" @@ -483,7 +483,7 @@ }, { "name": "opengl", - "url": "git://github.com/nim-lang/opengl", + "url": "https://github.com/nim-lang/opengl", "method": "git", "tags": [ "wrapper" @@ -494,7 +494,7 @@ }, { "name": "lua", - "url": "git://github.com/nim-lang/lua", + "url": "https://github.com/nim-lang/lua", "method": "git", "tags": [ "wrapper" @@ -505,7 +505,7 @@ }, { "name": "tcl", - "url": "git://github.com/nim-lang/tcl", + "url": "https://github.com/nim-lang/tcl", "method": "git", "tags": [ "wrapper" @@ -531,7 +531,7 @@ }, { "name": "python", - "url": "git://github.com/nim-lang/python", + "url": "https://github.com/nim-lang/python", "method": "git", "tags": [ "wrapper" @@ -542,7 +542,7 @@ }, { "name": "NimBorg", - "url": "git://github.com/micklat/NimBorg", + "url": "https://github.com/micklat/NimBorg", "method": "git", "tags": [ "wrapper" @@ -565,7 +565,7 @@ }, { "name": "dropbox_filename_sanitizer", - "url": "git://github.com/Araq/dropbox_filename_sanitizer/", + "url": "https://github.com/Araq/dropbox_filename_sanitizer/", "method": "git", "tags": [ "dropbox" @@ -576,7 +576,7 @@ }, { "name": "csv", - "url": "git://github.com/achesak/nim-csv", + "url": "https://github.com/achesak/nim-csv", "method": "git", "tags": [ "csv", @@ -590,7 +590,7 @@ }, { "name": "geonames", - "url": "git://github.com/achesak/nim-geonames", + "url": "https://github.com/achesak/nim-geonames", "method": "git", "tags": [ "library", @@ -603,7 +603,7 @@ }, { "name": "gravatar", - "url": "git://github.com/achesak/nim-gravatar", + "url": "https://github.com/achesak/nim-gravatar", "method": "git", "tags": [ "library", @@ -616,7 +616,7 @@ }, { "name": "coverartarchive", - "url": "git://github.com/achesak/nim-coverartarchive", + "url": "https://github.com/achesak/nim-coverartarchive", "method": "git", "tags": [ "library", @@ -729,7 +729,7 @@ }, { "name": "commandeer", - "url": "git://github.com/fenekku/commandeer", + "url": "https://github.com/fenekku/commandeer", "method": "git", "tags": [ "library", @@ -762,7 +762,7 @@ }, { "name": "bloom", - "url": "git://github.com/boydgreenfield/nimrod-bloom", + "url": "https://github.com/boydgreenfield/nimrod-bloom", "method": "git", "tags": [ "Bloom filter", @@ -779,7 +779,7 @@ }, { "name": "awesome_rmdir", - "url": "git://github.com/Araq/awesome_rmdir/", + "url": "https://github.com/Araq/awesome_rmdir/", "method": "git", "tags": [ "rmdir", @@ -792,7 +792,7 @@ }, { "name": "nimalpm", - "url": "git://github.com/barcharcraz/nimalpm/", + "url": "https://github.com/barcharcraz/nimalpm/", "method": "git", "tags": [ "alpm", @@ -806,7 +806,7 @@ }, { "name": "nimlibpng", - "url": "git://github.com/barcharcraz/nimlibpng", + "url": "https://github.com/barcharcraz/nimlibpng", "method": "git", "tags": [ "png", @@ -821,7 +821,7 @@ }, { "name": "sdl2", - "url": "git://github.com/nim-lang/sdl2", + "url": "https://github.com/nim-lang/sdl2", "method": "git", "tags": [ "wrapper", @@ -835,7 +835,7 @@ }, { "name": "sdl2_nim", - "url": "git://github.com/Vladar4/sdl2_nim", + "url": "https://github.com/Vladar4/sdl2_nim", "method": "git", "tags": [ "library", @@ -854,7 +854,7 @@ }, { "name": "assimp", - "url": "git://github.com/barcharcraz/nim-assimp", + "url": "https://github.com/barcharcraz/nim-assimp", "method": "git", "tags": [ "wrapper", @@ -869,7 +869,7 @@ }, { "name": "freeimage", - "url": "git://github.com/barcharcraz/nim-freeimage", + "url": "https://github.com/barcharcraz/nim-freeimage", "method": "git", "tags": [ "wrapper", @@ -884,7 +884,7 @@ }, { "name": "bcrypt", - "url": "git://github.com/ithkuil/bcryptnim/", + "url": "https://github.com/ithkuil/bcryptnim/", "method": "git", "tags": [ "hash", @@ -899,7 +899,7 @@ }, { "name": "opencl", - "url": "git://github.com/nim-lang/opencl", + "url": "https://github.com/nim-lang/opencl", "method": "git", "tags": [ "library" @@ -910,7 +910,7 @@ }, { "name": "DevIL", - "url": "git://github.com/Varriount/DevIL", + "url": "https://github.com/Varriount/DevIL", "method": "git", "tags": [ "image", @@ -924,7 +924,7 @@ }, { "name": "signals", - "url": "git://github.com/fowlmouth/signals.nim", + "url": "https://github.com/fowlmouth/signals.nim", "method": "git", "tags": [ "event-based", @@ -937,7 +937,7 @@ }, { "name": "sling", - "url": "git://github.com/Druage/sling", + "url": "https://github.com/Druage/sling", "method": "git", "tags": [ "signal", @@ -951,7 +951,7 @@ }, { "name": "number_files", - "url": "git://github.com/Araq/number_files/", + "url": "https://github.com/Araq/number_files/", "method": "git", "tags": [ "rename", @@ -964,7 +964,7 @@ }, { "name": "redissessions", - "url": "git://github.com/ithkuil/redissessions/", + "url": "https://github.com/ithkuil/redissessions/", "method": "git", "tags": [ "jester", @@ -977,7 +977,7 @@ }, { "name": "horde3d", - "url": "git://github.com/fowlmouth/horde3d", + "url": "https://github.com/fowlmouth/horde3d", "method": "git", "tags": [ "graphics", @@ -991,7 +991,7 @@ }, { "name": "mongo", - "url": "git://github.com/nim-lang/mongo", + "url": "https://github.com/nim-lang/mongo", "method": "git", "tags": [ "library", @@ -1004,7 +1004,7 @@ }, { "name": "allegro5", - "url": "git://github.com/fowlmouth/allegro5", + "url": "https://github.com/fowlmouth/allegro5", "method": "git", "tags": [ "wrapper", @@ -1019,7 +1019,7 @@ }, { "name": "physfs", - "url": "git://github.com/fowlmouth/physfs", + "url": "https://github.com/fowlmouth/physfs", "method": "git", "tags": [ "wrapper", @@ -1044,7 +1044,7 @@ }, { "name": "murmur3", - "url": "git://github.com/boydgreenfield/nimrod-murmur", + "url": "https://github.com/boydgreenfield/nimrod-murmur", "method": "git", "tags": [ "MurmurHash", @@ -1082,7 +1082,7 @@ }, { "name": "jade-nim", - "url": "git://github.com/idlewan/jade-nim", + "url": "https://github.com/idlewan/jade-nim", "method": "git", "tags": [ "template", @@ -1097,7 +1097,7 @@ }, { "name": "gh_nimrod_doc_pages", - "url": "git://github.com/Araq/gh_nimrod_doc_pages", + "url": "https://github.com/Araq/gh_nimrod_doc_pages", "method": "git", "tags": [ "commandline", @@ -1111,7 +1111,7 @@ }, { "name": "midnight_dynamite", - "url": "git://github.com/Araq/midnight_dynamite", + "url": "https://github.com/Araq/midnight_dynamite", "method": "git", "tags": [ "wrapper", @@ -1126,7 +1126,7 @@ }, { "name": "rsvg", - "url": "git://github.com/def-/rsvg", + "url": "https://github.com/def-/rsvg", "method": "git", "tags": [ "wrapper", @@ -1139,7 +1139,7 @@ }, { "name": "emerald", - "url": "git://github.com/flyx/emerald", + "url": "https://github.com/flyx/emerald", "method": "git", "tags": [ "dsl", @@ -1153,7 +1153,7 @@ }, { "name": "niminst", - "url": "git://github.com/nim-lang/niminst", + "url": "https://github.com/nim-lang/niminst", "method": "git", "tags": [ "app", @@ -1169,7 +1169,7 @@ }, { "name": "redis", - "url": "git://github.com/nim-lang/redis", + "url": "https://github.com/nim-lang/redis", "method": "git", "tags": [ "redis", @@ -1182,7 +1182,7 @@ }, { "name": "dialogs", - "url": "git://github.com/nim-lang/dialogs", + "url": "https://github.com/nim-lang/dialogs", "method": "git", "tags": [ "library", @@ -1197,7 +1197,7 @@ }, { "name": "vectors", - "url": "git://github.com/blamestross/nimrod-vectors", + "url": "https://github.com/blamestross/nimrod-vectors", "method": "git", "tags": [ "math", @@ -1210,7 +1210,7 @@ }, { "name": "bitarray", - "url": "git://github.com/onecodex/nim-bitarray", + "url": "https://github.com/onecodex/nim-bitarray", "method": "git", "tags": [ "Bit arrays", @@ -1224,7 +1224,7 @@ }, { "name": "appdirs", - "url": "git://github.com/MrJohz/appdirs", + "url": "https://github.com/MrJohz/appdirs", "method": "git", "tags": [ "utility", @@ -1236,7 +1236,7 @@ }, { "name": "nim-sndfile", - "url": "git://github.com/julienaubert/nim-sndfile", + "url": "https://github.com/julienaubert/nim-sndfile", "method": "git", "tags": [ "audio", @@ -1250,7 +1250,7 @@ }, { "name": "bigints", - "url": "git://github.com/def-/bigints", + "url": "https://github.com/def-/bigints", "method": "git", "tags": [ "math", @@ -1263,7 +1263,7 @@ }, { "name": "iterutils", - "url": "git://github.com/def-/iterutils", + "url": "https://github.com/def-/iterutils", "method": "git", "tags": [ "library", @@ -1275,7 +1275,7 @@ }, { "name": "hastyscribe", - "url": "git://github.com/h3rald/hastyscribe", + "url": "https://github.com/h3rald/hastyscribe", "method": "git", "tags": [ "markdown", @@ -1288,7 +1288,7 @@ }, { "name": "nanomsg", - "url": "git://github.com/def-/nim-nanomsg", + "url": "https://github.com/def-/nim-nanomsg", "method": "git", "tags": [ "library", @@ -1315,7 +1315,7 @@ }, { "name": "imghdr", - "url": "git://github.com/achesak/nim-imghdr", + "url": "https://github.com/achesak/nim-imghdr", "method": "git", "tags": [ "image", @@ -1328,7 +1328,7 @@ }, { "name": "csv2json", - "url": "git://github.com/achesak/nim-csv2json", + "url": "https://github.com/achesak/nim-csv2json", "method": "git", "tags": [ "csv", @@ -1340,7 +1340,7 @@ }, { "name": "vecmath", - "url": "git://github.com/barcharcraz/vecmath", + "url": "https://github.com/barcharcraz/vecmath", "method": "git", "tags": [ "library", @@ -1353,7 +1353,7 @@ }, { "name": "lazy_rest", - "url": "git://github.com/Araq/lazy_rest", + "url": "https://github.com/Araq/lazy_rest", "method": "git", "tags": [ "library", @@ -1368,7 +1368,7 @@ }, { "name": "Phosphor", - "url": "git://github.com/barcharcraz/Phosphor", + "url": "https://github.com/barcharcraz/Phosphor", "method": "git", "tags": [ "library", @@ -1381,7 +1381,7 @@ }, { "name": "colorsys", - "url": "git://github.com/achesak/nim-colorsys", + "url": "https://github.com/achesak/nim-colorsys", "method": "git", "tags": [ "library", @@ -1397,7 +1397,7 @@ }, { "name": "pythonfile", - "url": "git://github.com/achesak/nim-pythonfile", + "url": "https://github.com/achesak/nim-pythonfile", "method": "git", "tags": [ "library", @@ -1411,7 +1411,7 @@ }, { "name": "sndhdr", - "url": "git://github.com/achesak/nim-sndhdr", + "url": "https://github.com/achesak/nim-sndhdr", "method": "git", "tags": [ "library", @@ -1426,7 +1426,7 @@ }, { "name": "irc", - "url": "git://github.com/nim-lang/irc", + "url": "https://github.com/nim-lang/irc", "method": "git", "tags": [ "library", @@ -1439,7 +1439,7 @@ }, { "name": "random", - "url": "git://github.com/BlaXpirit/nim-random", + "url": "https://github.com/BlaXpirit/nim-random", "method": "git", "tags": [ "library", @@ -1452,7 +1452,7 @@ }, { "name": "zmq", - "url": "git://github.com/nim-lang/nim-zmq", + "url": "https://github.com/nim-lang/nim-zmq", "method": "git", "tags": [ "library", @@ -1467,7 +1467,7 @@ }, { "name": "uuid", - "url": "git://github.com/idlewan/nim-uuid", + "url": "https://github.com/idlewan/nim-uuid", "method": "git", "tags": [ "library", @@ -1480,7 +1480,7 @@ }, { "name": "robotparser", - "url": "git://github.com/achesak/nim-robotparser", + "url": "https://github.com/achesak/nim-robotparser", "method": "git", "tags": [ "library", @@ -1494,7 +1494,7 @@ }, { "name": "epub", - "url": "git://github.com/achesak/nim-epub", + "url": "https://github.com/achesak/nim-epub", "method": "git", "tags": [ "library", @@ -1507,7 +1507,7 @@ }, { "name": "hashids", - "url": "git://github.com/achesak/nim-hashids", + "url": "https://github.com/achesak/nim-hashids", "method": "git", "tags": [ "library", @@ -1519,7 +1519,7 @@ }, { "name": "openssl_evp", - "url": "git://github.com/cowboy-coders/nim-openssl-evp", + "url": "https://github.com/cowboy-coders/nim-openssl-evp", "method": "git", "tags": [ "library", @@ -1532,7 +1532,7 @@ }, { "name": "monad", - "url": "git://github.com/superfunc/monad", + "url": "https://github.com/superfunc/monad", "method": "git", "tags": [ "library", @@ -1546,7 +1546,7 @@ }, { "name": "eternity", - "url": "git://github.com/hiteshjasani/nim-eternity", + "url": "https://github.com/hiteshjasani/nim-eternity", "method": "git", "tags": [ "library", @@ -1573,7 +1573,7 @@ }, { "name": "ludens", - "url": "git://github.com/rnentjes/nim-ludens", + "url": "https://github.com/rnentjes/nim-ludens", "method": "git", "tags": [ "library", @@ -1587,7 +1587,7 @@ }, { "name": "ffbookmarks", - "url": "git://github.com/achesak/nim-ffbookmarks", + "url": "https://github.com/achesak/nim-ffbookmarks", "method": "git", "tags": [ "firefox", @@ -1654,7 +1654,7 @@ }, { "name": "nimqml", - "url": "git://github.com/filcuc/nimqml", + "url": "https://github.com/filcuc/nimqml", "method": "git", "tags": [ "Qt", @@ -1668,7 +1668,7 @@ }, { "name": "XPLM-Nim", - "url": "git://github.com/jpoirier/XPLM-Nim", + "url": "https://github.com/jpoirier/XPLM-Nim", "method": "git", "tags": [ "X-Plane", @@ -1682,7 +1682,7 @@ }, { "name": "csfml", - "url": "git://github.com/BlaXpirit/nim-csfml", + "url": "https://github.com/BlaXpirit/nim-csfml", "method": "git", "tags": [ "sfml", @@ -1698,7 +1698,7 @@ }, { "name": "optional_t", - "url": "git://github.com/flaviut/optional_t", + "url": "https://github.com/flaviut/optional_t", "method": "git", "tags": [ "option", @@ -1710,7 +1710,7 @@ }, { "name": "nimrtlsdr", - "url": "git://github.com/jpoirier/nimrtlsdr", + "url": "https://github.com/jpoirier/nimrtlsdr", "method": "git", "tags": [ "rtl-sdr", @@ -1791,7 +1791,7 @@ }, { "name": "docopt", - "url": "git://github.com/docopt/docopt.nim", + "url": "https://github.com/docopt/docopt.nim", "method": "git", "tags": [ "commandline", @@ -1805,7 +1805,7 @@ }, { "name": "bpg", - "url": "git://github.com/def-/nim-bpg.git", + "url": "https://github.com/def-/nim-bpg.git", "method": "git", "tags": [ "image", @@ -1818,7 +1818,7 @@ }, { "name": "io-spacenav", - "url": "git://github.com/nimious/io-spacenav.git", + "url": "https://github.com/nimious/io-spacenav.git", "method": "git", "tags": [ "binding", @@ -1921,7 +1921,7 @@ }, { "name": "pythonpathlib", - "url": "git://github.com/achesak/nim-pythonpathlib.git", + "url": "https://github.com/achesak/nim-pythonpathlib.git", "method": "git", "tags": [ "path", @@ -1950,7 +1950,7 @@ }, { "name": "nimrat", - "url": "git://github.com/apense/nimrat", + "url": "https://github.com/apense/nimrat", "method": "git", "tags": [ "library", @@ -1963,7 +1963,7 @@ }, { "name": "io-isense", - "url": "git://github.com/nimious/io-isense.git", + "url": "https://github.com/nimious/io-isense.git", "method": "git", "tags": [ "binding", @@ -1982,7 +1982,7 @@ }, { "name": "io-usb", - "url": "git://github.com/nimious/io-usb.git", + "url": "https://github.com/nimious/io-usb.git", "method": "git", "tags": [ "binding", @@ -2010,7 +2010,7 @@ }, { "name": "glossolalia", - "url": "git://github.com/fowlmouth/glossolalia", + "url": "https://github.com/fowlmouth/glossolalia", "method": "git", "tags": [ "parser", @@ -2061,7 +2061,7 @@ }, { "name": "io-myo", - "url": "git://github.com/nimious/io-myo.git", + "url": "https://github.com/nimious/io-myo.git", "method": "git", "tags": [ "binding", @@ -2076,7 +2076,7 @@ }, { "name": "io-oculus", - "url": "git://github.com/nimious/io-oculus.git", + "url": "https://github.com/nimious/io-oculus.git", "method": "git", "tags": [ "binding", @@ -2095,7 +2095,7 @@ }, { "name": "closure_compiler", - "url": "git://github.com/yglukhov/closure_compiler.git", + "url": "https://github.com/yglukhov/closure_compiler.git", "method": "git", "tags": [ "binding", @@ -2109,7 +2109,7 @@ }, { "name": "io-serialport", - "url": "git://github.com/nimious/io-serialport.git", + "url": "https://github.com/nimious/io-serialport.git", "method": "git", "tags": [ "binding", @@ -2123,7 +2123,7 @@ }, { "name": "beanstalkd", - "url": "git://github.com/tormaroe/beanstalkd.nim.git", + "url": "https://github.com/tormaroe/beanstalkd.nim.git", "method": "git", "tags": [ "library", @@ -2136,7 +2136,7 @@ }, { "name": "wiki2text", - "url": "git://github.com/rspeer/wiki2text.git", + "url": "https://github.com/rspeer/wiki2text.git", "method": "git", "tags": [ "nlp", @@ -2332,7 +2332,7 @@ }, { "name": "io-gles", - "url": "git://github.com/nimious/io-gles.git", + "url": "https://github.com/nimious/io-gles.git", "method": "git", "tags": [ "binding", @@ -2346,7 +2346,7 @@ }, { "name": "io-egl", - "url": "git://github.com/nimious/io-egl.git", + "url": "https://github.com/nimious/io-egl.git", "method": "git", "tags": [ "binding", @@ -2362,7 +2362,7 @@ }, { "name": "io-sixense", - "url": "git://github.com/nimious/io-sixense.git", + "url": "https://github.com/nimious/io-sixense.git", "method": "git", "tags": [ "binding", @@ -2483,7 +2483,7 @@ }, { "name": "uri2", - "url": "git://github.com/achesak/nim-uri2", + "url": "https://github.com/achesak/nim-uri2", "method": "git", "tags": [ "uri", @@ -2642,7 +2642,7 @@ }, { "name": "lazy", - "url": "git://github.com/petermora/nimLazy/", + "url": "https://github.com/petermora/nimLazy/", "method": "git", "tags": [ "library", @@ -2730,7 +2730,7 @@ }, { "name": "oldwinapi", - "url": "git://github.com/nim-lang/oldwinapi", + "url": "https://github.com/nim-lang/oldwinapi", "method": "git", "tags": [ "library", @@ -2743,7 +2743,7 @@ }, { "name": "nimx", - "url": "git://github.com/yglukhov/nimx", + "url": "https://github.com/yglukhov/nimx", "method": "git", "tags": [ "gui", @@ -2871,7 +2871,7 @@ }, { "name": "ncurses", - "url": "git://github.com/rnowley/nim-ncurses/", + "url": "https://github.com/rnowley/nim-ncurses/", "method": "git", "tags": [ "library", @@ -2899,7 +2899,7 @@ }, { "name": "pwd", - "url": "git://github.com/achesak/nim-pwd", + "url": "https://github.com/achesak/nim-pwd", "method": "git", "tags": [ "library", @@ -2913,7 +2913,7 @@ }, { "name": "spwd", - "url": "git://github.com/achesak/nim-spwd", + "url": "https://github.com/achesak/nim-spwd", "method": "git", "tags": [ "library", @@ -2928,7 +2928,7 @@ }, { "name": "grp", - "url": "git://github.com/achesak/nim-grp", + "url": "https://github.com/achesak/nim-grp", "method": "git", "tags": [ "library", @@ -3312,7 +3312,7 @@ }, { "name": "nimeverything", - "url": "git://github.com/xland/nimeverything/", + "url": "https://github.com/xland/nimeverything/", "method": "git", "tags": [ "everything", @@ -3325,7 +3325,7 @@ }, { "name": "vidhdr", - "url": "git://github.com/achesak/nim-vidhdr", + "url": "https://github.com/achesak/nim-vidhdr", "method": "git", "tags": [ "video", @@ -3338,7 +3338,7 @@ }, { "name": "gitapi", - "url": "git://github.com/achesak/nim-gitapi", + "url": "https://github.com/achesak/nim-gitapi", "method": "git", "tags": [ "git", @@ -3385,7 +3385,7 @@ }, { "name": "spry", - "url": "git://github.com/gokr/spry", + "url": "https://github.com/gokr/spry", "method": "git", "tags": [ "language", @@ -3892,7 +3892,7 @@ }, { "name": "pythonmath", - "url": "git://github.com/achesak/nim-pythonmath", + "url": "https://github.com/achesak/nim-pythonmath", "method": "git", "tags": [ "library", @@ -3947,7 +3947,7 @@ }, { "name": "fnmatch", - "url": "git://github.com/achesak/nim-fnmatch", + "url": "https://github.com/achesak/nim-fnmatch", "method": "git", "tags": [ "library", @@ -3961,7 +3961,7 @@ }, { "name": "shorturl", - "url": "git://github.com/achesak/nim-shorturl", + "url": "https://github.com/achesak/nim-shorturl", "method": "git", "tags": [ "library", @@ -4002,7 +4002,7 @@ }, { "name": "impulse_engine", - "url": "git://github.com/matkuki/Nim-Impulse-Engine", + "url": "https://github.com/matkuki/Nim-Impulse-Engine", "method": "git", "tags": [ "physics", @@ -4015,7 +4015,7 @@ }, { "name": "notifications", - "url": "git://github.com/dom96/notifications", + "url": "https://github.com/dom96/notifications", "method": "git", "tags": [ "notifications", @@ -4071,7 +4071,7 @@ }, { "name": "biscuits", - "url": "git://github.com/achesak/nim-biscuits", + "url": "https://github.com/achesak/nim-biscuits", "method": "git", "tags": [ "cookie", @@ -4083,7 +4083,7 @@ }, { "name": "pari", - "url": "git://github.com/lompik/pari.nim", + "url": "https://github.com/lompik/pari.nim", "method": "git", "tags": [ "number theory", @@ -4095,7 +4095,7 @@ }, { "name": "spacenav", - "url": "git://github.com/nimious/spacenav.git", + "url": "https://github.com/nimious/spacenav.git", "method": "git", "tags": [ "binding", @@ -4113,7 +4113,7 @@ }, { "name": "isense", - "url": "git://github.com/nimious/isense.git", + "url": "https://github.com/nimious/isense.git", "method": "git", "tags": [ "binding", @@ -4132,7 +4132,7 @@ }, { "name": "libusb", - "url": "git://github.com/nimious/libusb.git", + "url": "https://github.com/nimious/libusb.git", "method": "git", "tags": [ "binding", @@ -4145,7 +4145,7 @@ }, { "name": "myo", - "url": "git://github.com/nimious/myo.git", + "url": "https://github.com/nimious/myo.git", "method": "git", "tags": [ "binding", @@ -4160,7 +4160,7 @@ }, { "name": "oculus", - "url": "git://github.com/nimious/oculus.git", + "url": "https://github.com/nimious/oculus.git", "method": "git", "tags": [ "binding", @@ -4179,7 +4179,7 @@ }, { "name": "serialport", - "url": "git://github.com/nimious/serialport.git", + "url": "https://github.com/nimious/serialport.git", "method": "git", "tags": [ "binding", @@ -4193,7 +4193,7 @@ }, { "name": "gles", - "url": "git://github.com/nimious/gles.git", + "url": "https://github.com/nimious/gles.git", "method": "git", "tags": [ "binding", @@ -4207,7 +4207,7 @@ }, { "name": "egl", - "url": "git://github.com/nimious/egl.git", + "url": "https://github.com/nimious/egl.git", "method": "git", "tags": [ "binding", @@ -4223,7 +4223,7 @@ }, { "name": "sixense", - "url": "git://github.com/nimious/sixense.git", + "url": "https://github.com/nimious/sixense.git", "method": "git", "tags": [ "binding", @@ -4238,7 +4238,7 @@ }, { "name": "listsv", - "url": "git://github.com/srwiley/listsv.git", + "url": "https://github.com/srwiley/listsv.git", "method": "git", "tags": [ "singly linked list", @@ -4250,7 +4250,7 @@ }, { "name": "kissfft", - "url": "git://github.com/m13253/nim-kissfft", + "url": "https://github.com/m13253/nim-kissfft", "method": "git", "tags": [ "fft", @@ -4263,7 +4263,7 @@ }, { "name": "nimbench", - "url": "git://github.com/ivankoster/nimbench.git", + "url": "https://github.com/ivankoster/nimbench.git", "method": "git", "tags": [ "benchmark", @@ -4276,7 +4276,7 @@ }, { "name": "nest", - "url": "git://github.com/kedean/nest.git", + "url": "https://github.com/kedean/nest.git", "method": "git", "tags": [ "library", @@ -4290,7 +4290,7 @@ }, { "name": "nimbluez", - "url": "git://github.com/Electric-Blue/NimBluez.git", + "url": "https://github.com/Electric-Blue/NimBluez.git", "method": "git", "tags": [ "bluetooth", @@ -4304,7 +4304,7 @@ }, { "name": "yaml", - "url": "git://github.com/flyx/NimYAML", + "url": "https://github.com/flyx/NimYAML", "method": "git", "tags": [ "serialization", @@ -4318,7 +4318,7 @@ }, { "name": "nimyaml", - "url": "git://github.com/flyx/NimYAML", + "url": "https://github.com/flyx/NimYAML", "method": "git", "tags": [ "serialization", @@ -4373,7 +4373,7 @@ }, { "name": "rosencrantz", - "url": "git://github.com/andreaferretti/rosencrantz", + "url": "https://github.com/andreaferretti/rosencrantz", "method": "git", "tags": [ "web", @@ -4402,7 +4402,7 @@ }, { "name": "twitter", - "url": "git://github.com/kubo39/twitter", + "url": "https://github.com/kubo39/twitter", "method": "git", "tags": [ "library", @@ -4429,7 +4429,7 @@ }, { "name": "srt", - "url": "git://github.com/achesak/nim-srt", + "url": "https://github.com/achesak/nim-srt", "method": "git", "tags": [ "srt", @@ -4442,7 +4442,7 @@ }, { "name": "subviewer", - "url": "git://github.co/achesak/nim-subviewer", + "url": "https://github.co/achesak/nim-subviewer", "method": "git", "tags": [ "subviewer", @@ -4525,7 +4525,7 @@ }, { "name": "python3", - "url": "git://github.com/matkuki/python3", + "url": "https://github.com/matkuki/python3", "method": "git", "tags": [ "python", @@ -4562,7 +4562,7 @@ }, { "name": "sophia", - "url": "git://github.com/gokr/nim-sophia", + "url": "https://github.com/gokr/nim-sophia", "method": "git", "tags": [ "library", From 4d697d9fc6a0a23fe3e448aed0ad8d5ea2a93b9a Mon Sep 17 00:00:00 2001 From: def Date: Thu, 9 Jun 2016 21:38:20 +0200 Subject: [PATCH 0267/1381] Add check for git://github.com URLs --- package_scanner.nim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package_scanner.nim b/package_scanner.nim index a41fde0..e66417f 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -10,6 +10,7 @@ # * Missing tags # * Missing description # * Missing/unknown license +# * Insecure git:// url on GitHub # # Usage: nim c -d:ssl -r package_scanner.nim # @@ -101,7 +102,7 @@ proc check(): int = echo "E: ", name, " has no URL" result.inc() - elif not canFetchNimbleRepository(name, pdata["web"]): + elif pdata.hasKey("web") and not canFetchNimbleRepository(name, pdata["web"]): result.inc() elif not pdata.hasKey("tags"): @@ -116,6 +117,10 @@ proc check(): int = echo "E: ", name, " has no license" result.inc() + elif pdata["url"].str.normalize.startsWith("git://github.com/"): + echo "E: ", name, " has an insecure git:// URL instead of https://" + result.inc() + else: # Other warnings should go here if not (pdata["license"].str in LICENSES): From cf802da4ff8fb0c3218ac51f933f57a9339d964a Mon Sep 17 00:00:00 2001 From: def Date: Tue, 14 Jun 2016 01:36:12 +0200 Subject: [PATCH 0268/1381] Add platformer --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e8265f7..b9aff11 100644 --- a/packages.json +++ b/packages.json @@ -4781,5 +4781,18 @@ "description": "Disk-based sequences", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/spills" + }, + { + "name": "platformer", + "url": "https://github.com/def-/nim-platformer", + "method": "git", + "tags": [ + "game", + "sdl", + "2d" + ], + "description": "Writing a 2D Platform Game in Nim with SDL2", + "license": "MIT", + "web": "https://github.com/def-/nim-platformer" } ] From 99b6db5c5109fb886b735ea4eb5a9cc63032c046 Mon Sep 17 00:00:00 2001 From: andri lim Date: Wed, 15 Jun 2016 10:14:35 +0700 Subject: [PATCH 0269/1381] add nimCEF package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index b9aff11..400b6ef 100644 --- a/packages.json +++ b/packages.json @@ -4794,5 +4794,20 @@ "description": "Writing a 2D Platform Game in Nim with SDL2", "license": "MIT", "web": "https://github.com/def-/nim-platformer" + }, + { + "name": "nimCEF", + "url": "https://github.com/jangko/nimCEF", + "method": "git", + "tags": [ + "chromium", + "embedded", + "framework", + "cef", + "wrapper" + ], + "description": "Nim wrapper for the Chromium Embedded Framework", + "license": "MIT", + "web": "https://github.com/jangko/nimCEF" } ] From 1249989dcacb50a20ae2659eb1f77f26344184ac Mon Sep 17 00:00:00 2001 From: Euan T Date: Thu, 16 Jun 2016 10:49:33 +0100 Subject: [PATCH 0270/1381] Add migrate package Also update licenses for my packages to BSD3. --- packages.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 400b6ef..0fa10c7 100644 --- a/packages.json +++ b/packages.json @@ -4557,7 +4557,7 @@ "openbsd" ], "description": "OpenBSDs pledge(2) for Nim.", - "license": "BSD", + "license": "BSD3", "web": "https://github.com/euantorano/pledge.nim" }, { @@ -4584,7 +4584,7 @@ "ui" ], "description": "A simple progress bar for Nim.", - "license": "BSD", + "license": "BSD3", "web": "https://github.com/euantorano/progress.nim" }, { @@ -4649,7 +4649,7 @@ "environment" ], "description": "Loads environment variables from `.env`.", - "license": "BSD", + "license": "BSD3", "web": "https://github.com/euantorano/dotenv.nim" }, { @@ -4809,5 +4809,18 @@ "description": "Nim wrapper for the Chromium Embedded Framework", "license": "MIT", "web": "https://github.com/jangko/nimCEF" + }, + { + "name": "migrate", + "url": "https://github.com/euantorano/migrate.nim", + "method": "git", + "tags": [ + "migrate", + "database", + "db" + ], + "description": "A simple database migration utility for Nim.", + "license": "BSD3", + "web": "https://github.com/euantorano/migrate.nim" } ] From 88ca1ff08c8289a2ce880f3f095090b0d501e217 Mon Sep 17 00:00:00 2001 From: def Date: Tue, 21 Jun 2016 03:16:14 +0200 Subject: [PATCH 0271/1381] Fix typo --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0fa10c7..be559ef 100644 --- a/packages.json +++ b/packages.json @@ -4442,7 +4442,7 @@ }, { "name": "subviewer", - "url": "https://github.co/achesak/nim-subviewer", + "url": "https://github.com/achesak/nim-subviewer", "method": "git", "tags": [ "subviewer", From a83b901c5551fe2378237c4a2b03670d8643d926 Mon Sep 17 00:00:00 2001 From: Joey Payne Date: Tue, 21 Jun 2016 10:13:10 -0600 Subject: [PATCH 0272/1381] Add subfield macro package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index be559ef..f979e6a 100644 --- a/packages.json +++ b/packages.json @@ -4822,5 +4822,17 @@ "description": "A simple database migration utility for Nim.", "license": "BSD3", "web": "https://github.com/euantorano/migrate.nim" + }, + { + "name": "subfield", + "url": "https://github.com/jyapayne/subfield", + "method": "git", + "tags": [ + "subfield", + "macros" + ], + "description": "Override the dot operator to access nested subfields of a Nim object.", + "license": "MIT", + "web": "https://github.com/jyapayne/subfield" } ] From 7a4b6fe9a89aa189ca5b3234f5ecff8df85a0840 Mon Sep 17 00:00:00 2001 From: Euan T Date: Wed, 22 Jun 2016 22:11:46 +0100 Subject: [PATCH 0273/1381] Add `semver` package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f979e6a..8521441 100644 --- a/packages.json +++ b/packages.json @@ -4834,5 +4834,18 @@ "description": "Override the dot operator to access nested subfields of a Nim object.", "license": "MIT", "web": "https://github.com/jyapayne/subfield" + }, + { + "name": "semver", + "url": "https://github.com/euantorano/semver.nim", + "method": "git", + "tags": [ + "semver", + "version", + "parser" + ], + "description": "Semantic versioning parser for Nim. Allows the parsing of version strings into objects and the comparing of version objects.", + "license": "BSD3", + "web": "https://github.com/euantorano/semver.nim" } ] From f9c78828ad42b377cdad26fbc993fc9bb7f5f33e Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 24 Jun 2016 15:06:37 +0100 Subject: [PATCH 0274/1381] Merges #369 manually. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 8521441..0595f6c 100644 --- a/packages.json +++ b/packages.json @@ -4847,5 +4847,17 @@ "description": "Semantic versioning parser for Nim. Allows the parsing of version strings into objects and the comparing of version objects.", "license": "BSD3", "web": "https://github.com/euantorano/semver.nim" + }, + { + "name": "ad", + "tags": [ + "calculator", + "rpn" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/subsetpark/ad", + "url": "https://github.com/subsetpark/ad", + "description": "A simple RPN calculator" } ] From 1b1d20e973a5c753f0b5799ba059c2feb2cc51d7 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Mon, 27 Jun 2016 11:38:10 +0300 Subject: [PATCH 0275/1381] jnim transfered to vegansk --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 0595f6c..da66b00 100644 --- a/packages.json +++ b/packages.json @@ -2222,7 +2222,7 @@ }, { "name": "jnim", - "url": "https://github.com/yglukhov/jnim", + "url": "https://github.com/vegansk/jnim", "method": "git", "tags": [ "library", @@ -2233,7 +2233,7 @@ ], "description": "Nim - Java bridge", "license": "MIT", - "web": "https://github.com/yglukhov/jnim" + "web": "https://github.com/vegansk/jnim" }, { "name": "nimPDF", From dbb6e4d5601c96d2e3617af4a5bcf6b9968c110a Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Tue, 28 Jun 2016 13:38:45 +0300 Subject: [PATCH 0276/1381] Changed nim-only-uuid link to yglukhov --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 0595f6c..e5a37de 100644 --- a/packages.json +++ b/packages.json @@ -2280,7 +2280,7 @@ }, { "name": "nuuid", - "url": "https://github.com/wheineman/nim-only-uuid", + "url": "https://github.com/yglukhov/nim-only-uuid", "method": "git", "tags": [ "library", @@ -2289,7 +2289,7 @@ ], "description": "A Nim source only UUID generator", "license": "MIT", - "web": "https://github.com/wheineman/nim-only-uuid" + "web": "https://github.com/yglukhov/nim-only-uuid" }, { "name": "fftw3", From cd8cbc33cfa3a5def17b69061e7f2578216b2379 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Fri, 1 Jul 2016 11:54:45 +0300 Subject: [PATCH 0277/1381] AsyncPG package --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 4d21d0f..23fab41 100644 --- a/packages.json +++ b/packages.json @@ -4859,5 +4859,22 @@ "web": "https://github.com/subsetpark/ad", "url": "https://github.com/subsetpark/ad", "description": "A simple RPN calculator" + }, + { + "name": "asyncpg", + "url": "https://github.com/cheatfate/asyncpg", + "method": "git", + "tags": [ + "async", + "database", + "postgres", + "postgresql", + "asyncdispatch", + "asynchronous", + "library" + ], + "description": "Asynchronous PostgreSQL driver for Nim Language.", + "license": "MIT", + "web": "https://github.com/cheatfate/asyncpg" } ] From 97e14eb4e2bfc0c6c42f1b3279d2aa07f851d55e Mon Sep 17 00:00:00 2001 From: Vladislav Vorobiev Date: Sun, 3 Jul 2016 20:02:14 +0300 Subject: [PATCH 0278/1381] Add registry library Add library which allows to access Windows Registry without hassle. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 23fab41..31273da 100644 --- a/packages.json +++ b/packages.json @@ -4876,5 +4876,18 @@ "description": "Asynchronous PostgreSQL driver for Nim Language.", "license": "MIT", "web": "https://github.com/cheatfate/asyncpg" + }, + { + "name": "registry", + "description": "Deal with Windows Registry from Nim.", + "tags": [ + "registry", + "windows", + "library" + ], + "url": "https://github.com/miere43/nim-registry", + "web": "https://github.com/miere43/nim-registry", + "license": "MIT", + "method": "git" } ] From 44d5634427740055cecf902d2ef93c42ebdcbd89 Mon Sep 17 00:00:00 2001 From: smallfx Date: Tue, 5 Jul 2016 09:59:26 -0700 Subject: [PATCH 0279/1381] Added luna Lua scripting library (#375) * Added luna Lua scripting library * Fix whitespace * Package rename --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 31273da..22ea718 100644 --- a/packages.json +++ b/packages.json @@ -4889,5 +4889,17 @@ "web": "https://github.com/miere43/nim-registry", "license": "MIT", "method": "git" + }, + { + "name": "luna", + "description": "Lua convenience library for nim", + "tags": [ + "lua", + "scripting" + ], + "url": "https://github.com/smallfx/luna.nim", + "web": "https://github.com/smallfx/luna.nim", + "license": "MIT", + "method": "git" } ] From 382f831f00802a8cac6054b177dac0df965d06cb Mon Sep 17 00:00:00 2001 From: Adam Chesak Date: Thu, 7 Jul 2016 10:44:14 -0500 Subject: [PATCH 0280/1381] Added qrcode (#376) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 22ea718..1434823 100644 --- a/packages.json +++ b/packages.json @@ -4901,5 +4901,18 @@ "web": "https://github.com/smallfx/luna.nim", "license": "MIT", "method": "git" + }, + { + "name": "qrcode", + "description": "module for creating and reading QR codes using http://goqr.me/", + "tags": [ + "qr", + "qrcode", + "api" + ], + "url": "https://github.com/achesak/nim-qrcode", + "web": "https://github.com/achesak/nim-qrcode", + "license": "MIT", + "method": "git" } ] From 73db28fae3155dc8d9f8747abf0453cbf5ea61f5 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Mon, 11 Jul 2016 15:06:16 +0100 Subject: [PATCH 0281/1381] Added package circleci_client (#379) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1434823..82ec5d3 100644 --- a/packages.json +++ b/packages.json @@ -4914,5 +4914,17 @@ "web": "https://github.com/achesak/nim-qrcode", "license": "MIT", "method": "git" + }, + { + "name": "circleci_client", + "tags": [ + "circleci", + "client" + ], + "method": "git", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-circleci", + "url": "https://github.com/FedericoCeratto/nim-circleci", + "description": "CircleCI API client" } ] From a7cf8dbbbf0c74700407d0097346574bbf89267c Mon Sep 17 00:00:00 2001 From: ephja Date: Thu, 14 Jul 2016 22:32:52 +0200 Subject: [PATCH 0282/1381] Add IUP (#381) * Add IUP * correct botched conflict resolution --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 82ec5d3..fbc4b15 100644 --- a/packages.json +++ b/packages.json @@ -4926,5 +4926,17 @@ "web": "https://github.com/FedericoCeratto/nim-circleci", "url": "https://github.com/FedericoCeratto/nim-circleci", "description": "CircleCI API client" + }, + { + "name": "iup", + "description": "Bindings for the IUP widget toolkit", + "tags": [ + "GUI", + "IUP" + ], + "url": "https://github.com/nim-lang/iup", + "web": "https://github.com/nim-lang/iup", + "license": "MIT", + "method": "git" } ] From f660f028547c4de8db6253a7473a61e2906f66d4 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 15 Jul 2016 22:09:32 +0100 Subject: [PATCH 0283/1381] Merge #380 manually. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index fbc4b15..f743804 100644 --- a/packages.json +++ b/packages.json @@ -4938,5 +4938,17 @@ "web": "https://github.com/nim-lang/iup", "license": "MIT", "method": "git" + }, + { + "name": "barbarus", + "tags": [ + "i18n", + "internationalization" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/cjxgm/barbarus", + "url": "https://github.com/cjxgm/barbarus", + "description": "A simple extensible i18n engine." } ] From 73678f463e1152731ff6b21a6568723afe3d1863 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 15 Jul 2016 22:11:29 +0100 Subject: [PATCH 0284/1381] Merged #382 manually. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f743804..c36c4b4 100644 --- a/packages.json +++ b/packages.json @@ -4950,5 +4950,18 @@ "web": "https://github.com/cjxgm/barbarus", "url": "https://github.com/cjxgm/barbarus", "description": "A simple extensible i18n engine." + }, + { + "name": "jsonob", + "tags": [ + "json", + "object", + "marshal" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/cjxgm/jsonob", + "url": "https://github.com/cjxgm/jsonob", + "description": "JSON / Object mapper" } ] From bc01393ed7cc1f182d1a8173509be28dbb9059a2 Mon Sep 17 00:00:00 2001 From: Vladislav Vorobiev Date: Wed, 20 Jul 2016 18:59:36 +0300 Subject: [PATCH 0285/1381] Add autome library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c36c4b4..a7c0b7c 100644 --- a/packages.json +++ b/packages.json @@ -4963,5 +4963,18 @@ "web": "https://github.com/cjxgm/jsonob", "url": "https://github.com/cjxgm/jsonob", "description": "JSON / Object mapper" + }, + { + "name": "autome", + "description": "Write GUI automation scripts with Nim", + "tags": [ + "gui", + "automation", + "windows" + ], + "license": "MIT", + "web": "https://github.com/miere43/autome", + "url": "https://github.com/miere43/autome", + "method": "git" } ] From 30667411370dca11bbea46ef0a9b9f3ab264513f Mon Sep 17 00:00:00 2001 From: roose Date: Sat, 23 Jul 2016 10:42:28 +0600 Subject: [PATCH 0286/1381] Add wox library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a7c0b7c..9e32a26 100644 --- a/packages.json +++ b/packages.json @@ -4976,5 +4976,17 @@ "web": "https://github.com/miere43/autome", "url": "https://github.com/miere43/autome", "method": "git" + }, + { + "name": "wox", + "description": "Helper library for writing Wox plugins in Nim", + "tags": [ + "wox", + "plugins" + ], + "license": "MIT", + "web": "https://github.com/roose/nim-wox", + "url": "https://github.com/roose/nim-wox", + "method": "git" } ] From a436af34cf44ac033b1b4cb9fd452515c446ee9b Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 24 Jul 2016 14:49:03 +0100 Subject: [PATCH 0287/1381] Add seccomp --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9e32a26..51637d6 100644 --- a/packages.json +++ b/packages.json @@ -4988,5 +4988,19 @@ "web": "https://github.com/roose/nim-wox", "url": "https://github.com/roose/nim-wox", "method": "git" + }, + { + "name": "seccomp", + "description": "Linux Seccomp sandbox library", + "tags": [ + "linux", + "security", + "sandbox", + "seccomp" + ], + "license": "LGPLv2.1", + "web": "https://github.com/FedericoCeratto/nim-seccomp", + "url": "https://github.com/FedericoCeratto/nim-seccomp", + "method": "git" } ] From 631d260836b0288470b87d4efac2bfcee3c9eb78 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 30 Jul 2016 20:25:18 +0200 Subject: [PATCH 0288/1381] Merge #389, #388, #387, #386 manually. Closes #389. Closes #388. Closes #387. Closes #386. --- packages.json | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/packages.json b/packages.json index 51637d6..86298a4 100644 --- a/packages.json +++ b/packages.json @@ -5002,5 +5002,55 @@ "web": "https://github.com/FedericoCeratto/nim-seccomp", "url": "https://github.com/FedericoCeratto/nim-seccomp", "method": "git" + }, + { + "name": "AntTweakBar", + "tags": [ + "gui", + "opengl", + "rendering" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/krux02/nimAntTweakBar", + "url": "https://github.com/krux02/nimAntTweakBar", + "description": "nim wrapper around the AntTweakBar c library" + }, + { + "name": "slimdown", + "tags": [ + "markdown", + "parser", + "library" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/ruivieira/nim-slimdown", + "url": "https://github.com/ruivieira/nim-slimdown", + "description": "Nim module that converts Markdown text to HTML using only regular expressions. Based on jbroadway's Slimdown." + }, + { + "name": "taglib", + "description": "TagLib Audio Meta-Data Library wrapper", + "license": "MIT", + "tags": [ + "audio", + "metadata", + "tags", + "library", + "wrapper" + ], + "url": "https://github.com/alex-laskin/nim-taglib", + "web": "https://github.com/alex-laskin/nim-taglib", + "method": "git" + }, + { + "name": "des", + "description": "3DES native library for Nim", + "tags": ["library", "encryption", "crypto"], + "license": "MIT", + "web": "https://github.com/LucaWolf/des.nim", + "url": "https://github.com/LucaWolf/des.nim", + "method": "git" } ] From 0c0a91d8243244f8deafbbfd566900c985994acf Mon Sep 17 00:00:00 2001 From: "Cory Null(Noll) Crimmins - Golden" Date: Wed, 3 Aug 2016 12:34:30 -0600 Subject: [PATCH 0289/1381] Added BGFX wrapper (#391) * Added BGFX * Revert "Added BGFX" This reverts commit 8d3ad78e03b5b379408ea26c3bd22d2f4023bd0d. * Added BGFX Added the entry to the "end" of the file. --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 86298a4..5e07953 100644 --- a/packages.json +++ b/packages.json @@ -5052,5 +5052,21 @@ "web": "https://github.com/LucaWolf/des.nim", "url": "https://github.com/LucaWolf/des.nim", "method": "git" + }, + { + "name": "bgfx", + "url": "https://github.com/Halsys/nim-bgfx", + "method": "git", + "tags": [ + "wrapper", + "media", + "graphics", + "3d", + "rendering", + "opengl" + ], + "description": "BGFX wrapper for the nim programming language.", + "license": "BSD2", + "web": "https://github.com/Halsys/nim-bgfx" } ] From 3d5fb76b9c6dfa3d45500826961393ce65d420c2 Mon Sep 17 00:00:00 2001 From: Matthew Bennett-Lovesey Date: Tue, 9 Aug 2016 22:51:29 +0100 Subject: [PATCH 0290/1381] Add JsonBuilder (without using Nimble's broken push) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5e07953..03259c1 100644 --- a/packages.json +++ b/packages.json @@ -5068,5 +5068,18 @@ "description": "BGFX wrapper for the nim programming language.", "license": "BSD2", "web": "https://github.com/Halsys/nim-bgfx" + }, + { + "name": "json_builder", + "tags": [ + "json", + "generator", + "builder" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/undecided/json_builder", + "url": "https://github.com/undecided/json_builder", + "description": "Easy and fast generator for valid json in nim" } ] From c8f39fa2eedde4cdc6b309df3abff8d7f5baaa15 Mon Sep 17 00:00:00 2001 From: jlp765 Date: Fri, 12 Aug 2016 16:28:46 +1000 Subject: [PATCH 0291/1381] Add mapbits package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 03259c1..dc76e44 100644 --- a/packages.json +++ b/packages.json @@ -5081,5 +5081,20 @@ "web": "https://github.com/undecided/json_builder", "url": "https://github.com/undecided/json_builder", "description": "Easy and fast generator for valid json in nim" + }, + { + "name": "mapbits", + "tags": [ + "map", + "bits", + "byte", + "word", + "binary" + ], + "method": "git", + "license": "MIT", + "description": "Access bit mapped portions of bytes in binary data as int variables", + "web": "https://github.com/jlp765/mapbits", + "url": "https://github.com/jlp765/mapbits" } ] From 4e0fc959fb2d8556ef7272bda5271c3959a182f6 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 15 Aug 2016 14:32:46 +0300 Subject: [PATCH 0292/1381] added faststack package (#398) * added faststack package * fixed faststack entry --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index dc76e44..e13fed8 100644 --- a/packages.json +++ b/packages.json @@ -5096,5 +5096,14 @@ "description": "Access bit mapped portions of bytes in binary data as int variables", "web": "https://github.com/jlp765/mapbits", "url": "https://github.com/jlp765/mapbits" + }, + { + "name": "faststack", + "tags": ["collection"], + "method": "git", + "license": "MIT", + "description": "Dynamically resizable data structure optimized for fast iteration.", + "web": "https://github.com/Vladar4/FastStack", + "url": "https://github.com/Vladar4/FastStack" } ] From 62fae866880e68882c17dfb20123a4a66b5a9ffd Mon Sep 17 00:00:00 2001 From: achesak Date: Wed, 17 Aug 2016 17:50:48 -0400 Subject: [PATCH 0293/1381] Adds gpx and itn. --- packages.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/packages.json b/packages.json index e13fed8..ed9e7de 100644 --- a/packages.json +++ b/packages.json @@ -5105,5 +5105,33 @@ "description": "Dynamically resizable data structure optimized for fast iteration.", "web": "https://github.com/Vladar4/FastStack", "url": "https://github.com/Vladar4/FastStack" + }, + { + "name": "gpx", + "tags": [ + "GPX", + "GPS", + "waypoint", + "route" + ], + "method": "git", + "license": "MIT", + "description": "Nim module for parsing GPX (GPS Exchange format) files", + "web": "https://github.com/achesak/nim-gpx", + "url": "https://github.com/achesak/nim-gpx" + }, + { + "name": "itn", + "tags": [ + "GPS", + "intinerary", + "tomtom", + "ITN" + ], + "method": "git", + "license": "MIT", + "description": "Nim module for parsing ITN (TomTom intinerary) files", + "web": "https://github.com/achesak/nim-itn", + "url": "https://github.com/achesak/nim-itn" } ] From 59cdd4272fcb8c3e2310a3828d2ec1eafe602b06 Mon Sep 17 00:00:00 2001 From: achesak Date: Sun, 28 Aug 2016 22:52:00 -0400 Subject: [PATCH 0294/1381] Remove 'nim' and 'nimrod' tags. --- packages.json | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/packages.json b/packages.json index ed9e7de..2cc80cd 100644 --- a/packages.json +++ b/packages.json @@ -313,8 +313,7 @@ "app", "binary", "ide", - "gtk", - "nimrod" + "gtk" ], "description": "A Nim IDE.", "license": "GPLv2", @@ -329,8 +328,7 @@ "binary", "tool", "header", - "C", - "nimrod" + "C" ], "description": "c2nim is a tool to translate Ansi C code to Nim.", "license": "MIT", @@ -344,8 +342,7 @@ "app", "binary", "tool", - "Pascal", - "nimrod" + "Pascal" ], "description": "pas2nim is a tool to translate Pascal code to Nim.", "license": "MIT", @@ -1160,8 +1157,7 @@ "binary", "tool", "installation", - "generator", - "nim" + "generator" ], "description": "tool to generate installers for Nim programs", "license": "MIT", @@ -1757,8 +1753,7 @@ "url": "https://github.com/ziotom78/parsetoml.git", "method": "git", "tags": [ - "library", - "nim" + "library" ], "description": "Library for parsing TOML files.", "license": "MIT", @@ -1769,8 +1764,7 @@ "url": "https://github.com/Araq/Nim.git", "method": "git", "tags": [ - "library", - "nim" + "library" ], "description": "Compiler package providing the compiler sources as a library.", "license": "MIT", @@ -1899,8 +1893,7 @@ "app", "suggest", "compiler", - "autocomplete", - "nim" + "autocomplete" ], "description": "Tool for providing auto completion data for Nim source code.", "license": "MIT", @@ -2297,7 +2290,6 @@ "method": "git", "tags": [ "library", - "nim", "math", "fft" ], @@ -3372,7 +3364,6 @@ "tags": [ "extension", "database", - "Nim", "convenience", "db", "mysql", @@ -3510,8 +3501,7 @@ "interactive", "compiler", "code", - "language", - "Nim" + "language" ], "description": "tnim is a Nim REPL - an interactive sandbox for testing Nim code", "license": "MIT", @@ -3662,7 +3652,6 @@ "tags": [ "webapp", "execution", - "nim", "code", "sandbox" ], From 77d476451b4de4b41151b3a316b1aa06b3d8d399 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Mon, 29 Aug 2016 11:59:36 +0300 Subject: [PATCH 0295/1381] Changed license of nimx to MIT --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ed9e7de..5d326fe 100644 --- a/packages.json +++ b/packages.json @@ -2751,7 +2751,7 @@ "library" ], "description": "Cross-platform GUI framework", - "license": "BSD", + "license": "MIT", "web": "https://github.com/yglukhov/nimx" }, { From 039e319c7f3ecbab27facab29d4ea3a9609e320f Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 30 Aug 2016 19:30:27 +0200 Subject: [PATCH 0296/1381] Merges #392 manually. --- packages.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/packages.json b/packages.json index be738fa..d157c18 100644 --- a/packages.json +++ b/packages.json @@ -5122,5 +5122,26 @@ "description": "Nim module for parsing ITN (TomTom intinerary) files", "web": "https://github.com/achesak/nim-itn", "url": "https://github.com/achesak/nim-itn" + }, + { + "name": "foliant", + "tags": [ + "foliant", + "docs", + "pdf", + "docx", + "word", + "latex", + "tex", + "pandoc", + "markdown", + "md", + "restream" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/foliant-docs/foliant-nim", + "url": "https://github.com/foliant-docs/foliant-nim", + "description": "Documentation generator that produces pdf and docx from Markdown. Uses Pandoc and LaTeX behind the scenes." } ] From 9b831bf330ccc2a7a8e2cba9d346c2557d6c8f2a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 30 Aug 2016 19:31:29 +0200 Subject: [PATCH 0297/1381] Merges #402 manually. --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index d157c18..8084705 100644 --- a/packages.json +++ b/packages.json @@ -5143,5 +5143,16 @@ "web": "https://github.com/foliant-docs/foliant-nim", "url": "https://github.com/foliant-docs/foliant-nim", "description": "Documentation generator that produces pdf and docx from Markdown. Uses Pandoc and LaTeX behind the scenes." + }, + { + "name": "gemf", + "url": "https://bitbucket.org/abudden/gemf.nim", + "method": "hg", + "license": "MIT", + "description": "Library for reading GEMF map tile stores", + "web": "http://www.cgtk.co.uk/gemf", + "tags": [ + "maps", "gemf", "parser" + ] } ] From 7ed250ddb458e2ba7d4fa6c11b68539fa3bdd0fe Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 30 Aug 2016 19:32:15 +0200 Subject: [PATCH 0298/1381] Removes tabs. --- packages.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/packages.json b/packages.json index 8084705..4b22fe5 100644 --- a/packages.json +++ b/packages.json @@ -5043,20 +5043,20 @@ "method": "git" }, { - "name": "bgfx", - "url": "https://github.com/Halsys/nim-bgfx", - "method": "git", - "tags": [ - "wrapper", - "media", - "graphics", - "3d", - "rendering", - "opengl" - ], - "description": "BGFX wrapper for the nim programming language.", - "license": "BSD2", - "web": "https://github.com/Halsys/nim-bgfx" + "name": "bgfx", + "url": "https://github.com/Halsys/nim-bgfx", + "method": "git", + "tags": [ + "wrapper", + "media", + "graphics", + "3d", + "rendering", + "opengl" + ], + "description": "BGFX wrapper for the nim programming language.", + "license": "BSD2", + "web": "https://github.com/Halsys/nim-bgfx" }, { "name": "json_builder", From e65efe8fddb79ae3b8714f5b6dfd861dcc735caf Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 30 Aug 2016 19:33:51 +0200 Subject: [PATCH 0299/1381] Merge #403 manually. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4b22fe5..789e816 100644 --- a/packages.json +++ b/packages.json @@ -5154,5 +5154,20 @@ "tags": [ "maps", "gemf", "parser" ] + }, + { + "name": "Remotery", + "url": "https://github.com/Halsys/Nim-Remotery", + "method": "git", + "tags": [ + "wrapper", + "opengl", + "direct3d", + "cuda", + "profiler" + ], + "description": "Nim wrapper for (and with) Celtoys's Remotery", + "license": "Apache License 2.0", + "web": "https://github.com/Halsys/Nim-Remotery" } ] From 16a92b17ce88844cad81a638eadf0a13794c11ae Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 30 Aug 2016 19:34:48 +0200 Subject: [PATCH 0300/1381] Add picohttpparser & microasynchttpserver. Merges #404 manually. --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 789e816..a721f87 100644 --- a/packages.json +++ b/packages.json @@ -5169,5 +5169,31 @@ "description": "Nim wrapper for (and with) Celtoys's Remotery", "license": "Apache License 2.0", "web": "https://github.com/Halsys/Nim-Remotery" + }, + { + "name": "picohttpparser", + "tags": [ + "web", + "http" + ], + "method": "git", + "license": "MIT", + "description": "Bindings for picohttpparser.", + "web": "https://github.com/philip-wernersbach/nim-picohttpparser", + "url": "https://github.com/philip-wernersbach/nim-picohttpparser" + }, + { + "name": "microasynchttpserver", + "tags": [ + "web", + "http", + "async", + "server" + ], + "method": "git", + "license": "MIT", + "description": "A thin asynchronous HTTP server library, API compatible with Nim\'s built-in asynchttpserver.", + "web": "https://github.com/philip-wernersbach/microasynchttpserver", + "url": "https://github.com/philip-wernersbach/microasynchttpserver" } ] From 000c2aab872087d9c59ab2ebb6f407d5a80c30e4 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 30 Aug 2016 19:36:19 +0200 Subject: [PATCH 0301/1381] Adds react.nim. Merges #405 manually. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index a721f87..7873fb3 100644 --- a/packages.json +++ b/packages.json @@ -5195,5 +5195,20 @@ "description": "A thin asynchronous HTTP server library, API compatible with Nim\'s built-in asynchttpserver.", "web": "https://github.com/philip-wernersbach/microasynchttpserver", "url": "https://github.com/philip-wernersbach/microasynchttpserver" + }, + { + "name": "react", + "url": "https://github.com/andreaferretti/react.nim", + "method": "git", + "tags": [ + "js", + "react", + "frontend", + "ui", + "single page application" + ], + "description": "React.js bindings for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/andreaferretti/react.nim" } ] From 8813193dbee8c17a3de0a1da22c3353f825c0d0a Mon Sep 17 00:00:00 2001 From: flyx Date: Wed, 31 Aug 2016 08:33:18 +0200 Subject: [PATCH 0302/1381] JSON does not have an escape sequence for ' --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 7873fb3..ece1aa2 100644 --- a/packages.json +++ b/packages.json @@ -5192,7 +5192,7 @@ ], "method": "git", "license": "MIT", - "description": "A thin asynchronous HTTP server library, API compatible with Nim\'s built-in asynchttpserver.", + "description": "A thin asynchronous HTTP server library, API compatible with Nim's built-in asynchttpserver.", "web": "https://github.com/philip-wernersbach/microasynchttpserver", "url": "https://github.com/philip-wernersbach/microasynchttpserver" }, From cdefdd21f83ae4513e9ab72083a5e4d4e1af2de1 Mon Sep 17 00:00:00 2001 From: CORDEA Date: Sun, 4 Sep 2016 09:38:38 +0900 Subject: [PATCH 0303/1381] Add oauth package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ece1aa2..fec3cf5 100644 --- a/packages.json +++ b/packages.json @@ -5210,5 +5210,19 @@ "description": "React.js bindings for Nim", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/react.nim" + }, + { + "name": "oauth", + "url": "https://github.com/CORDEA/oauth", + "method": "git", + "tags": [ + "library", + "oauth", + "oauth2", + "authorization" + ], + "description": "OAuth library for nim", + "license": "Apache License 2.0", + "web": "http://cordea.github.io/oauth" } ] From a361e337121a4691f61c9fe0b8b073e0654d12b7 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Mon, 12 Sep 2016 11:23:52 +0700 Subject: [PATCH 0304/1381] Fix documentation url for nimboost library --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fec3cf5..5ad4e40 100644 --- a/packages.json +++ b/packages.json @@ -4498,7 +4498,7 @@ ], "description": "Additions to the Nim's standard library, like boost for C++", "license": "MIT", - "web": "https://github.com/vegansk/nimboost" + "web": "http://vegansk.github.io/nimboost/" }, { "name": "asyncdocker", From 97e73be7f5276790fc9de98d79be2ff448ac6d58 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 15 Sep 2016 13:16:25 +0300 Subject: [PATCH 0305/1381] Added jsbind lib --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5ad4e40..33bba2f 100644 --- a/packages.json +++ b/packages.json @@ -5224,5 +5224,18 @@ "description": "OAuth library for nim", "license": "Apache License 2.0", "web": "http://cordea.github.io/oauth" + }, + { + "name": "jsbind", + "url": "https://github.com/yglukhov/jsbind", + "method": "git", + "tags": [ + "bindings", + "emscripten", + "javascript" + ], + "description": "Define bindings to JavaScript and Emscripten", + "license": "MIT", + "web": "https://github.com/yglukhov/jsbind" } ] From 4b0c5385e262e37fdb30433638cc29a18864069d Mon Sep 17 00:00:00 2001 From: Ruslan Mustakov Date: Thu, 15 Sep 2016 20:41:10 +0700 Subject: [PATCH 0306/1381] Added uuids and isaac libraries --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index 33bba2f..1122360 100644 --- a/packages.json +++ b/packages.json @@ -5237,5 +5237,32 @@ "description": "Define bindings to JavaScript and Emscripten", "license": "MIT", "web": "https://github.com/yglukhov/jsbind" + }, + { + "name": "uuids", + "url": "https://github.com/pragmagic/uuids/", + "method": "git", + "tags": [ + "library", + "uuid", + "id" + ], + "description": "UUID library for Nim", + "license": "MIT", + "web": "https://github.com/pragmagic/uuids/" + }, + { + "name": "isaac", + "url": "https://github.com/pragmagic/isaac/", + "method": "git", + "tags": [ + "library", + "algorithms", + "random", + "crypto" + ], + "description": "ISAAC PRNG implementation on Nim", + "license": "MIT", + "web": "https://github.com/pragmagic/isaac/" } ] From dc8b3d31b96d3caaf126b57d051a3cfecadf0c2a Mon Sep 17 00:00:00 2001 From: "Cory Null(Noll) Crimmins - Golden" Date: Fri, 16 Sep 2016 06:58:56 -0600 Subject: [PATCH 0307/1381] Added SDF.nim --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 1122360..c6878cd 100644 --- a/packages.json +++ b/packages.json @@ -5264,5 +5264,22 @@ "description": "ISAAC PRNG implementation on Nim", "license": "MIT", "web": "https://github.com/pragmagic/isaac/" + }, + { + "name": "SDF.nim", + "url": "https://github.com/Halsys/SDF.nim", + "method": "git", + "tags": [ + "sdf", + "text", + "contour", + "texture", + "signed", + "distance", + "transform" + ], + "description": "Signed Distance Field builder for contour texturing in Nim", + "license": "MIT", + "web": "https://github.com/Halsys/SDF.nim" } ] From 95a740851e2f3d3e490a8612f8d54fc3f3ac8a0d Mon Sep 17 00:00:00 2001 From: "Cory Null(Noll) Crimmins - Golden" Date: Fri, 16 Sep 2016 09:26:22 -0600 Subject: [PATCH 0308/1381] Removed ".nim" from name. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c6878cd..ea4afa9 100644 --- a/packages.json +++ b/packages.json @@ -5266,7 +5266,7 @@ "web": "https://github.com/pragmagic/isaac/" }, { - "name": "SDF.nim", + "name": "SDF", "url": "https://github.com/Halsys/SDF.nim", "method": "git", "tags": [ From aa94adce9505f6a90caf0b833612c869a19a3c79 Mon Sep 17 00:00:00 2001 From: Silvio T Date: Mon, 19 Sep 2016 22:12:09 +0200 Subject: [PATCH 0309/1381] Add webgl wrapper --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index ea4afa9..c82d650 100644 --- a/packages.json +++ b/packages.json @@ -5281,5 +5281,22 @@ "description": "Signed Distance Field builder for contour texturing in Nim", "license": "MIT", "web": "https://github.com/Halsys/SDF.nim" + }, + { + "name": "WebGL", + "url": "https://github.com/stisa/webgl", + "method": "git", + "tags": [ + "webgl", + "graphic", + "js", + "javascript", + "wrapper", + "3D", + "2D" + ], + "description": "Experimental wrapper to webgl for Nim", + "license": "MIT", + "web": "http://stisa.space/webgl/" } ] From c1e77741fb18fb48b5b72dbdffa788758c0f1efe Mon Sep 17 00:00:00 2001 From: matkuki Date: Fri, 23 Sep 2016 16:10:28 +0200 Subject: [PATCH 0310/1381] Added chipmunk7_demos package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c82d650..0984946 100644 --- a/packages.json +++ b/packages.json @@ -209,6 +209,19 @@ "license": "MIT", "web": "https://github.com/fowlmouth/nimrod-chipmunk" }, + { + "name": "chipmunk7_demos", + "url": "https://github.com/matkuki/chipmunk7_demos/", + "method": "git", + "tags": [ + "demos", + "physics", + "game" + ], + "description": "Chipmunk7 demos for Nim", + "license": "MIT", + "web": "https://github.com/matkuki/chipmunk7_demos" + }, { "name": "nim-glfw", "url": "https://github.com/EXetoC/nim-glfw/", From 46753279dcf3b376cc1cbdccd6ed594ff3ad62fc Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Tue, 4 Oct 2016 02:38:51 +0200 Subject: [PATCH 0311/1381] Added gamelib --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 0984946..c302713 100644 --- a/packages.json +++ b/packages.json @@ -842,6 +842,19 @@ "description": "Wrapper for SDL 2.x", "license": "MIT", "web": "https://github.com/nim-lang/sdl2" + }, + { + "name": "gamelib", + "url": "https://github.com/PMunch/SDLGamelib", + "method": "git", + "tags": [ + "sdl", + "game", + "library" + ], + "description": "A library of functions to make creating games using Nim and SDL2 easier. This does not intend to be a full blown engine and tries to keep all the components loosly coupled so that individual parts can be used separately.", + "license": "MIT", + "web": "https://github.com/PMunch/SDLGamelib" }, { "name": "sdl2_nim", From ddbb34141503e451f9a6f9d321f269e6cfe7ce4d Mon Sep 17 00:00:00 2001 From: PMunch Date: Tue, 4 Oct 2016 16:31:11 +0200 Subject: [PATCH 0312/1381] Added SDL gamelib (#416) * Added gamelib * Fixed spelling and changes tabs to spaces --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 0984946..91f1a52 100644 --- a/packages.json +++ b/packages.json @@ -843,6 +843,19 @@ "license": "MIT", "web": "https://github.com/nim-lang/sdl2" }, + { + "name": "gamelib", + "url": "https://github.com/PMunch/SDLGamelib", + "method": "git", + "tags": [ + "sdl", + "game", + "library" + ], + "description": "A library of functions to make creating games using Nim and SDL2 easier. This does not intend to be a full blown engine and tries to keep all the components loosely coupled so that individual parts can be used separately.", + "license": "MIT", + "web": "https://github.com/PMunch/SDLGamelib" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 65463a771cef4fe7e6c1e6202d521c9fc3886b7e Mon Sep 17 00:00:00 2001 From: achesak Date: Wed, 12 Oct 2016 14:32:59 -0400 Subject: [PATCH 0313/1381] Added fileinput --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 91f1a52..b9de5de 100644 --- a/packages.json +++ b/packages.json @@ -5324,5 +5324,18 @@ "description": "Experimental wrapper to webgl for Nim", "license": "MIT", "web": "http://stisa.space/webgl/" + }, + { + "name": "fileinput", + "url": "https://github.com/achesak/nim-fileinput", + "method": "git", + "tags": [ + "file", + "io", + "input" + ], + "description": "iterate through files and lines", + "license": "MIT", + "web": "https://github.com/achesak/nim-fileinput" } ] From e5b5797c6968695f90c19c3b3e394d05106ec3a0 Mon Sep 17 00:00:00 2001 From: Dmitry Polienko Date: Sun, 23 Oct 2016 23:33:54 +0700 Subject: [PATCH 0314/1381] Added package classy --- packages.json | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/packages.json b/packages.json index b9de5de..4c57bd0 100644 --- a/packages.json +++ b/packages.json @@ -5062,7 +5062,11 @@ { "name": "des", "description": "3DES native library for Nim", - "tags": ["library", "encryption", "crypto"], + "tags": [ + "library", + "encryption", + "crypto" + ], "license": "MIT", "web": "https://github.com/LucaWolf/des.nim", "url": "https://github.com/LucaWolf/des.nim", @@ -5114,7 +5118,9 @@ }, { "name": "faststack", - "tags": ["collection"], + "tags": [ + "collection" + ], "method": "git", "license": "MIT", "description": "Dynamically resizable data structure optimized for fast iteration.", @@ -5178,7 +5184,9 @@ "description": "Library for reading GEMF map tile stores", "web": "http://www.cgtk.co.uk/gemf", "tags": [ - "maps", "gemf", "parser" + "maps", + "gemf", + "parser" ] }, { @@ -5301,8 +5309,8 @@ "contour", "texture", "signed", - "distance", - "transform" + "distance", + "transform" ], "description": "Signed Distance Field builder for contour texturing in Nim", "license": "MIT", @@ -5337,5 +5345,18 @@ "description": "iterate through files and lines", "license": "MIT", "web": "https://github.com/achesak/nim-fileinput" + }, + { + "name": "classy", + "url": "https://github.com/nigredo-tori/classy", + "method": "git", + "tags": [ + "library", + "typeclasses", + "macros" + ], + "description": "typeclasses for Nim", + "license": "Unlicense", + "web": "https://github.com/nigredo-tori/classy" } ] From 83a0d9be6118459674c490c3bbe86a3aa326f0e3 Mon Sep 17 00:00:00 2001 From: Fabio Cevasco Date: Sun, 23 Oct 2016 20:45:55 +0200 Subject: [PATCH 0315/1381] Added MiNiM package. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4c57bd0..8e19dd6 100644 --- a/packages.json +++ b/packages.json @@ -5358,5 +5358,18 @@ "description": "typeclasses for Nim", "license": "Unlicense", "web": "https://github.com/nigredo-tori/classy" + }, + { + "name": "MiNiM", + "url": "https://github.com/h3rald/minim", + "method": "git", + "tags": [ + "concatenative", + "language", + "shell" + ], + "description": "A tiny concatenative programming language and shell.", + "license": "MIT", + "web": "https://h3rald.com/minim" } ] From 869a32736034a7a4b243e19050d412e634f7fcd4 Mon Sep 17 00:00:00 2001 From: Radu Oana Date: Tue, 25 Oct 2016 09:32:44 -0400 Subject: [PATCH 0316/1381] Add boneGPIO --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8e19dd6..712ceb3 100644 --- a/packages.json +++ b/packages.json @@ -5371,5 +5371,18 @@ "description": "A tiny concatenative programming language and shell.", "license": "MIT", "web": "https://h3rald.com/minim" + }, + { + "name": "boneGPIO", + "url": "https://github.com/xyz32/boneGPIO", + "method": "git", + "tags": [ + "library", + "GPIO", + "BeagleBone" + ], + "description": "A low level GPIO library for the BeagleBone board family", + "license": "MIT", + "web": "https://vimeo.com/134834958" } ] From b3795fed57ed5371427e9c3c31692fd2e7d3d284 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 29 Oct 2016 17:46:19 +0200 Subject: [PATCH 0317/1381] Add UI package. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 712ceb3..d652ca2 100644 --- a/packages.json +++ b/packages.json @@ -5384,5 +5384,19 @@ "description": "A low level GPIO library for the BeagleBone board family", "license": "MIT", "web": "https://vimeo.com/134834958" + }, + { + "name": "ui", + "url": "https://github.com/nim-lang/ui", + "method": "git", + "tags": [ + "library", + "GUI", + "libui", + "toolkit" + ], + "description": "A wrapper for libui", + "license": "MIT", + "web": "https://github.com/nim-lang/ui" } ] From 5bf046c2f510c676b296aec701640bbe3b4846bc Mon Sep 17 00:00:00 2001 From: konqoro Date: Mon, 31 Oct 2016 18:32:50 +0200 Subject: [PATCH 0318/1381] Add fractions package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d652ca2..b4f4d95 100644 --- a/packages.json +++ b/packages.json @@ -5398,5 +5398,19 @@ "description": "A wrapper for libui", "license": "MIT", "web": "https://github.com/nim-lang/ui" + }, + { + "name": "fractions", + "url": "https://github.com/konqoro/fractions", + "method": "git", + "tags": [ + "library", + "rationals", + "arithmetic", + "tuple" + ], + "description": "Implements rational number arithmetic", + "license": "MIT", + "web": "https://github.com/konqoro/fractions" } ] From 79de16a6acfb56dd1ab951bde9a6c21cfefd5bb1 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 31 Oct 2016 20:18:30 +0100 Subject: [PATCH 0319/1381] Fixes travis build and adds some new licenses to scanner. --- package_scanner.nim | 6 ++++-- packages.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/package_scanner.nim b/package_scanner.nim index e66417f..7d16e0b 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -30,6 +30,7 @@ const "Allegro 4 Giftware", "Apache License 2.0", "BSD", + "BSD2", "BSD3", "CC0", "GPL", @@ -43,7 +44,8 @@ const "WTFPL", "libpng", "zlib", - "ISC" + "ISC", + "Unlicense" ] VCS_TYPES = @["git", "hg"] @@ -59,7 +61,7 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = url = urlJson.str try: - discard getContent(url, timeout=5000) + discard getContent(url, timeout=10000) except HttpRequestError, TimeoutError: echo "E: ", name, ": unable to fetch repository ", url, " ", getCurrentExceptionMsg() diff --git a/packages.json b/packages.json index b4f4d95..c34d682 100644 --- a/packages.json +++ b/packages.json @@ -5383,7 +5383,7 @@ ], "description": "A low level GPIO library for the BeagleBone board family", "license": "MIT", - "web": "https://vimeo.com/134834958" + "web": "https://github.com/xyz32/boneGPIO" }, { "name": "ui", From 56b2b2607b718ca21f3b4fbdb2e0813eff4487d7 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 8 Nov 2016 18:02:51 +0000 Subject: [PATCH 0320/1381] Added package mmgeoip --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index c34d682..f155359 100644 --- a/packages.json +++ b/packages.json @@ -5412,5 +5412,16 @@ "description": "Implements rational number arithmetic", "license": "MIT", "web": "https://github.com/konqoro/fractions" + }, + { + "name": "mmgeoip", + "url": "https://github.com/FedericoCeratto/nim-mmgeoip", + "method": "git", + "tags": [ + "geoip" + ], + "description": "MaxMind GeoIP library", + "license": "LGPLv2.1", + "web": "https://github.com/FedericoCeratto/nim-mmgeoip" } ] From 1edb97cde4fd0192c3f872b3af110026bccfff6d Mon Sep 17 00:00:00 2001 From: achesak Date: Thu, 10 Nov 2016 11:24:22 -0500 Subject: [PATCH 0321/1381] Rename geoip --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index f155359..d1eba24 100644 --- a/packages.json +++ b/packages.json @@ -3547,8 +3547,8 @@ "web": "https://github.com/achesak/nim-ris" }, { - "name": "geoip", - "url": "https://github.com/achesak/nim-geoip", + "name": "freegeoip", + "url": "https://github.com/achesak/nim-freegeoip", "method": "git", "tags": [ "IP", @@ -3557,7 +3557,7 @@ ], "description": "Retrieve info about a location from an IP address", "license": "MIT", - "web": "https://github.com/achesak/nim-geoip" + "web": "https://github.com/achesak/nim-freegeoip" }, { "name": "nimroutine", From adb0fa2bd4ed7de5b645c956d884c7d9ef0548f1 Mon Sep 17 00:00:00 2001 From: achesak Date: Fri, 11 Nov 2016 14:15:33 -0500 Subject: [PATCH 0322/1381] Add freegeoip as new entry --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d1eba24..ddfb381 100644 --- a/packages.json +++ b/packages.json @@ -3546,6 +3546,20 @@ "license": "MIT", "web": "https://github.com/achesak/nim-ris" }, + { + "name": "geoip", + "url": "https://github.com/achesak/nim-geoip", + "method": "git", + "tags": [ + "IP", + "address", + "location", + "geolocation" + ], + "description": "Retrieve info about a location from an IP address", + "license": "MIT", + "web": "https://github.com/achesak/nim-geoip" + }, { "name": "freegeoip", "url": "https://github.com/achesak/nim-freegeoip", @@ -3553,7 +3567,8 @@ "tags": [ "IP", "address", - "location" + "location", + "geolocation" ], "description": "Retrieve info about a location from an IP address", "license": "MIT", From 0924901fbbe5156791a089a5a070412d28771499 Mon Sep 17 00:00:00 2001 From: Iwan Budi Kusnanto Date: Fri, 18 Nov 2016 11:26:49 +0700 Subject: [PATCH 0323/1381] Add libjwt Bindings for libjwt --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ddfb381..e627eec 100644 --- a/packages.json +++ b/packages.json @@ -5438,5 +5438,17 @@ "description": "MaxMind GeoIP library", "license": "LGPLv2.1", "web": "https://github.com/FedericoCeratto/nim-mmgeoip" + }, + { + "name": "libjwt", + "url": "https://github.com/nimscale/nim-libjwt", + "method": "git", + "tags": [ + "jwt", + "libjwt" + ], + "description": "Bindings for libjwt", + "license": "LGPLv2.1", + "web": "https://github.com/nimscale/nim-libjwt" } ] From e93485dcca214ee008db951ccdf92bb5653ddbf7 Mon Sep 17 00:00:00 2001 From: Rostyslav Ivasiv Date: Thu, 17 Nov 2016 13:14:54 -0800 Subject: [PATCH 0324/1381] Exdend with forestDB. Base is under https://github.com/couchbase/forestdb. Nim bind is under: https://github.com/nimscale/forestdb. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index e627eec..f40d353 100644 --- a/packages.json +++ b/packages.json @@ -5450,5 +5450,20 @@ "description": "Bindings for libjwt", "license": "LGPLv2.1", "web": "https://github.com/nimscale/nim-libjwt" + }, + { + "name": "forestdb", + "url": "https://github.com/nimscale/forestdb", + "method": "git", + "tags": [ + "library", + "bTree", + "HB+-Trie", + "db", + "forestdb" + ], + "description": "ForestDB is fast key-value storage engine that is based on a Hierarchical B+-Tree based Trie, or HB+-Trie.", + "license": "Apache License 2.0", + "web": "https://github.com/nimscale/forestdb" } ] From 4dead921a552be5c8d6294f4aa78ae1b400bdd79 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Fri, 25 Nov 2016 18:05:38 +0000 Subject: [PATCH 0325/1381] Add nimbox, a simple termbox wrapper --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index f40d353..031d41b 100644 --- a/packages.json +++ b/packages.json @@ -5465,5 +5465,22 @@ "description": "ForestDB is fast key-value storage engine that is based on a Hierarchical B+-Tree based Trie, or HB+-Trie.", "license": "Apache License 2.0", "web": "https://github.com/nimscale/forestdb" + }, + { + "name": "nimbox", + "url": "https://notabug.org/vktec/nimbox.git", + "method": "git", + "tags": [ + "library", + "wrapper", + "termbox", + "commandline", + "ui", + "tui", + "gui" + ], + "description": "A Rustbox-inspired termbox wrapper", + "license": "GPLv3", + "web": "https://notabug.org/vktec/nimbox" } ] From ce69bb5d76c0253966d088613036e70216cf0b87 Mon Sep 17 00:00:00 2001 From: John Scillieri Date: Fri, 25 Nov 2016 14:39:43 -0500 Subject: [PATCH 0326/1381] Update packages.json add psutil package --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index f40d353..20c0edd 100644 --- a/packages.json +++ b/packages.json @@ -5465,5 +5465,21 @@ "description": "ForestDB is fast key-value storage engine that is based on a Hierarchical B+-Tree based Trie, or HB+-Trie.", "license": "Apache License 2.0", "web": "https://github.com/nimscale/forestdb" + }, + { + "name": "psutil", + "url": "https://github.com/johnscillieri/psutil-nim", + "method": "git", + "tags": [ + "psutil", + "process", + "network", + "system", + "disk", + "cpu" + ], + "description": "psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network)", + "license": "BSD", + "web": "https://github.com/johnscillieri/psutil-nim" } ] From 912fe92fbf9bb9448687b04345cc7758b0f10cf8 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Sun, 27 Nov 2016 01:19:46 +0000 Subject: [PATCH 0327/1381] Add gapbuffer --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 873e6d6..2178f47 100644 --- a/packages.json +++ b/packages.json @@ -5498,5 +5498,20 @@ "description": "psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network)", "license": "BSD", "web": "https://github.com/johnscillieri/psutil-nim" + }, + { + "name": "gapbuffer", + "url": "https://notabug.org/vktec/nim-gapbuffer.git", + "method": "git", + "tags": [ + "buffer", + "seq", + "sequence", + "string", + "gap buffer" + ], + "description": "A simple gap buffer implementation", + "license": "MIT", + "web": "https://notabug.org/vktec/nim-gapbuffer" } ] From b1ced352a024986a82d6d992e90775fd99a1d64f Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Sun, 27 Nov 2016 01:25:21 +0000 Subject: [PATCH 0328/1381] Fix license for nimbox --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 873e6d6..3e7ede2 100644 --- a/packages.json +++ b/packages.json @@ -5480,7 +5480,7 @@ "gui" ], "description": "A Rustbox-inspired termbox wrapper", - "license": "GPLv3", + "license": "MIT", "web": "https://notabug.org/vktec/nimbox" }, { From 6a76b6709d45eb1fb15e378d07a342c012f38b81 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Sun, 27 Nov 2016 21:40:32 +0000 Subject: [PATCH 0329/1381] Remove space from tag "gap buffer" --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2178f47..133d81a 100644 --- a/packages.json +++ b/packages.json @@ -5508,7 +5508,7 @@ "seq", "sequence", "string", - "gap buffer" + "gapbuffer" ], "description": "A simple gap buffer implementation", "license": "MIT", From 1c86502977a43e4ab57fa55b6c548b603dba8314 Mon Sep 17 00:00:00 2001 From: Vadim Kilibaba Date: Mon, 28 Nov 2016 17:41:55 +0300 Subject: [PATCH 0330/1381] Pudge Db - it's modern key/value storage with memcached protocol support. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 477aa39..e9dbbb1 100644 --- a/packages.json +++ b/packages.json @@ -5513,5 +5513,19 @@ "description": "A simple gap buffer implementation", "license": "MIT", "web": "https://notabug.org/vktec/nim-gapbuffer" + }, + { + "name": "Pudge", + "url": "https://github.com/recoilme/pudge.git", + "method": "git", + "tags": [ + "wrapper", + "database", + "sophia", + "pudge db" + ], + "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", + "license": "MIT", + "web": "https://github.com/recoilme/pudge" } ] From 3f66e4f5a4a6593de32775a005d3c8265b175b66 Mon Sep 17 00:00:00 2001 From: Vadim Kilibaba Date: Mon, 28 Nov 2016 22:10:53 +0300 Subject: [PATCH 0331/1381] pudgedb --- packages.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index e9dbbb1..1e2659d 100644 --- a/packages.json +++ b/packages.json @@ -5515,14 +5515,13 @@ "web": "https://notabug.org/vktec/nim-gapbuffer" }, { - "name": "Pudge", + "name": "pudge", "url": "https://github.com/recoilme/pudge.git", "method": "git", "tags": [ "wrapper", "database", - "sophia", - "pudge db" + "sophia" ], "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", "license": "MIT", From e6aff9ddd7d2b38d589cb41d3e982a00e5f8fab0 Mon Sep 17 00:00:00 2001 From: Samadi van Koten Date: Mon, 28 Nov 2016 22:23:45 +0000 Subject: [PATCH 0332/1381] Update URL for `compiler` to point to nim-lang This isn't really an issue, since GitHub redirects, but it's confusing and a bit disconcerting to see nimble install from Araq/Nim.git instead of nim-lang/Nim.git --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 133d81a..8c6c938 100644 --- a/packages.json +++ b/packages.json @@ -1787,7 +1787,7 @@ }, { "name": "compiler", - "url": "https://github.com/Araq/Nim.git", + "url": "https://github.com/nim-lang/Nim.git", "method": "git", "tags": [ "library" From c5dcc344d89c9780e36e58ae400d57b87ef7016c Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 3 Dec 2016 22:07:02 +0000 Subject: [PATCH 0333/1381] Added package etcd_client --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1d99b2b..43945b9 100644 --- a/packages.json +++ b/packages.json @@ -5526,5 +5526,17 @@ "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", "license": "MIT", "web": "https://github.com/recoilme/pudge" + }, + { + "name": "etcd_client", + "url": "https://github.com/FedericoCeratto/nim-etcd-client", + "method": "git", + "tags": [ + "library", + "etcd" + ], + "description": "etcd client library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-etcd-client" } ] From 6bbedce14691241e15a3b6ade142b86657563d03 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sun, 4 Dec 2016 17:01:46 +0200 Subject: [PATCH 0334/1381] nim-jwt takeover --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 43945b9..1fd6200 100644 --- a/packages.json +++ b/packages.json @@ -1927,7 +1927,7 @@ }, { "name": "jwt", - "url": "https://github.com/ekarlso/nim-jwt.git", + "url": "https://github.com/yglukhov/nim-jwt.git", "method": "git", "tags": [ "library", @@ -1936,7 +1936,7 @@ ], "description": "JSON Web Tokens for Nim", "license": "MIT", - "web": "https://github.com/ekarlso/nim-jwt" + "web": "https://github.com/yglukhov/nim-jwt" }, { "name": "pythonpathlib", From 479410c4705aad9a2fd4047d7d3333fa1afa6563 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Fri, 9 Dec 2016 18:42:39 -0500 Subject: [PATCH 0335/1381] Added stb_image package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 1fd6200..ab880c7 100644 --- a/packages.json +++ b/packages.json @@ -5539,4 +5539,19 @@ "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-etcd-client" } + { + "name": "stb_image", + "url": "https://gitlab.com/define-private-public/stb_image-Nim", + "method": "git", + "tags": [ + "stb", + "image", + "graphics", + "io", + "wrapper" + ], + "description": "A wrapper for stb_image, stb_image_write, and stb_image_resize.", + "license": "Unlicense (Public Domain)", + "web": "https://gitlab.com/define-private-public/stb_image-Nim" + } ] From 6b15c5087d45dd584b737d395e0a4074d5ed4b8c Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Fri, 9 Dec 2016 22:46:43 -0500 Subject: [PATCH 0336/1381] Forgot a comma... --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ab880c7..17d1a08 100644 --- a/packages.json +++ b/packages.json @@ -5538,7 +5538,7 @@ "description": "etcd client library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-etcd-client" - } + }, { "name": "stb_image", "url": "https://gitlab.com/define-private-public/stb_image-Nim", From d3cc2814c654d5e8d1037a9b68b895fce747bcf5 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Mon, 12 Dec 2016 15:49:36 -0500 Subject: [PATCH 0337/1381] Added my fork of stopwatch (#437) * Added my fork of stopwatch * removed my link and changed rbmz's to mine --- packages.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 17d1a08..471b947 100644 --- a/packages.json +++ b/packages.json @@ -2960,15 +2960,18 @@ }, { "name": "stopwatch", - "url": "https://github.com/rbmz/stopwatch", + "url": "https://gitlab.com/define-private-public/stopwatch", "method": "git", "tags": [ "timer", - "benchmarking" + "timing", + "benchmarking", + "watch", + "clock" ], "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", "license": "MIT", - "web": "https://github.com/rbmz/stopwatch" + "web": "https://gitlab.com/define-private-public/stopwatch" }, { "name": "nimFinLib", From a84be8676c8dc80d4a50135d099bdfb9142e9543 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Wed, 14 Dec 2016 12:33:42 -0500 Subject: [PATCH 0338/1381] stb_image description change (#438) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 471b947..f4f2da3 100644 --- a/packages.json +++ b/packages.json @@ -5553,7 +5553,7 @@ "io", "wrapper" ], - "description": "A wrapper for stb_image, stb_image_write, and stb_image_resize.", + "description": "A wrapper for stb_image and stb_image_write.", "license": "Unlicense (Public Domain)", "web": "https://gitlab.com/define-private-public/stb_image-Nim" } From 8830f760bfa3541f0b27b194981e6f6ab2b57d85 Mon Sep 17 00:00:00 2001 From: "dmitri.iourinski" Date: Thu, 15 Dec 2016 18:59:58 -0500 Subject: [PATCH 0339/1381] Added package mutableseqs --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index f4f2da3..b906641 100644 --- a/packages.json +++ b/packages.json @@ -5555,6 +5555,15 @@ ], "description": "A wrapper for stb_image and stb_image_write.", "license": "Unlicense (Public Domain)", - "web": "https://gitlab.com/define-private-public/stb_image-Nim" + "web": "https://gitlab.com/define-private-public/stb_image-Nim" + }, + { + "name": "mutableseqs", + "url": "https://github.com/iourinski/mutableseqs", + "method": "git", + "tags": [], + "description": "utilities for transforming sequences", + "license": "MIT", + "web": "https://github.com/iourinski/mutableseqs" } ] From 87e5fedae6bad18d3392d38874cb0762513d3dd5 Mon Sep 17 00:00:00 2001 From: iourinski Date: Fri, 16 Dec 2016 14:59:42 -0500 Subject: [PATCH 0340/1381] Update packages.json Added tags to mutableseqs package --- packages.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b906641..00dec96 100644 --- a/packages.json +++ b/packages.json @@ -5561,7 +5561,10 @@ "name": "mutableseqs", "url": "https://github.com/iourinski/mutableseqs", "method": "git", - "tags": [], + "tags": [ + "sequences", + "mapreduce" + ], "description": "utilities for transforming sequences", "license": "MIT", "web": "https://github.com/iourinski/mutableseqs" From 623386febb6945570474ef76d58d2f325f289fc1 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Sat, 24 Dec 2016 14:03:59 -0500 Subject: [PATCH 0341/1381] Changed the description of stopwatch package (#442) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper * updated description --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 00dec96..74b4b1f 100644 --- a/packages.json +++ b/packages.json @@ -2969,7 +2969,7 @@ "watch", "clock" ], - "description": "A simple benchmarking/timer library based on nim's lib/system/timers.nim", + "description": "A simple timing library for benchmarking code and other things.", "license": "MIT", "web": "https://gitlab.com/define-private-public/stopwatch" }, From 4da0f89a07ac82b14b8bb771a91a5e0e2b6ec928 Mon Sep 17 00:00:00 2001 From: Khaled Karam Date: Sat, 24 Dec 2016 21:04:31 +0200 Subject: [PATCH 0342/1381] add stor package (#441) * update packages.json * Change nimscale_stor to stor --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 74b4b1f..5d0bbeb 100644 --- a/packages.json +++ b/packages.json @@ -5568,5 +5568,17 @@ "description": "utilities for transforming sequences", "license": "MIT", "web": "https://github.com/iourinski/mutableseqs" + }, + { + "name": "stor", + "url": "https://github.com/nimscale/stor", + "method": "git", + "tags": [ + "storage", + "io" + ], + "description": "Efficient object storage system", + "license": "MIT", + "web": "https://github.com/nimscale/stor" } ] From 6666be5802f3bc919a4c0cb4e0709cad62a56527 Mon Sep 17 00:00:00 2001 From: Luke Diamand Date: Tue, 27 Dec 2016 20:47:31 +0000 Subject: [PATCH 0343/1381] Add linuxfb, a wrapper for the Linux framebuffer API --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5d0bbeb..1fb61a0 100644 --- a/packages.json +++ b/packages.json @@ -5580,5 +5580,18 @@ "description": "Efficient object storage system", "license": "MIT", "web": "https://github.com/nimscale/stor" + }, + { + "name": "linuxfb", + "url": "https://github.com/luked99/linuxfb.nim", + "method": "git", + "tags": [ + "wrapper", + "graphics", + "linux" + ], + "description": "Wrapper around the Linux framebuffer driver ioctl API", + "license": "MIT", + "web": "https://github.com/luked99/linuxfb.nim" } ] From 1189866e231394cfab13f9595eb44e83c99380f4 Mon Sep 17 00:00:00 2001 From: "dmitri.iourinski" Date: Wed, 28 Dec 2016 23:14:26 -0500 Subject: [PATCH 0344/1381] simple stemmer --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 1fb61a0..29c931e 100644 --- a/packages.json +++ b/packages.json @@ -5593,5 +5593,18 @@ "description": "Wrapper around the Linux framebuffer driver ioctl API", "license": "MIT", "web": "https://github.com/luked99/linuxfb.nim" - } + }, + { + "name": "porter", + "url": "https://github.com/iourinski/porter", + "method": "git", + "tags": [ + "stemmer", + "multilanguage", + "snowball" + ], + "description": "Simple extensible implementation of Porter stemmer algorithm", + "license": "MIT", + "web": "https://github.com/iourinski/porter" + } ] From 4f8560c771803577186107d8e3517e29981c9af2 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Thu, 29 Dec 2016 13:54:36 +0700 Subject: [PATCH 0345/1381] Add nimactors library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1fb61a0..35d6b8b 100644 --- a/packages.json +++ b/packages.json @@ -5593,5 +5593,17 @@ "description": "Wrapper around the Linux framebuffer driver ioctl API", "license": "MIT", "web": "https://github.com/luked99/linuxfb.nim" + }, + { + "name": "nimactors", + "url": "https://github.com/vegansk/nimactors", + "method": "git", + "tags": [ + "actors", + "library" + ], + "description": "Actors library for Nim inspired by akka-actors", + "license": "MIT", + "web": "https://github.com/vegansk/nimactors" } ] From 7579b076a8d0e5589e304ac85633b80e8ddc78d0 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Fri, 30 Dec 2016 14:04:01 +0200 Subject: [PATCH 0346/1381] Add kiwi package (#447) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c5c3cd4..e869f7a 100644 --- a/packages.json +++ b/packages.json @@ -5618,5 +5618,18 @@ "description": "Simple extensible implementation of Porter stemmer algorithm", "license": "MIT", "web": "https://github.com/iourinski/porter" + }, + { + "name": "kiwi", + "url": "https://github.com/yglukhov/kiwi", + "method": "git", + "tags": [ + "cassowary", + "constraint", + "solving" + ], + "description": "Cassowary constraint solving", + "license": "MIT", + "web": "https://github.com/yglukhov/kiwi" } ] From 92605a3032417d6019577d4a873d38f02423216b Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 2 Jan 2017 11:32:26 +0000 Subject: [PATCH 0347/1381] Add ArrayFireNim package Merges #446 manually. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index e869f7a..46cc6c5 100644 --- a/packages.json +++ b/packages.json @@ -5631,5 +5631,20 @@ "description": "Cassowary constraint solving", "license": "MIT", "web": "https://github.com/yglukhov/kiwi" + }, + { + "name": "ArrayFireNim", + "url": "https://github.com/bitstormGER/ArrayFire-Nim", + "method": "git", + "tags": [ + "array", + "linear", + "algebra", + "scientific", + "computing" + ], + "description": "A nim wrapper for ArrayFire", + "license": "BSD", + "web": "https://github.com/bitstormGER/ArrayFire-Nim" } ] From a24ef1386a9232837eda79385fbcea5911708ad8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Wed, 4 Jan 2017 22:59:12 +0000 Subject: [PATCH 0348/1381] Added package statsd_client --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 46cc6c5..dd24f57 100644 --- a/packages.json +++ b/packages.json @@ -5646,5 +5646,20 @@ "description": "A nim wrapper for ArrayFire", "license": "BSD", "web": "https://github.com/bitstormGER/ArrayFire-Nim" + }, + { + "name": "statsd_client", + "url": "https://github.com/FedericoCeratto/nim-statsd-client", + "method": "git", + "tags": [ + "library", + "statsd", + "client", + "statistics", + "metrics" + ], + "description": "A simple, stateless StatsD client library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-statsd-client" } ] From 95b50191597d0573a37c01503edf0d5b677a0171 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Fri, 6 Jan 2017 06:53:28 -0500 Subject: [PATCH 0349/1381] Add HTML5 Canvas bindings (#450) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper * updated description * add HTML5 Canvas package --- packages.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index dd24f57..4bc3025 100644 --- a/packages.json +++ b/packages.json @@ -5661,5 +5661,22 @@ "description": "A simple, stateless StatsD client library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-statsd-client" - } + }, + { + "name": "html5_canvas", + "url": "https://gitlab.com/define-private-public/HTML5-Canvas-Nim", + "method": "git", + "tags": [ + "html5", + "canvas", + "drawing", + "graphics", + "rendering", + "browser", + "javascript" + ], + "description": "HTML5 Canvas and drawing for the JavaScript backend.", + "license": "MIT", + "web": "https://gitlab.com/define-private-public/HTML5-Canvas-Nim" + }, ] From 2f6d79db9e216f35aa04da683645a9066cd86ea0 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Tue, 10 Jan 2017 11:59:32 +0100 Subject: [PATCH 0350/1381] Added Alea library --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4bc3025..f8e8853 100644 --- a/packages.json +++ b/packages.json @@ -5679,4 +5679,19 @@ "license": "MIT", "web": "https://gitlab.com/define-private-public/HTML5-Canvas-Nim" }, + { + "name": "alea", + "url": "https://github.com/unicredit/alea", + "method": "git", + "tags": [ + "random variables", + "distributions", + "probability", + "gaussian", + "sampling" + ], + "description": "Define and compose random variables", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/alea" + } ] From fdbde8e7ab96ab2d2e05b2d4a007dbe12fecc762 Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Thu, 12 Jan 2017 02:18:04 -0500 Subject: [PATCH 0351/1381] Ajax package (#452) * Added my fork of stopwatch * removed my link and changed rbmz's to mine * Changed the scope of my stb_image wrapper * updated description * add HTML5 Canvas package * Added AJAX package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f8e8853..09b0e06 100644 --- a/packages.json +++ b/packages.json @@ -5693,5 +5693,20 @@ "description": "Define and compose random variables", "license": "Apache License 2.0", "web": "https://github.com/unicredit/alea" + }, + { + "name": "ajax", + "url": "https://gitlab.com/define-private-public/AJAX-Nim", + "method": "git", + "tags": [ + "html5", + "javascript", + "ajax", + "browser", + "web" + ], + "description": "AJAX bindings for Nim's JavaScript target", + "license": "MIT", + "web": "https://gitlab.com/define-private-public/AJAX-Nim" } ] From bf7a89affb4ee8bf9b6676bdad5ef8e2022777e9 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 16 Jan 2017 17:38:44 +0200 Subject: [PATCH 0352/1381] added nimgame2 --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 09b0e06..78ed4cf 100644 --- a/packages.json +++ b/packages.json @@ -94,10 +94,24 @@ "engine", "sdl" ], - "description": "Simple 2D game engine for Nim language.", + "description": "A simple 2D game engine for Nim language. Deprecated, use nimgame2 instead.", "license": "MIT", "web": "https://github.com/Vladar4/nimgame" }, + { + "name": "nimgame2", + "url": "https://github.com/Vladar4/nimgame2/", + "method": "git", + "tags": [ + "game", + "engine", + "sdl", + "sdl2" + ], + "description": "A simple 2D game engine for Nim language.", + "license": "MIT", + "web": "https://github.com/Vladar4/nimgame2" + }, { "name": "sfml", "url": "https://github.com/fowlmouth/nimrod-sfml/", From 36a2c12142b49f34c73e797e3ea38a9b44b9e179 Mon Sep 17 00:00:00 2001 From: Ward Date: Tue, 17 Jan 2017 00:26:16 +0800 Subject: [PATCH 0353/1381] Update packages.json --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 09b0e06..b359129 100644 --- a/packages.json +++ b/packages.json @@ -5708,5 +5708,19 @@ "description": "AJAX bindings for Nim's JavaScript target", "license": "MIT", "web": "https://gitlab.com/define-private-public/AJAX-Nim" + }, + { + "name": "winim", + "url": "https://github.com/khchen/winim", + "method": "git", + "tags": [ + "library", + "windows", + "api", + "com" + ], + "description": "Nim's Windows API and COM Library", + "license": "MIT", + "web": "https://github.com/khchen/winim" } ] From 3d1639df5f51459c9366f42e2393679aac937b19 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 16 Jan 2017 18:36:20 +0200 Subject: [PATCH 0354/1381] added deprecated tag to nimgame --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index 78ed4cf..c0dd11c 100644 --- a/packages.json +++ b/packages.json @@ -90,6 +90,7 @@ "url": "https://github.com/Vladar4/nimgame/", "method": "git", "tags": [ + "deprecated", "game", "engine", "sdl" From bce1ca4024cba52704aef0b5a16a61b3c24926b4 Mon Sep 17 00:00:00 2001 From: niv Date: Wed, 18 Jan 2017 17:28:56 +0100 Subject: [PATCH 0355/1381] Added package ed25519 --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index efda08a..9d34ce8 100644 --- a/packages.json +++ b/packages.json @@ -5737,5 +5737,23 @@ "description": "Nim's Windows API and COM Library", "license": "MIT", "web": "https://github.com/khchen/winim" + }, + { + "name": "ed25519", + "url": "https://github.com/niv/ed25519.nim", + "method": "git", + "tags": [ + "ed25519", + "cryptography", + "crypto", + "publickey", + "privatekey", + "signing", + "keyexchange", + "native" + ], + "description": "ed25519 key crypto bindings", + "license": "MIT", + "web": "https://github.com/niv/ed25519.nim" } ] From 3b2ce24ae66f6f95dd5baa8de51ac3af4ca1c7b4 Mon Sep 17 00:00:00 2001 From: Luke Diamand Date: Wed, 18 Jan 2017 22:26:22 +0000 Subject: [PATCH 0356/1381] Add libevdev, low-level Linux input processing --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9d34ce8..403cdfb 100644 --- a/packages.json +++ b/packages.json @@ -5755,5 +5755,18 @@ "description": "ed25519 key crypto bindings", "license": "MIT", "web": "https://github.com/niv/ed25519.nim" + }, + { + "name": "libevdev", + "url": "https://github.com/luked99/libevdev.nim", + "method": "git", + "tags": [ + "wrapper", + "os", + "linux" + ], + "description": "Wrapper for libevdev, Linux input device processing library", + "license": "MIT", + "web": "https://github.com/luked99/libevdev.nim" } ] From 86dfb1b7ff5232b107a43cb797c6b5f5f5ac6fcf Mon Sep 17 00:00:00 2001 From: Dmitriy Fomichev Date: Mon, 23 Jan 2017 01:20:19 +0400 Subject: [PATCH 0357/1381] Added NESM - Nim's Easy Serialization Macro A tool for generating serialization code. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 403cdfb..6b797ce 100644 --- a/packages.json +++ b/packages.json @@ -5768,5 +5768,19 @@ "description": "Wrapper for libevdev, Linux input device processing library", "license": "MIT", "web": "https://github.com/luked99/libevdev.nim" + }, + { + "name": "nesm", + "url": "https://github.com/xomachine/NESM.git", + "method": "git", + "tags": [ + "metaprogramming", + "parser", + "pure", + "serialization" + ], + "description": "A macro for generating [de]serializers for given objects", + "license": "MIT", + "web": "https://xomachine.github.io/NESM/" } ] From 9601645714560ada7a65e6b3325cfaa81d48f0c3 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 22 Jan 2017 21:53:26 +0000 Subject: [PATCH 0358/1381] Add sdnotify --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 403cdfb..fc90aa4 100644 --- a/packages.json +++ b/packages.json @@ -5768,5 +5768,19 @@ "description": "Wrapper for libevdev, Linux input device processing library", "license": "MIT", "web": "https://github.com/luked99/libevdev.nim" + }, + { + "name": "sdnotify", + "url": "https://github.com/FedericoCeratto/nim-sdnotify", + "method": "git", + "tags": [ + "os", + "linux", + "systemd", + "sdnotify" + ], + "description": "Systemd service notification helper", + "license": "MIT", + "web": "https://github.com/FedericoCeratto/nim-sdnotify" } ] From 4ace54818fa6492400131b99bfc3c9b7f75a8700 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Mon, 23 Jan 2017 18:17:02 +0200 Subject: [PATCH 0359/1381] removed dash from the libtcod package name --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index fc90aa4..52b5502 100644 --- a/packages.json +++ b/packages.json @@ -69,8 +69,8 @@ "web": "https://github.com/olahol/nimrod-murmur" }, { - "name": "libtcod-nim", - "url": "https://github.com/Vladar4/libtcod-nim/", + "name": "libtcod_nim", + "url": "https://github.com/Vladar4/libtcod_nim/", "method": "git", "tags": [ "roguelike", @@ -83,7 +83,7 @@ ], "description": "Wrapper of the libtcod library for the Nim language.", "license": "zlib", - "web": "https://github.com/Vladar4/libtcod-nim" + "web": "https://github.com/Vladar4/libtcod_nim" }, { "name": "nimgame", From 989bb4cc43c8b1c2c61dd5650ba408a34107b44d Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Fri, 27 Jan 2017 20:35:09 -0500 Subject: [PATCH 0360/1381] Added package cmd --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ddf01e5..ef0b1f7 100644 --- a/packages.json +++ b/packages.json @@ -5796,5 +5796,19 @@ "description": "Systemd service notification helper", "license": "MIT", "web": "https://github.com/FedericoCeratto/nim-sdnotify" + }, + { + "name": "cmd", + "url": "https://github.com/samdmarshall/cmd.nim", + "method": "git", + "tags": [ + "cmd", + "command", + "prompt", + "interactive" + ], + "description": "interactive command prompt", + "license": "BSD 3-Clause", + "web": "https://github.com/samdmarshall/cmd.nim" } ] From a8573e4dd5fa5761571e41c24bf20f4312588c2f Mon Sep 17 00:00:00 2001 From: Axel Pahl Date: Tue, 31 Jan 2017 10:14:26 +0100 Subject: [PATCH 0361/1381] added csvtable --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ef0b1f7..9436128 100644 --- a/packages.json +++ b/packages.json @@ -5810,5 +5810,17 @@ "description": "interactive command prompt", "license": "BSD 3-Clause", "web": "https://github.com/samdmarshall/cmd.nim" - } + }, + { + "name": "csvtable", + "url": "https://github.com/apahl/csvtable", + "method": "git", + "tags": [ + "csv", + "table" + ], + "description": "tools for handling CSV files (comma or tab-separated) with an API similar to Python's CSVDictReader and -Writer.", + "license": "MIT", + "web": "https://github.com/apahl/csvtable" +} ] From 6221cf27269dfbd6d75d030467828ec4c35a38b7 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 31 Jan 2017 20:55:18 +0100 Subject: [PATCH 0362/1381] Travis: Use trusty to fix SSL issues with wget --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index a3b4f7c..4c2f6a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ os: - linux +distro: trusty language: c From 4dda8a3d5ddd563dea7aa4096da895049f1815aa Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 31 Jan 2017 20:55:59 +0100 Subject: [PATCH 0363/1381] Fix .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4c2f6a9..6257b0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ os: - linux -distro: trusty +dist: trusty language: c From e0aaf9e0f85d20f6531bd9fb4452340663371496 Mon Sep 17 00:00:00 2001 From: konqoro Date: Wed, 1 Feb 2017 20:20:57 +0200 Subject: [PATCH 0364/1381] Add gnuplot package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9436128..fc68f2d 100644 --- a/packages.json +++ b/packages.json @@ -5822,5 +5822,18 @@ "description": "tools for handling CSV files (comma or tab-separated) with an API similar to Python's CSVDictReader and -Writer.", "license": "MIT", "web": "https://github.com/apahl/csvtable" + }, + { + "name": "gnuplot", + "url": "https://github.com/dvolk/gnuplot.nim", + "method": "git", + "tags": [ + "plot", + "graphing", + "data" + ], + "description": "Nim interface to gnuplot", + "license": "MIT", + "web": "https://github.com/dvolk/gnuplot.nim" } ] From 660e8247aef97b5577be2703a8f1b470d5a47f09 Mon Sep 17 00:00:00 2001 From: Rokas Kupstys Date: Fri, 3 Feb 2017 20:55:38 +0200 Subject: [PATCH 0365/1381] Added package ustring --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fc68f2d..d5799f3 100644 --- a/packages.json +++ b/packages.json @@ -5835,5 +5835,20 @@ "description": "Nim interface to gnuplot", "license": "MIT", "web": "https://github.com/dvolk/gnuplot.nim" -} + }, + { + "name": "ustring", + "url": "https://github.com/rokups/nim-ustring", + "method": "git", + "tags": [ + "string", + "text", + "unicode", + "uft8", + "utf-8" + ], + "description": "utf-8 string", + "license": "MIT", + "web": "https://github.com/rokups/nim-ustring" + } ] From c1d5cc05531c709c988694d6ebc10514ffe7a898 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 6 Feb 2017 15:16:53 +0100 Subject: [PATCH 0366/1381] Added package imap --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d5799f3..fcbd18d 100644 --- a/packages.json +++ b/packages.json @@ -5850,5 +5850,17 @@ "description": "utf-8 string", "license": "MIT", "web": "https://github.com/rokups/nim-ustring" + }, + { + "name": "imap", + "url": "https://github.com/ehmry/imap", + "method": "git", + "tags": [ + "imap", + "email" + ], + "description": "IMAP client library", + "license": "GPL2", + "web": "https://github.com/ehmry/imap" } ] From 07da38b9a17974e7f96258e8a641283c10447c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Wed, 8 Feb 2017 15:54:00 +0100 Subject: [PATCH 0367/1381] add isa: bindings for Intel Storage Acceleration library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fcbd18d..88a69a1 100644 --- a/packages.json +++ b/packages.json @@ -5862,5 +5862,19 @@ "description": "IMAP client library", "license": "GPL2", "web": "https://github.com/ehmry/imap" + }, + { + "name": "isa", + "url": "https://github.com/nimscale/isa", + "method": "git", + "tags": [ + "erasure", + "hash", + "crypto", + "compression" + ], + "description": "Binding for Intel Storage Acceleration library", + "license": "Apache License 2.0", + "web": "https://github.com/nimscale/isa" } ] From 6637fe5831dd1e6cf8581d1f8f0e614f3765a3e5 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 8 Feb 2017 23:06:43 +0100 Subject: [PATCH 0368/1381] Added untar package --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 88a69a1..bcf6619 100644 --- a/packages.json +++ b/packages.json @@ -5876,5 +5876,21 @@ "description": "Binding for Intel Storage Acceleration library", "license": "Apache License 2.0", "web": "https://github.com/nimscale/isa" + }, + { + "name": "untar", + "url": "https://github.com/dom96/untar", + "method": "git", + "tags": [ + "library", + "tar", + "gz", + "compression", + "archive", + "decompression" + ], + "description": "Library for decompressing tar.gz files.", + "license": "MIT", + "web": "https://github.com/dom96/untar" } ] From 9f8394b6faa84bbf4acd969200f88ce835954631 Mon Sep 17 00:00:00 2001 From: Vladislav Vorobiev Date: Thu, 9 Feb 2017 13:32:14 +0300 Subject: [PATCH 0369/1381] Rename package registry to winregistry Fixes name clashing with stdlib_registry --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bcf6619..b9ebf22 100644 --- a/packages.json +++ b/packages.json @@ -4926,7 +4926,7 @@ "web": "https://github.com/cheatfate/asyncpg" }, { - "name": "registry", + "name": "winregistry", "description": "Deal with Windows Registry from Nim.", "tags": [ "registry", From 519f9de4d56766014cc09fb9b64765168b17836d Mon Sep 17 00:00:00 2001 From: Kean Sum Ooi Date: Thu, 9 Feb 2017 18:34:54 +0800 Subject: [PATCH 0370/1381] Added dpdk --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bcf6619..8812f71 100644 --- a/packages.json +++ b/packages.json @@ -5892,5 +5892,19 @@ "description": "Library for decompressing tar.gz files.", "license": "MIT", "web": "https://github.com/dom96/untar" + }, + { + "name": "dpdk", + "url": "https://github.com/nimscale/dpdk", + "method": "git", + "tags": [ + "library", + "dpdk", + "packet", + "processing" + ], + "description": "Library for fast packet processing", + "license": "Apache License 2.0", + "web": "http://dpdk.org/" } ] From b030f368ef97e1f0aa85743ddeba006844467249 Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Sun, 12 Feb 2017 16:25:57 +0000 Subject: [PATCH 0371/1381] Added package serialport --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index af84435..2a64f38 100644 --- a/packages.json +++ b/packages.json @@ -5906,5 +5906,18 @@ "description": "Library for fast packet processing", "license": "Apache License 2.0", "web": "http://dpdk.org/" + }, + { + "name": "serialport", + "url": "https://github.com/euantorano/serialport.nim", + "method": "git", + "tags": [ + "serial", + "rs232", + "io" + ], + "description": "A library to operate serial ports using pure Nim.", + "license": "BSD3", + "web": "https://github.com/euantorano/serialport.nim" } ] From 8ba80d52227bd423f77d632bcba225d1819978b5 Mon Sep 17 00:00:00 2001 From: Euan T Date: Sun, 12 Feb 2017 16:31:06 +0000 Subject: [PATCH 0372/1381] Change name of `serialport` to `libserialport` --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2a64f38..a3f061b 100644 --- a/packages.json +++ b/packages.json @@ -5908,7 +5908,7 @@ "web": "http://dpdk.org/" }, { - "name": "serialport", + "name": "libserialport", "url": "https://github.com/euantorano/serialport.nim", "method": "git", "tags": [ From 46f2216d1747b5dc6a14c586193daaecd1e07f78 Mon Sep 17 00:00:00 2001 From: qqtop Date: Sun, 12 Feb 2017 19:13:45 +0000 Subject: [PATCH 0373/1381] Add package NimCx (#466) * Added package NimCx * Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a3f061b..0acd794 100644 --- a/packages.json +++ b/packages.json @@ -5893,6 +5893,18 @@ "license": "MIT", "web": "https://github.com/dom96/untar" }, + { + "name": "nimcx", + "url": "https://github.com/qqtop/nimcx", + "method": "git", + "tags": [ + "library", + "linux" + ], + "description": "Color and utilities library for linux terminal.", + "license": "MIT", + "web": "https://github.com/qqtop/nimcx" + }, { "name": "dpdk", "url": "https://github.com/nimscale/dpdk", From 11206fd2b35fde9933059964713a460728456bf2 Mon Sep 17 00:00:00 2001 From: Rostyslav Ivasiv Date: Mon, 13 Feb 2017 17:08:53 +0200 Subject: [PATCH 0374/1381] Added SPDK set of tools and libraries. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 0acd794..fdd508c 100644 --- a/packages.json +++ b/packages.json @@ -5931,5 +5931,20 @@ "description": "A library to operate serial ports using pure Nim.", "license": "BSD3", "web": "https://github.com/euantorano/serialport.nim" + }, + { + "name": "libspdk", + "url": "https://github.com/nimscale/spdk.git", + "method": "git", + "tags": [ + "library", + "SSD", + "NVME", + "io", + "storage" + ], + "description": "The Storage Performance Development Kit(SPDK) provides a set of tools and libraries for writing high performance, scalable, user-mode storage applications.", + "license": "MIT", + "web": "https://github.com/nimscale/spdk.git" } ] From 25df0f82f489074ed7882110aa31e3e0ce79e68c Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Mon, 13 Feb 2017 20:42:58 +0100 Subject: [PATCH 0375/1381] added nimdata --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index fdd508c..28a882f 100644 --- a/packages.json +++ b/packages.json @@ -5946,5 +5946,16 @@ "description": "The Storage Performance Development Kit(SPDK) provides a set of tools and libraries for writing high performance, scalable, user-mode storage applications.", "license": "MIT", "web": "https://github.com/nimscale/spdk.git" + }, + { + "name": "NimData", + "url": "https://github.com/bluenote10/NimData", + "method": "git", + "tags": [ + "dataframe" + ], + "description": "DataFrame API enabling fast out-of-core data analytics", + "license": "MIT", + "web": "https://github.com/bluenote10/NimData" } ] From 044dc5e31f63594276acce2d0a4efc381a9d198d Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Mon, 13 Feb 2017 21:11:00 +0100 Subject: [PATCH 0376/1381] added library tag --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index 28a882f..87bbb7d 100644 --- a/packages.json +++ b/packages.json @@ -5952,6 +5952,7 @@ "url": "https://github.com/bluenote10/NimData", "method": "git", "tags": [ + "library", "dataframe" ], "description": "DataFrame API enabling fast out-of-core data analytics", From 0c9d410bbef23a14aa9d086810038b7861ec68e8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 14 Feb 2017 18:42:05 +0000 Subject: [PATCH 0377/1381] Add testrunner --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 87bbb7d..24f229b 100644 --- a/packages.json +++ b/packages.json @@ -5958,5 +5958,20 @@ "description": "DataFrame API enabling fast out-of-core data analytics", "license": "MIT", "web": "https://github.com/bluenote10/NimData" + }, + { + "name": "testrunner", + "url": "https://github.com/FedericoCeratto/nim-testrunner", + "method": "git", + "tags": [ + "test", + "tests", + "unittest", + "utility", + "tdd" + ], + "description": "Test runner with file monitoring and desktop notification capabilities", + "license": "GPLv3", + "web": "https://github.com/FedericoCeratto/nim-testrunner" } ] From fcd882b648708a940a80de06478813e066ca09a4 Mon Sep 17 00:00:00 2001 From: Rostyslav Ivasiv Date: Sat, 18 Feb 2017 15:57:56 +0200 Subject: [PATCH 0378/1381] Corrected SPDK library name to more appropriate one. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fdd508c..fd18ea5 100644 --- a/packages.json +++ b/packages.json @@ -5933,7 +5933,7 @@ "web": "https://github.com/euantorano/serialport.nim" }, { - "name": "libspdk", + "name": "spdk", "url": "https://github.com/nimscale/spdk.git", "method": "git", "tags": [ From 32ecb6b463392820a089da17f50bc717e084ebe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sun, 19 Feb 2017 22:53:50 +0100 Subject: [PATCH 0379/1381] Add reactorfuse --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 27bc476..40906e9 100644 --- a/packages.json +++ b/packages.json @@ -5973,5 +5973,17 @@ "description": "Test runner with file monitoring and desktop notification capabilities", "license": "GPLv3", "web": "https://github.com/FedericoCeratto/nim-testrunner" + }, + { + "name": "reactorfuse", + "url": "https://github.com/zielmicha/reactorfuse", + "method": "git", + "tags": [ + "filesystem", + "fuse" + ], + "description": "Filesystem in userspace (FUSE) for Nim (for reactor.nim library)", + "license": "MIT", + "web": "https://github.com/zielmicha/reactorfuse" } ] From c2b84b09c9ecc2dec8d6c0aa055ee8806e2960a1 Mon Sep 17 00:00:00 2001 From: Jeff Ciesielski Date: Tue, 21 Feb 2017 22:52:47 -0500 Subject: [PATCH 0380/1381] Added package nimr --- packages.json | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/packages.json b/packages.json index 40906e9..a879b7e 100644 --- a/packages.json +++ b/packages.json @@ -5898,12 +5898,12 @@ "url": "https://github.com/qqtop/nimcx", "method": "git", "tags": [ - "library", - "linux" + "library", + "linux" ], - "description": "Color and utilities library for linux terminal.", - "license": "MIT", - "web": "https://github.com/qqtop/nimcx" + "description": "Color and utilities library for linux terminal.", + "license": "MIT", + "web": "https://github.com/qqtop/nimcx" }, { "name": "dpdk", @@ -5985,5 +5985,17 @@ "description": "Filesystem in userspace (FUSE) for Nim (for reactor.nim library)", "license": "MIT", "web": "https://github.com/zielmicha/reactorfuse" + }, + { + "name": "nimr", + "url": "https://github.com/Jeff-Ciesielski/nimr", + "method": "git", + "tags": [ + "script", + "utils" + ], + "description": "Helper to run nim code like a script", + "license": "MIT", + "web": "https://github.com/Jeff-Ciesielski/nimr" } ] From 171c1e90b30004e338abb7f9fe4f54aeb76de242 Mon Sep 17 00:00:00 2001 From: niv Date: Thu, 23 Feb 2017 15:54:18 +0100 Subject: [PATCH 0381/1381] Added package neverwinter --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index a879b7e..9f41314 100644 --- a/packages.json +++ b/packages.json @@ -5997,5 +5997,23 @@ "description": "Helper to run nim code like a script", "license": "MIT", "web": "https://github.com/Jeff-Ciesielski/nimr" + }, + { + "name": "neverwinter", + "url": "https://github.com/niv/neverwinter.nim", + "method": "git", + "tags": [ + "nwn", + "neverwinternights", + "neverwinter", + "game", + "bioware", + "fileformats", + "reader", + "writer" + ], + "description": "Neverwinter Nights 1 data accessor library", + "license": "MIT", + "web": "https://github.com/niv/neverwinter.nim" } ] From bff07b572ca77737c4e426989cf038675f628768 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 25 Feb 2017 21:18:30 +0100 Subject: [PATCH 0382/1381] Add more tags to sha2 package. --- packages.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 9f41314..956a74d 100644 --- a/packages.json +++ b/packages.json @@ -3325,7 +3325,10 @@ "hash", "crypto", "library", - "sha2" + "sha256", + "sha224", + "sha384", + "sha512" ], "description": "Secure Hash Algorithm - 2, [224, 256, 384, and 512 bits]", "license": "MIT", From 602ffa593bd79dba87fd808611318c0b546d689a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 27 Feb 2017 23:49:11 +0100 Subject: [PATCH 0383/1381] Fixes #478. --- packages.json | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/packages.json b/packages.json index 956a74d..d193e6d 100644 --- a/packages.json +++ b/packages.json @@ -5712,21 +5712,6 @@ "license": "Apache License 2.0", "web": "https://github.com/unicredit/alea" }, - { - "name": "ajax", - "url": "https://gitlab.com/define-private-public/AJAX-Nim", - "method": "git", - "tags": [ - "html5", - "javascript", - "ajax", - "browser", - "web" - ], - "description": "AJAX bindings for Nim's JavaScript target", - "license": "MIT", - "web": "https://gitlab.com/define-private-public/AJAX-Nim" - }, { "name": "winim", "url": "https://github.com/khchen/winim", From 13f7e8698e152144b7f5965296b707a370e2e7a3 Mon Sep 17 00:00:00 2001 From: stisa Date: Wed, 1 Mar 2017 17:21:59 +0100 Subject: [PATCH 0384/1381] add snail and websockets --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index d193e6d..6e59a01 100644 --- a/packages.json +++ b/packages.json @@ -6003,5 +6003,32 @@ "description": "Neverwinter Nights 1 data accessor library", "license": "MIT", "web": "https://github.com/niv/neverwinter.nim" + }, + { + "name": "snail", + "url": "https://github.com/stisa/snail", + "method": "git", + "tags": [ + "js", + "matrix", + "linear algebra" + ], + "description": "Simple linear algebra for nim. Js too.", + "license": "MIT", + "web": "http://stisa.space/snail/" + }, + { + "name": "websockets", + "url": "https://github.com/stisa/websockets", + "method": "git", + "tags": [ + "js", + "javascripts", + "ws", + "websockets" + ], + "description": "Websockets wrapper for nim js backend.", + "license": "MIT", + "web": "http://stisa.space/websockets/" } ] From 77758ce0abde3150e2499cb118ad5d893ccceca3 Mon Sep 17 00:00:00 2001 From: stisa Date: Thu, 2 Mar 2017 10:19:45 +0100 Subject: [PATCH 0385/1381] websockets->jswebsockets --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 6e59a01..e198c05 100644 --- a/packages.json +++ b/packages.json @@ -6018,8 +6018,8 @@ "web": "http://stisa.space/snail/" }, { - "name": "websockets", - "url": "https://github.com/stisa/websockets", + "name": "jswebsockets", + "url": "https://github.com/stisa/jswebsockets", "method": "git", "tags": [ "js", @@ -6029,6 +6029,6 @@ ], "description": "Websockets wrapper for nim js backend.", "license": "MIT", - "web": "http://stisa.space/websockets/" + "web": "http://stisa.space/jswebsockets/" } ] From c889b1045d9a21ef81edea6d657bfd6bfff53815 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 4 Mar 2017 20:29:18 +0000 Subject: [PATCH 0386/1381] Add morelogging library --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index e198c05..562053b 100644 --- a/packages.json +++ b/packages.json @@ -6030,5 +6030,20 @@ "description": "Websockets wrapper for nim js backend.", "license": "MIT", "web": "http://stisa.space/jswebsockets/" + }, + { + "name": "morelogging", + "url": "https://github.com/FedericoCeratto/nim-morelogging", + "method": "git", + "tags": [ + "log", + "logging", + "library", + "systemd", + "journald" + ], + "description": "Logging library with support for async IO, multithreading, Journald.", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-morelogging" } ] From 9347ead988ec5e4f43d03fd5c63c33fdfb1512bb Mon Sep 17 00:00:00 2001 From: stisa Date: Sun, 5 Mar 2017 20:40:53 +0100 Subject: [PATCH 0387/1381] add ajax --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 562053b..4282adc 100644 --- a/packages.json +++ b/packages.json @@ -6045,5 +6045,19 @@ "description": "Logging library with support for async IO, multithreading, Journald.", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-morelogging" + }, + { + "name": "ajax", + "url": "https://github.com/stisa/ajax", + "method": "git", + "tags": [ + "js", + "javascripts", + "ajax", + "xmlhttprequest" + ], + "description": "AJAX wrapper for nim js backend.", + "license": "MIT", + "web": "http://stisa.space/ajax/" } ] From 0aa731182b640bf83197cc8caf76f2c05445e690 Mon Sep 17 00:00:00 2001 From: Euan Torano Date: Mon, 6 Mar 2017 20:30:30 +0000 Subject: [PATCH 0388/1381] Added package recaptcha --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4282adc..f049a01 100644 --- a/packages.json +++ b/packages.json @@ -6059,5 +6059,17 @@ "description": "AJAX wrapper for nim js backend.", "license": "MIT", "web": "http://stisa.space/ajax/" + }, + { + "name": "recaptcha", + "url": "https://github.com/euantorano/recaptcha.nim", + "method": "git", + "tags": [ + "recaptcha", + "captcha" + ], + "description": "reCAPTCHA support for Nim, supporting rendering a capctcha and verifying a user's response.", + "license": "BSD3", + "web": "https://github.com/euantorano/recaptcha.nim" } ] From ee4342137674bce6be86d0a8792d2ae024096f96 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Tue, 7 Mar 2017 15:20:25 +0100 Subject: [PATCH 0389/1381] Added nimcr package --- packages.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/packages.json b/packages.json index b33ef3d..267faca 100644 --- a/packages.json +++ b/packages.json @@ -872,17 +872,16 @@ "web": "https://github.com/PMunch/SDLGamelib" }, { - "name": "gamelib", - "url": "https://github.com/PMunch/SDLGamelib", + "name": "nimcr", + "url": "https://github.com/PMunch/nimcr", "method": "git", "tags": [ - "sdl", - "game", - "library" + "shebang", + "utility" ], - "description": "A library of functions to make creating games using Nim and SDL2 easier. This does not intend to be a full blown engine and tries to keep all the components loosely coupled so that individual parts can be used separately.", + "description": "A small program to make Nim shebang-able without the overhead of compiling each time", "license": "MIT", - "web": "https://github.com/PMunch/SDLGamelib" + "web": "https://github.com/PMunch/nimcr" }, { "name": "sdl2_nim", From af9e0551a66fea58a5918d51b5a3b84f0762c670 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Tue, 7 Mar 2017 15:23:54 +0100 Subject: [PATCH 0390/1381] Fixed indentation --- packages.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 267faca..37c84ac 100644 --- a/packages.json +++ b/packages.json @@ -858,16 +858,16 @@ "license": "MIT", "web": "https://github.com/nim-lang/sdl2" }, - { + { "name": "gamelib", "url": "https://github.com/PMunch/SDLGamelib", "method": "git", "tags": [ - "sdl", - "game", - "library" - ], - "description": "A library of functions to make creating games using Nim and SDL2 easier. This does not intend to be a full blown engine and tries to keep all the components loosly coupled so that individual parts can be used separately.", + "sdl", + "game", + "library" + ], + "description": "A library of functions to make creating games using Nim and SDL2 easier. This does not intend to be a full blown engine and tries to keep all the components loosely coupled so that individual parts can be used separately.", "license": "MIT", "web": "https://github.com/PMunch/SDLGamelib" }, From 10ade9e5435cf0ea22cba67fa01c7e54aa8ac71c Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Sat, 11 Mar 2017 14:36:46 -0500 Subject: [PATCH 0391/1381] Added package influx --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index f049a01..f17c31b 100644 --- a/packages.json +++ b/packages.json @@ -6071,5 +6071,17 @@ "description": "reCAPTCHA support for Nim, supporting rendering a capctcha and verifying a user's response.", "license": "BSD3", "web": "https://github.com/euantorano/recaptcha.nim" + }, + { + "name": "influx", + "url": "https://github.com/samdmarshall/influx.nim", + "method": "git", + "tags": [ + "influx", + "influxdb" + ], + "description": "wrapper for communicating with InfluxDB over the REST interface", + "license": "BSD 3-Clause", + "web": "https://github.com/samdmarshall/influx.nim" } ] From 6409a8cb9b7667028f9548385942114f969b26e3 Mon Sep 17 00:00:00 2001 From: konqoro Date: Mon, 13 Mar 2017 16:54:21 +0200 Subject: [PATCH 0392/1381] Update gnuplot package location --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 6d263e6..74d6d18 100644 --- a/packages.json +++ b/packages.json @@ -5825,7 +5825,7 @@ }, { "name": "gnuplot", - "url": "https://github.com/dvolk/gnuplot.nim", + "url": "https://github.com/konqoro/gnuplot.nim", "method": "git", "tags": [ "plot", @@ -5834,7 +5834,7 @@ ], "description": "Nim interface to gnuplot", "license": "MIT", - "web": "https://github.com/dvolk/gnuplot.nim" + "web": "https://github.com/konqoro/gnuplot.nim" }, { "name": "ustring", From 43339fae42a9500f8312dd8f78783d894c21beb0 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 18 Mar 2017 16:42:05 +0100 Subject: [PATCH 0393/1381] Added gamelight package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 74d6d18..e77535a 100644 --- a/packages.json +++ b/packages.json @@ -6095,5 +6095,20 @@ "description": "wrapper for communicating with InfluxDB over the REST interface", "license": "BSD 3-Clause", "web": "https://github.com/samdmarshall/influx.nim" + }, + { + "name": "gamelight", + "url": "https://github.com/dom96/gamelight", + "method": "git", + "tags": [ + "js", + "library", + "graphics", + "collision", + "2d" + ], + "description": "A set of simple modules for writing a JavaScript 2D game.", + "license": "MIT", + "web": "https://github.com/dom96/gamelight" } ] From 92bed982a3fdcb4311f89d99a55ff9fbf32355d2 Mon Sep 17 00:00:00 2001 From: Konstantin Molchanov Date: Tue, 21 Mar 2017 00:58:15 +0400 Subject: [PATCH 0394/1381] Added package storage --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e77535a..b38b309 100644 --- a/packages.json +++ b/packages.json @@ -6110,5 +6110,19 @@ "description": "A set of simple modules for writing a JavaScript 2D game.", "license": "MIT", "web": "https://github.com/dom96/gamelight" + }, + { + "name": "storage", + "url": "https://bitbucket.org/moigagoo/storage/", + "method": "hg", + "tags": [ + "JavaScript", + "Storage", + "localStorage", + "sessionStorage" + ], + "description": "Storage, localStorage, and sessionStorage bindigs for Nim's JavaScript backend.", + "license": "MIT", + "web": "https://bitbucket.org/moigagoo/storage/" } ] From f7341b1aefd9338e6d49f9527c61207454771383 Mon Sep 17 00:00:00 2001 From: Euan T Date: Mon, 27 Mar 2017 11:22:46 +0100 Subject: [PATCH 0395/1381] Add package sysrandom --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b38b309..a17a79d 100644 --- a/packages.json +++ b/packages.json @@ -6124,5 +6124,18 @@ "description": "Storage, localStorage, and sessionStorage bindigs for Nim's JavaScript backend.", "license": "MIT", "web": "https://bitbucket.org/moigagoo/storage/" + }, + { + "name": "sysrandom", + "url": "https://github.com/euantorano/sysrandom.nim", + "method": "git", + "tags": [ + "random", + "RNG", + "PRNG" + ], + "description": "A simple library to generate random data, using the system's PRNG.", + "license": "BSD3", + "web": "https://github.com/euantorano/sysrandom.nim" } ] From 8d253070afcc9ccf5f1ba4dff0a07b0f81af1c8a Mon Sep 17 00:00:00 2001 From: Parashurama Date: Mon, 27 Mar 2017 20:23:38 +0200 Subject: [PATCH 0396/1381] add fontconfig module --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index b38b309..a3f566d 100644 --- a/packages.json +++ b/packages.json @@ -6124,5 +6124,17 @@ "description": "Storage, localStorage, and sessionStorage bindigs for Nim's JavaScript backend.", "license": "MIT", "web": "https://bitbucket.org/moigagoo/storage/" + }, + { + "name": "fontconfig", + "url": "https://github.com/Parashurama/fontconfig", + "method": "git", + "tags": [ + "fontconfig", + "font" + ], + "description": "Low level wrapper for the fontconfig library.", + "license": "Fontconfig License", + "web": "https://github.com/Parashurama/fontconfig" } ] From ef2bf2345c69a55f4612471a9b8e7f6c61fd8bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moln=C3=A1r=20M=C3=A1rk?= Date: Tue, 28 Mar 2017 12:22:26 +0200 Subject: [PATCH 0397/1381] Adding colorize Colorize is a simple and lightweight terminal coloring utility to quickly make your terminal outputs beautiful. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a17a79d..823011b 100644 --- a/packages.json +++ b/packages.json @@ -6137,5 +6137,18 @@ "description": "A simple library to generate random data, using the system's PRNG.", "license": "BSD3", "web": "https://github.com/euantorano/sysrandom.nim" + }, + { + "name": "colorize", + "url": "https://github.com/molnarmark/colorize", + "method": "git", + "tags": [ + "color", + "colors", + "colorize" + ], + "description": "A simple and lightweight terminal coloring library.", + "license": "MIT", + "web": "https://github.com/molnarmark/colorize" } ] From 59aaf6879e34778194f759f066e9f1cc3bcb3eda Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Fri, 31 Mar 2017 18:39:27 +0200 Subject: [PATCH 0398/1381] Added cello --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 445fac8..2f4c2af 100644 --- a/packages.json +++ b/packages.json @@ -6162,5 +6162,22 @@ "description": "A simple and lightweight terminal coloring library.", "license": "MIT", "web": "https://github.com/molnarmark/colorize" + }, + { + "name": "cello", + "url": "https://github.com/unicredit/cello", + "method": "git", + "tags": [ + "string", + "succint data structure", + "rank", + "select", + "Burrows-Wheeler", + "FM index", + "wavelet tree" + ], + "description": "String algorithms with succinct data structures", + "license": "Apache2", + "web": "https://unicredit.github.io/cello/" } ] From 6e4db8e5c8cc88af46f18bb4568655e7b791dbab Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Sat, 1 Apr 2017 20:03:49 +0200 Subject: [PATCH 0399/1381] Single word tags --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 2f4c2af..42a0159 100644 --- a/packages.json +++ b/packages.json @@ -6169,12 +6169,12 @@ "method": "git", "tags": [ "string", - "succint data structure", + "succinct-data-structure", "rank", "select", "Burrows-Wheeler", - "FM index", - "wavelet tree" + "FM-index", + "wavelet-tree" ], "description": "String algorithms with succinct data structures", "license": "Apache2", From 91e42034a72adfdd9046f821aa4ef186289a75b4 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Tue, 4 Apr 2017 13:38:11 +0200 Subject: [PATCH 0400/1381] Renamed BlaXpirit to oprypin --- packages.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 42a0159..15d48ca 100644 --- a/packages.json +++ b/packages.json @@ -1488,7 +1488,7 @@ }, { "name": "random", - "url": "https://github.com/BlaXpirit/nim-random", + "url": "https://github.com/oprypin/nim-random", "method": "git", "tags": [ "library", @@ -1497,7 +1497,7 @@ ], "description": "Pseudo-random number generation library inspired by Python", "license": "MIT", - "web": "https://github.com/BlaXpirit/nim-random" + "web": "https://github.com/oprypin/nim-random" }, { "name": "zmq", @@ -1731,7 +1731,7 @@ }, { "name": "csfml", - "url": "https://github.com/BlaXpirit/nim-csfml", + "url": "https://github.com/oprypin/nim-csfml", "method": "git", "tags": [ "sfml", @@ -1743,7 +1743,7 @@ ], "description": "Bindings for Simple and Fast Multimedia Library (through CSFML)", "license": "zlib", - "web": "https://github.com/BlaXpirit/nim-csfml" + "web": "https://github.com/oprypin/nim-csfml" }, { "name": "optional_t", From 66304b3252065e8a57f72975ca3ee3c4cdcbebc2 Mon Sep 17 00:00:00 2001 From: Krognol Date: Wed, 5 Apr 2017 15:27:46 +0200 Subject: [PATCH 0401/1381] Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 15d48ca..cca93b9 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,16 @@ [ + { + "name": "discordnim", + "url": "https://github.com/Krognol/discordnim", + "method": "git", + "tags": [ + "library", + "discord" + ], + "description": "Discord library for Nim", + "license": "MIT", + "web": "https://github.com/Krognol/discordnim" + }, { "name": "argument_parser", "url": "https://github.com/Xe/argument_parser/", From 3040700ffa0db343c091d2181f53c6593b45ac29 Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Wed, 5 Apr 2017 21:38:19 -0400 Subject: [PATCH 0402/1381] Added package notmuch --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cca93b9..f3b1f36 100644 --- a/packages.json +++ b/packages.json @@ -6,7 +6,7 @@ "tags": [ "library", "discord" - ], + ], "description": "Discord library for Nim", "license": "MIT", "web": "https://github.com/Krognol/discordnim" @@ -6191,5 +6191,16 @@ "description": "String algorithms with succinct data structures", "license": "Apache2", "web": "https://unicredit.github.io/cello/" + }, + { + "name": "notmuch", + "url": "https://github.com/samdmarshall/notmuch.nim", + "method": "git", + "tags": [ + "notmuch" + ], + "description": "wrapper for the notmuch mail library", + "license": "BSD 3-Clause", + "web": "https://github.com/samdmarshall/notmuch.nim" } ] From 1af54a2af5b450d712679357b707e29710b2ae5b Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Sun, 9 Apr 2017 11:36:03 -0400 Subject: [PATCH 0403/1381] adding tags --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index f3b1f36..451dba5 100644 --- a/packages.json +++ b/packages.json @@ -6197,7 +6197,7 @@ "url": "https://github.com/samdmarshall/notmuch.nim", "method": "git", "tags": [ - "notmuch" + "notmuch", "wrapper", "email", "tagging" ], "description": "wrapper for the notmuch mail library", "license": "BSD 3-Clause", From 8081c9047560c8c42575c6c7dca465106e41ac75 Mon Sep 17 00:00:00 2001 From: wt Date: Thu, 13 Apr 2017 14:36:48 +0800 Subject: [PATCH 0404/1381] Add node package --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 451dba5..f6f27f5 100644 --- a/packages.json +++ b/packages.json @@ -6202,5 +6202,21 @@ "description": "wrapper for the notmuch mail library", "license": "BSD 3-Clause", "web": "https://github.com/samdmarshall/notmuch.nim" + }, + { + "name": "node", + "url": "https://github.com/tulayang/nimnode", + "method": "git", + "tags": [ + "async", + "io", + "net", + "tcp", + "http", + "libuv" + ], + "description": "Library for async programming and communication. This Library uses a future/promise, non-blocking I/O model based on libuv.", + "license": "MIT", + "web": "http://tulayang.github.io/node/" } ] From 6b08b1913327ea0d59b6272a4787a442c8567526 Mon Sep 17 00:00:00 2001 From: wt Date: Thu, 13 Apr 2017 14:57:26 +0800 Subject: [PATCH 0405/1381] Update packages.json --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index f6f27f5..ab055ec 100644 --- a/packages.json +++ b/packages.json @@ -6210,6 +6210,7 @@ "tags": [ "async", "io", + "socket", "net", "tcp", "http", From 921fd1f58ba50cfbd57e651404caf6b8c506e5c7 Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Sun, 16 Apr 2017 08:40:52 -0400 Subject: [PATCH 0406/1381] Added package pluginmanager --- packages.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 451dba5..dd01573 100644 --- a/packages.json +++ b/packages.json @@ -6197,10 +6197,27 @@ "url": "https://github.com/samdmarshall/notmuch.nim", "method": "git", "tags": [ - "notmuch", "wrapper", "email", "tagging" + "notmuch", + "wrapper", + "email", + "tagging" ], "description": "wrapper for the notmuch mail library", "license": "BSD 3-Clause", "web": "https://github.com/samdmarshall/notmuch.nim" + }, + { + "name": "pluginmanager", + "url": "https://github.com/samdmarshall/plugin-manager", + "method": "git", + "tags": [ + "plugin", + "dylib", + "manager", + "" + ], + "description": "Simple plugin implementation", + "license": "BSD 3-Clause", + "web": "https://github.com/samdmarshall/plugin-manager" } ] From 654ca497a56594d306a324ebb61b84d7facd6ac1 Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Sun, 16 Apr 2017 08:43:34 -0400 Subject: [PATCH 0407/1381] Update packages.json --- packages.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages.json b/packages.json index dd01573..bc6396d 100644 --- a/packages.json +++ b/packages.json @@ -6213,8 +6213,7 @@ "tags": [ "plugin", "dylib", - "manager", - "" + "manager" ], "description": "Simple plugin implementation", "license": "BSD 3-Clause", From 05aa6e06a8083932da5fcb738a4a8730c12c7f7f Mon Sep 17 00:00:00 2001 From: Euan T Date: Tue, 25 Apr 2017 13:24:14 +0100 Subject: [PATCH 0408/1381] Added package tempdir --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 1022866..d8d465e 100644 --- a/packages.json +++ b/packages.json @@ -6227,7 +6227,7 @@ "async", "io", "socket", - "net", + "net", "tcp", "http", "libuv" @@ -6235,5 +6235,18 @@ "description": "Library for async programming and communication. This Library uses a future/promise, non-blocking I/O model based on libuv.", "license": "MIT", "web": "http://tulayang.github.io/node/" + }, + { + "name": "tempdir", + "url": "https://github.com/euantorano/tempdir.nim", + "method": "git", + "tags": [ + "temp", + "io", + "tmp" + ], + "description": "A Nim library to create and manage temporary directories.", + "license": "BSD3", + "web": "https://github.com/euantorano/tempdir.nim" } ] From 2affe068fcfbf95bbf0b5be0ffdb96b676eadc24 Mon Sep 17 00:00:00 2001 From: Daniil Yarancev Date: Wed, 26 Apr 2017 18:04:15 +0300 Subject: [PATCH 0409/1381] Added package mathexpr --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index d8d465e..a783911 100644 --- a/packages.json +++ b/packages.json @@ -6248,5 +6248,18 @@ "description": "A Nim library to create and manage temporary directories.", "license": "BSD3", "web": "https://github.com/euantorano/tempdir.nim" + }, + { + "name": "mathexpr", + "url": "https://github.com/TiberiumN/nim-mathexpr", + "method": "git", + "tags": [ + "math", + "mathparser", + "tinyexpr" + ], + "description": "MathExpr - wrapper around TinyExpr C library", + "license": "MIT", + "web": "https://github.com/TiberiumN/nim-mathexpr" } ] From 39b768f697db80373448a3cb216ea5d4e7b43a43 Mon Sep 17 00:00:00 2001 From: Zachary Carter Date: Sun, 30 Apr 2017 08:37:41 -0400 Subject: [PATCH 0410/1381] Added package frag --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index a783911..3b60f75 100644 --- a/packages.json +++ b/packages.json @@ -6261,5 +6261,19 @@ "description": "MathExpr - wrapper around TinyExpr C library", "license": "MIT", "web": "https://github.com/TiberiumN/nim-mathexpr" + }, + { + "name": "frag", + "url": "https://github.com/fragworks/frag", + "method": "git", + "tags": [ + "game", + "game-dev", + "2d", + "3d" + ], + "description": "A 2D|3D game engine", + "license": "MIT", + "web": "https://github.com/fragworks/frag" } ] From 6115ab9b31f62daa75e84e36f6ca556655c852df Mon Sep 17 00:00:00 2001 From: andri lim Date: Fri, 5 May 2017 16:52:58 +0700 Subject: [PATCH 0411/1381] add freetype package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 3b60f75..3e6fa29 100644 --- a/packages.json +++ b/packages.json @@ -6275,5 +6275,18 @@ "description": "A 2D|3D game engine", "license": "MIT", "web": "https://github.com/fragworks/frag" + }, + { + "name": "freetype", + "url": "https://github.com/jangko/freetype", + "method": "git", + "tags": [ + "font", + "renderint", + "library" + ], + "description": "wrapper for FreeType2 library", + "license": "MIT", + "web": "https://github.com/jangko/freetype" } ] From 25110f13f2d0bba57ebcc801cb880bfd7e52987c Mon Sep 17 00:00:00 2001 From: andri lim Date: Fri, 5 May 2017 18:25:13 +0700 Subject: [PATCH 0412/1381] add polyBool package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 3e6fa29..1433c90 100644 --- a/packages.json +++ b/packages.json @@ -6288,5 +6288,18 @@ "description": "wrapper for FreeType2 library", "license": "MIT", "web": "https://github.com/jangko/freetype" + }, + { + "name": "polyBool", + "url": "https://github.com/jangko/polyBool", + "method": "git", + "tags": [ + "polygon", + "clipper", + "library" + ], + "description": "Polygon Clipper Library (Martinez Algorithm)", + "license": "MIT", + "web": "https://github.com/jangko/polyBool" } ] From 84cbfe0710e9ade6ac91cd992075117966aaa6fc Mon Sep 17 00:00:00 2001 From: andri lim Date: Wed, 10 May 2017 16:44:13 +0700 Subject: [PATCH 0413/1381] add nimAGG package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 1433c90..c071697 100644 --- a/packages.json +++ b/packages.json @@ -6301,5 +6301,20 @@ "description": "Polygon Clipper Library (Martinez Algorithm)", "license": "MIT", "web": "https://github.com/jangko/polyBool" + }, + { + "name": "nimAGG", + "url": "https://github.com/jangko/nimAGG", + "method": "git", + "tags": [ + "renderer", + "rasterizer", + "library", + "2D", + "graphics" + ], + "description": "Hi Fidelity Rendering Engine", + "license": "MIT", + "web": "https://github.com/jangko/nimAGG" } ] From 100d10c57bcc9f8826ba1d7cd19139e09200edf2 Mon Sep 17 00:00:00 2001 From: Xiao-Yong Jin Date: Thu, 11 May 2017 11:07:41 -0500 Subject: [PATCH 0414/1381] Added package primme --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3e6fa29..5cdb792 100644 --- a/packages.json +++ b/packages.json @@ -6288,5 +6288,17 @@ "description": "wrapper for FreeType2 library", "license": "MIT", "web": "https://github.com/jangko/freetype" + }, + { + "name": "primme", + "url": "https://github.com/jxy/primme", + "method": "git", + "tags": [ + "library", + "eigenvalues" + ], + "description": "Nim interface for PRIMME: PReconditioned Iterative MultiMethod Eigensolver", + "license": "MIT", + "web": "https://github.com/jxy/primme" } ] From 4afb20429f57ec2d8239f1b11441f90409041ef0 Mon Sep 17 00:00:00 2001 From: Xiao-Yong Date: Thu, 11 May 2017 11:10:26 -0500 Subject: [PATCH 0415/1381] add more tags for primme --- packages.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 5cdb792..6c0c0fd 100644 --- a/packages.json +++ b/packages.json @@ -6295,7 +6295,9 @@ "method": "git", "tags": [ "library", - "eigenvalues" + "eigenvalues", + "high-performance", + "singular-value-decomposition" ], "description": "Nim interface for PRIMME: PReconditioned Iterative MultiMethod Eigensolver", "license": "MIT", From bd28713fd2d83a3e6b78f6185ee372a6c3196fde Mon Sep 17 00:00:00 2001 From: Xiao-Yong Jin Date: Fri, 12 May 2017 12:04:06 -0500 Subject: [PATCH 0416/1381] Added package sitmo --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 3e6fa29..b27f2e0 100644 --- a/packages.json +++ b/packages.json @@ -6288,5 +6288,19 @@ "description": "wrapper for FreeType2 library", "license": "MIT", "web": "https://github.com/jangko/freetype" + }, + { + "name": "sitmo", + "url": "https://github.com/jxy/sitmo", + "method": "git", + "tags": [ + "RNG", + "Sitmo", + "high-performance", + "random" + ], + "description": "Sitmo parallel random number generator in Nim", + "license": "MIT", + "web": "https://github.com/jxy/sitmo" } ] From 6cedabce05ce1f3f1f39685b4788f8be21dd80cd Mon Sep 17 00:00:00 2001 From: Jez Kabanov Date: Mon, 15 May 2017 13:58:47 +1000 Subject: [PATCH 0417/1381] Added package webaudio --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 610f65a..9e7290a 100644 --- a/packages.json +++ b/packages.json @@ -6344,5 +6344,21 @@ "description": "Sitmo parallel random number generator in Nim", "license": "MIT", "web": "https://github.com/jxy/sitmo" + }, + { + "name": "webaudio", + "url": "https://github.com/ftsf/nim-webaudio", + "method": "git", + "tags": [ + "javascript", + "js", + "web", + "audio", + "sound", + "music" + ], + "description": "API for Web Audio (JS)", + "license": "MIT", + "web": "https://github.com/ftsf/nim-webaudio" } ] From 0ad4721972485c6431b3d7f6fd705183bcb4e61b Mon Sep 17 00:00:00 2001 From: superfunc Date: Thu, 18 May 2017 01:14:40 -0700 Subject: [PATCH 0418/1381] Update package path for superfunc/{monad/maybe} --- packages.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 9e7290a..c2781e5 100644 --- a/packages.json +++ b/packages.json @@ -1592,18 +1592,18 @@ "web": "https://github.com/cowboy-coders/nim-openssl-evp" }, { - "name": "monad", - "url": "https://github.com/superfunc/monad", + "name": "maybe", + "url": "https://github.com/superfunc/maybe", "method": "git", "tags": [ "library", "functional", - "monad", - "functor" + "optional", + "monad" ], - "description": "basic monadic data types for Nim", + "description": "basic monadic maybe type for Nim", "license": "BSD3", - "web": "https://github.com/superfunc/monad" + "web": "https://github.com/superfunc/maybe" }, { "name": "eternity", From d2022569721e044d2d4c6f25fcd313d17549f375 Mon Sep 17 00:00:00 2001 From: rxi Date: Sun, 21 May 2017 09:11:43 +0100 Subject: [PATCH 0419/1381] Added gifwriter library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9e7290a..b7d4eb1 100644 --- a/packages.json +++ b/packages.json @@ -6360,5 +6360,18 @@ "description": "API for Web Audio (JS)", "license": "MIT", "web": "https://github.com/ftsf/nim-webaudio" + }, + { + "name": "gifwriter", + "url": "https://github.com/rxi/gifwriter", + "method": "git", + "tags": [ + "gif", + "image", + "library" + ], + "description": "Animated GIF writing library based on jo_gif", + "license": "MIT", + "web": "https://github.com/rxi/gifwriter" } ] From cbb2de08ad42e9403cf901b5e83755e0cdaf50ff Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Mon, 22 May 2017 11:27:07 +0200 Subject: [PATCH 0420/1381] Added CUDA bindings --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 9e7290a..bf1f406 100644 --- a/packages.json +++ b/packages.json @@ -6360,5 +6360,17 @@ "description": "API for Web Audio (JS)", "license": "MIT", "web": "https://github.com/ftsf/nim-webaudio" + }, + { + "name": "nimcuda", + "url": "https://github.com/unicredit/nimcuda", + "method": "git", + "tags": [ + "CUDA", + "GPU" + ], + "description": "CUDA bindings", + "license": "Apache2", + "web": "https://github.com/unicredit/nimcuda" } ] From f4dd8470114c6a280e7da4ae6072dc610a6f8c35 Mon Sep 17 00:00:00 2001 From: xyz Date: Mon, 22 May 2017 11:31:44 -0400 Subject: [PATCH 0421/1381] Rename boneGPIO to boneIO --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 9e7290a..83a48db 100644 --- a/packages.json +++ b/packages.json @@ -5433,8 +5433,8 @@ "web": "https://h3rald.com/minim" }, { - "name": "boneGPIO", - "url": "https://github.com/xyz32/boneGPIO", + "name": "boneIO", + "url": "https://github.com/xyz32/boneIO", "method": "git", "tags": [ "library", @@ -5443,7 +5443,7 @@ ], "description": "A low level GPIO library for the BeagleBone board family", "license": "MIT", - "web": "https://github.com/xyz32/boneGPIO" + "web": "https://github.com/xyz32/boneIO" }, { "name": "ui", From e659e445626a5de088eed5123e285d15fe88f9c8 Mon Sep 17 00:00:00 2001 From: Samantha Marshall Date: Tue, 23 May 2017 13:43:13 -0400 Subject: [PATCH 0422/1381] Added package libplist --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 4489fe6..307471a 100644 --- a/packages.json +++ b/packages.json @@ -6385,5 +6385,23 @@ "description": "Animated GIF writing library based on jo_gif", "license": "MIT", "web": "https://github.com/rxi/gifwriter" + }, + { + "name": "libplist", + "url": "https://github.com/samdmarshall/libplist.nim", + "method": "git", + "tags": [ + "libplist", + "property", + "list", + "property-list", + "parsing", + "binary", + "xml", + "format" + ], + "description": "wrapper around libplist https://github.com/libimobiledevice/libplist", + "license": "MIT", + "web": "https://github.com/samdmarshall/libplist.nim" } ] From c83b7883ab1cf6980c6dd39e8a15f3c3c9a90916 Mon Sep 17 00:00:00 2001 From: Greg G Date: Thu, 25 May 2017 20:59:07 +0200 Subject: [PATCH 0423/1381] Added package getch --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 307471a..979e553 100644 --- a/packages.json +++ b/packages.json @@ -6403,5 +6403,17 @@ "description": "wrapper around libplist https://github.com/libimobiledevice/libplist", "license": "MIT", "web": "https://github.com/samdmarshall/libplist.nim" + }, + { + "name": "getch", + "url": "https://github.com/6A/getch", + "method": "git", + "tags": [ + "getch", + "char" + ], + "description": "getch() for Windows and Unix", + "license": "MIT", + "web": "https://github.com/6A/getch" } ] From 21a8c5462c35aacf6fb7c7aecd5725bdf95433df Mon Sep 17 00:00:00 2001 From: Jez Kabanov Date: Sat, 27 May 2017 16:46:38 +1000 Subject: [PATCH 0424/1381] Added package gifenc --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 979e553..126d345 100644 --- a/packages.json +++ b/packages.json @@ -6415,5 +6415,17 @@ "description": "getch() for Windows and Unix", "license": "MIT", "web": "https://github.com/6A/getch" + }, + { + "name": "gifenc", + "url": "https://github.com/ftsf/gifenc", + "method": "git", + "tags": [ + "gif", + "encoder" + ], + "description": "Gif Encoder", + "license": "Public Domain", + "web": "https://github.com/ftsf/gifenc" } ] From 3d6ad654700a4674cf90b6d4521d59a991c6a788 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Mon, 29 May 2017 18:11:28 +0200 Subject: [PATCH 0425/1381] Added NimLAPACK --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 126d345..1075463 100644 --- a/packages.json +++ b/packages.json @@ -6427,5 +6427,17 @@ "description": "Gif Encoder", "license": "Public Domain", "web": "https://github.com/ftsf/gifenc" + }, + { + "name": "nimlapack", + "url": "https://github.com/unicredit/nimlapack", + "method": "git", + "tags": [ + "LAPACK", + "linear-algebra" + ], + "description": "LAPACK bindings", + "license": "Apache2", + "web": "https://github.com/unicredit/nimlapack" } ] From d24e26d61c6795e4c72b4e785249bfd1a7e3b7fb Mon Sep 17 00:00:00 2001 From: Joshua Cearley Date: Tue, 30 May 2017 02:31:16 -0500 Subject: [PATCH 0426/1381] Added package jack --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1075463..63a0b76 100644 --- a/packages.json +++ b/packages.json @@ -6439,5 +6439,19 @@ "description": "LAPACK bindings", "license": "Apache2", "web": "https://github.com/unicredit/nimlapack" + }, + { + "name": "jack", + "url": "https://github.com/Skrylar/nim-jack", + "method": "git", + "tags": [ + "jack", + "audio", + "binding", + "wrapper" + ], + "description": "Shiny bindings to the JACK Audio Connection Kit.", + "license": "MIT", + "web": "https://github.com/Skrylar/nim-jack" } ] From 21b74f01cedc36ac4773eae00137b889bfcf54bf Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Thu, 1 Jun 2017 21:47:13 -0400 Subject: [PATCH 0427/1381] Added serializetools. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 63a0b76..d0c911b 100644 --- a/packages.json +++ b/packages.json @@ -6453,5 +6453,17 @@ "description": "Shiny bindings to the JACK Audio Connection Kit.", "license": "MIT", "web": "https://github.com/Skrylar/nim-jack" + }, + { + "name": "serializetools", + "url": "https://github.com/JeffersonLab/serializetools", + "method": "git", + "tags": [ + "serialization", + "xml" + ], + "description": "Support for serialization of objects", + "license": "MIT", + "web": "https://github.com/JeffersonLab/serializetools" } ] From 3a4e504dbdb8f29914eb465aed82e3897bbb32af Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Mon, 5 Jun 2017 11:06:51 +0200 Subject: [PATCH 0428/1381] added link to standard library --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index db4d91e..dc1a0b1 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ This is a central listing of all packages for [Nimble](https://github.com/nim-lang/nimble), a package manager for the [Nim programming language](http://nim-lang.org). +An overview of all Nimble packages is available in the +[library documentation](https://nim-lang.org/docs/lib.html#nimble). + ## Adding your own package To add your own package, fork this repository, edit [packages.json](packages.json) and make a pull request. From 3e1dd0bdac1274f034ab4dd2c279ac44cfc28c9a Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Tue, 6 Jun 2017 16:25:30 +0200 Subject: [PATCH 0429/1381] Added Neo --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index d0c911b..303b82c 100644 --- a/packages.json +++ b/packages.json @@ -6465,5 +6465,21 @@ "description": "Support for serialization of objects", "license": "MIT", "web": "https://github.com/JeffersonLab/serializetools" + }, + { + "name": "neo", + "url": "https://github.com/unicredit/neo", + "method": "git", + "tags": [ + "vector", + "matrix", + "linear algebra", + "BLAS", + "LAPACK", + "CUDA" + ], + "description": "Linear algebra for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/neo" } ] From 60224d9742f4396f8d2c198d8fbe2c6110a497bf Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Tue, 6 Jun 2017 16:27:45 +0200 Subject: [PATCH 0430/1381] Fixed neo web url --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 303b82c..86e5124 100644 --- a/packages.json +++ b/packages.json @@ -6480,6 +6480,6 @@ ], "description": "Linear algebra for Nim", "license": "Apache License 2.0", - "web": "https://github.com/unicredit/neo" + "web": "https://unicredit.github.io/neo/" } ] From b8c03fd3c4f59d191ecac82359e500c48664fcd9 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Tue, 6 Jun 2017 17:55:11 +0200 Subject: [PATCH 0431/1381] Removed spaces in tags --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 86e5124..4dd3865 100644 --- a/packages.json +++ b/packages.json @@ -2747,7 +2747,7 @@ "tags": [ "vector", "matrix", - "linear algebra", + "linear-algebra", "BLAS", "LAPACK" ], @@ -6473,7 +6473,7 @@ "tags": [ "vector", "matrix", - "linear algebra", + "linear-algebra", "BLAS", "LAPACK", "CUDA" From 9b5c9d8568a15f5497fc564073994166e8f9f17e Mon Sep 17 00:00:00 2001 From: wt Date: Wed, 7 Jun 2017 14:18:29 +0800 Subject: [PATCH 0432/1381] Add httpkit --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 4dd3865..8eb381c 100644 --- a/packages.json +++ b/packages.json @@ -6481,5 +6481,21 @@ "description": "Linear algebra for Nim", "license": "Apache License 2.0", "web": "https://unicredit.github.io/neo/" + }, + { + "name": "httpkit", + "url": "https://github.com/tulayang/httpkit", + "method": "git", + "tags": [ + "http", + "request", + "response", + "stream", + "big file", + "async" + ], + "description": "An efficient HTTP tool suite written in pure nim. Help you to write HTTP services or clients via TCP, UDP, or even Unix Domain socket, etc.", + "license": "MIT", + "web": "http://tulayang.github.io/httpkit.html" } ] From b101e64cf54428d5a4563f923f4aafcfeab66c16 Mon Sep 17 00:00:00 2001 From: wt Date: Wed, 7 Jun 2017 14:29:37 +0800 Subject: [PATCH 0433/1381] Update web of httpkit --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 8eb381c..6330248 100644 --- a/packages.json +++ b/packages.json @@ -6496,6 +6496,6 @@ ], "description": "An efficient HTTP tool suite written in pure nim. Help you to write HTTP services or clients via TCP, UDP, or even Unix Domain socket, etc.", "license": "MIT", - "web": "http://tulayang.github.io/httpkit.html" + "web": "https://github.com/tulayang/httpkit" } ] From 910f10f1d2b68ceb399c83ad4b187a16b005c6f0 Mon Sep 17 00:00:00 2001 From: wt Date: Sat, 10 Jun 2017 19:49:29 +0800 Subject: [PATCH 0434/1381] Del space of `big file` --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 6330248..6430604 100644 --- a/packages.json +++ b/packages.json @@ -6491,7 +6491,7 @@ "request", "response", "stream", - "big file", + "bigfile", "async" ], "description": "An efficient HTTP tool suite written in pure nim. Help you to write HTTP services or clients via TCP, UDP, or even Unix Domain socket, etc.", From 22719138fa1166ef11b278d0185189c0a0958e7c Mon Sep 17 00:00:00 2001 From: Adel Qalieh Date: Tue, 13 Jun 2017 14:44:28 -0400 Subject: [PATCH 0435/1381] Added package ulid --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 6430604..2b2f68e 100644 --- a/packages.json +++ b/packages.json @@ -6497,5 +6497,20 @@ "description": "An efficient HTTP tool suite written in pure nim. Help you to write HTTP services or clients via TCP, UDP, or even Unix Domain socket, etc.", "license": "MIT", "web": "https://github.com/tulayang/httpkit" + }, + { + "name": "ulid", + "url": "https://github.com/adelq/ulid", + "method": "git", + "tags": [ + "library", + "id", + "ulid", + "uuid", + "guid" + ], + "description": "Universally Unique Lexicographically Sortable Identifier", + "license": "MIT", + "web": "https://github.com/adelq/ulid" } ] From 46e55707a4b9920c4a08e036548b46161014f962 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 14 Jun 2017 23:42:16 -0500 Subject: [PATCH 0436/1381] Added package tiger --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 2b2f68e..3a6bce2 100644 --- a/packages.json +++ b/packages.json @@ -6512,5 +6512,16 @@ "description": "Universally Unique Lexicographically Sortable Identifier", "license": "MIT", "web": "https://github.com/adelq/ulid" + }, + { + "name": "tiger", + "url": "https://github.com/ehmry/tiger", + "method": "git", + "tags": [ + "hash" + ], + "description": "Tiger hash function", + "license": "MIT", + "web": "https://github.com/ehmry/tiger" } ] From 8d2cf1b3f953896112cb9dc1995ff2f35630db13 Mon Sep 17 00:00:00 2001 From: Daniil Yarancev Date: Fri, 16 Jun 2017 00:28:58 +0300 Subject: [PATCH 0437/1381] Create packages.json --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 2b2f68e..12b964d 100644 --- a/packages.json +++ b/packages.json @@ -6512,5 +6512,20 @@ "description": "Universally Unique Lexicographically Sortable Identifier", "license": "MIT", "web": "https://github.com/adelq/ulid" + }, + { + "name": "osureplay", + "url": "https://github.com/TiberiumN/nim-osureplay", + "method": "git", + "tags": [ + "library", + "osu!", + "parser", + "osugame", + "replay" + ], + "description": "osu! replay parser", + "license": "MIT", + "web": "https://github.com/TiberiumN/nim-osureplay" } ] From 23d0cc68eac99fe5a621bf9163514f8c9ae5beef Mon Sep 17 00:00:00 2001 From: ephja Date: Fri, 16 Jun 2017 01:06:21 +0200 Subject: [PATCH 0438/1381] use new URLs --- packages.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 2b2f68e..ec57281 100644 --- a/packages.json +++ b/packages.json @@ -251,7 +251,7 @@ }, { "name": "nim-glfw", - "url": "https://github.com/EXetoC/nim-glfw/", + "url": "https://github.com/ephja/nim-glfw", "method": "git", "tags": [ "library", @@ -262,11 +262,11 @@ ], "description": "A high-level GLFW 3 wrapper", "license": "MIT", - "web": "https://github.com/EXetoC/nim-glfw" + "web": "https://github.com/ephja/nim-glfw" }, { "name": "nim-ao", - "url": "https://github.com/EXetoC/nim-ao/", + "url": "https://github.com/ephja/nim-ao", "method": "git", "tags": [ "library", @@ -274,7 +274,7 @@ ], "description": "A high-level libao wrapper", "license": "MIT", - "web": "https://github.com/EXetoC/nim-ao" + "web": "https://github.com/ephja/nim-ao" }, { "name": "termbox", From 478a64938f98e682b28ce2691d7dc7120c8007ed Mon Sep 17 00:00:00 2001 From: Chloe Kudryavtsev Date: Sat, 17 Jun 2017 05:36:18 -0400 Subject: [PATCH 0439/1381] Added package pipe --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 2b2f68e..d819d90 100644 --- a/packages.json +++ b/packages.json @@ -6512,5 +6512,16 @@ "description": "Universally Unique Lexicographically Sortable Identifier", "license": "MIT", "web": "https://github.com/adelq/ulid" + }, + { + "name": "pipe", + "url": "https://github.com/5paceToast/pipe", + "method": "git", + "tags": [ + "v0.1.0" + ], + "description": "Pipe operator for nim.", + "license": "MIT", + "web": "https://github.com/5paceToast/pipe" } ] From 839a1426ee0cae44bb99e00182cd29051c1a2925 Mon Sep 17 00:00:00 2001 From: Chloe Kudryavtsev Date: Sat, 17 Jun 2017 05:38:34 -0400 Subject: [PATCH 0440/1381] Fix packages.json tags --- packages.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d819d90..4fe7c7e 100644 --- a/packages.json +++ b/packages.json @@ -6518,7 +6518,10 @@ "url": "https://github.com/5paceToast/pipe", "method": "git", "tags": [ - "v0.1.0" + "pipe", + "macro", + "operator", + "functional" ], "description": "Pipe operator for nim.", "license": "MIT", From ba40406ea4c764ef68f3687205fff5a1f39331a8 Mon Sep 17 00:00:00 2001 From: David Krause Date: Sun, 18 Jun 2017 12:59:43 +0200 Subject: [PATCH 0441/1381] Update packages.json --- packages.json | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bd9251b..25acd95 100644 --- a/packages.json +++ b/packages.json @@ -6526,5 +6526,32 @@ "description": "Pipe operator for nim.", "license": "MIT", "web": "https://github.com/5paceToast/pipe" - } + }, + { + "name": "flatdb", + "url": "https://github.com/enthus1ast/flatdb", + "method": "git", + "tags": [ + "database", + "json", + "pure" + ], + "description": "small/tiny, flatfile, jsonl based, inprogress database for nim", + "license": "MIT", + "web": "https://github.com/enthus1ast/flatdb" + }, + { + "name": "nwt", + "url": "https://github.com/enthus1ast/nimWebTemplates", + "method": "git", + "tags": [ + "template", + "html", + "pure", + "jinja" + ], + "description": "experiment to build a jinja like template parser", + "license": "MIT", + "web": "https://github.com/enthus1ast/nimWebTemplates" + } ] From aa3a1c699d2ecee38c80e3284330ab5b6cc851b5 Mon Sep 17 00:00:00 2001 From: rxi Date: Sat, 24 Jun 2017 16:53:02 +0100 Subject: [PATCH 0442/1381] Added packages cmixer and cmixer_sdl2 --- packages.json | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 13ca89d..669889d 100644 --- a/packages.json +++ b/packages.json @@ -6564,5 +6564,37 @@ "description": "experiment to build a jinja like template parser", "license": "MIT", "web": "https://github.com/enthus1ast/nimWebTemplates" - } + }, + { + "name": "cmixer", + "url": "https://github.com/rxi/cmixer-nim", + "method": "git", + "tags": [ + "library", + "audio", + "mixer", + "sound", + "wav", + "ogg" + ], + "description": "Lightweight audio mixer for games", + "license": "MIT", + "web": "https://github.com/rxi/cmixer-nim" + }, + { + "name": "cmixer_sdl2", + "url": "https://github.com/rxi/cmixer_sdl2-nim", + "method": "git", + "tags": [ + "library", + "audio", + "mixer", + "sound", + "wav", + "ogg" + ], + "description": "Lightweight audio mixer for SDL2", + "license": "MIT", + "web": "https://github.com/rxi/cmixer_sdl2-nim" + } ] From 99db0f9648144464e95ae7a503dab108bd1c7f51 Mon Sep 17 00:00:00 2001 From: Xiao-Yong Jin Date: Thu, 29 Jun 2017 14:48:52 -0500 Subject: [PATCH 0443/1381] Added package chebyshev --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 13ca89d..15fe15d 100644 --- a/packages.json +++ b/packages.json @@ -6564,5 +6564,18 @@ "description": "experiment to build a jinja like template parser", "license": "MIT", "web": "https://github.com/enthus1ast/nimWebTemplates" - } + }, + { + "name": "chebyshev", + "url": "https://github.com/jxy/chebyshev", + "method": "git", + "tags": [ + "math", + "approximation", + "numerical" + ], + "description": "Chebyshev approximation.", + "license": "MIT", + "web": "https://github.com/jxy/chebyshev" + } ] From 41933592d589f51eb5c30d5d59946db9981fd9a7 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Sat, 1 Jul 2017 11:18:16 +0700 Subject: [PATCH 0444/1381] Added package scram --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index a3dba0e..5f744c5 100644 --- a/packages.json +++ b/packages.json @@ -6609,5 +6609,21 @@ "description": "Chebyshev approximation.", "license": "MIT", "web": "https://github.com/jxy/chebyshev" + }, + { + "name": "scram", + "url": "https://github.com/rgv151/scram", + "method": "git", + "tags": [ + "scram", + "sasl", + "authentication", + "salted", + "challenge", + "response" + ], + "description": "Salted Challenge Response Authentication Mechanism (SCRAM) ", + "license": "MIT", + "web": "https://github.com/rgv151/scram" } ] From f2dc8c49dba17366a403c12b6cd98d82e59b7a82 Mon Sep 17 00:00:00 2001 From: Mike Pechkin Date: Mon, 3 Jul 2017 11:44:30 +0300 Subject: [PATCH 0445/1381] add blake2 library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 5f744c5..0698dc2 100644 --- a/packages.json +++ b/packages.json @@ -6626,4 +6626,18 @@ "license": "MIT", "web": "https://github.com/rgv151/scram" } + { + "name": "blake2", + "url": "https://bitbucket.org/mihailp/blake2/", + "method": "hg", + "tags": [ + "crypto", + "cryptography", + "hash", + "security" + ], + "description": "blake2 - cryptographic hash function", + "license": "CC0", + "web": "https://bitbucket.org/mihailp/blake2/" + } ] From 92eb2c8a7cdd4e5f4805d88ee152285c1706691a Mon Sep 17 00:00:00 2001 From: tankfeeder Date: Mon, 3 Jul 2017 11:59:03 +0300 Subject: [PATCH 0446/1381] add comma --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0698dc2..821d344 100644 --- a/packages.json +++ b/packages.json @@ -6625,7 +6625,7 @@ "description": "Salted Challenge Response Authentication Mechanism (SCRAM) ", "license": "MIT", "web": "https://github.com/rgv151/scram" - } + }, { "name": "blake2", "url": "https://bitbucket.org/mihailp/blake2/", From cd4c7cf34dfcb16774f7db9779923e06b61650e4 Mon Sep 17 00:00:00 2001 From: Mark Molnar Date: Mon, 3 Jul 2017 21:11:56 +0200 Subject: [PATCH 0447/1381] Added spinny --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 821d344..1ceb464 100644 --- a/packages.json +++ b/packages.json @@ -6639,5 +6639,19 @@ "description": "blake2 - cryptographic hash function", "license": "CC0", "web": "https://bitbucket.org/mihailp/blake2/" + }, + { + "name": "spinny", + "url": "https://github.com/molnarmark/spinny", + "method": "git", + "tags": [ + "terminal", + "spinner", + "spinny", + "load" + ], + "description": "Spinny is a tiny terminal spinner package for the Nim Programming Language.", + "license": "MIT", + "web": "https://github.com/molnarmark/spinny" } ] From f34d8b02bc0c1e5a2d1e668b63103a1f2735736a Mon Sep 17 00:00:00 2001 From: Simon Krauter Date: Thu, 6 Jul 2017 21:58:43 +0200 Subject: [PATCH 0448/1381] Added NiGui --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1ceb464..2e96268 100644 --- a/packages.json +++ b/packages.json @@ -6653,5 +6653,18 @@ "description": "Spinny is a tiny terminal spinner package for the Nim Programming Language.", "license": "MIT", "web": "https://github.com/molnarmark/spinny" + }, + { + "name": "nigui", + "url": "https://github.com/trustable-code/NiGui", + "method": "git", + "tags": [ + "gui", + "windows", + "gtk" + ], + "description": "NiGui is a cross-platform, desktop GUI toolkit using native widgets.", + "license": "MIT", + "web": "https://github.com/trustable-code/NiGui" } ] From 195e3a918c1a629f09f705f47827d18078187ece Mon Sep 17 00:00:00 2001 From: skilchen Date: Sat, 8 Jul 2017 15:57:40 +0200 Subject: [PATCH 0449/1381] added nimcalcal - translation of PyCalCal: calendrical computations from Reingold/Dershowitz (#535) * added nimcalcal - PyCalCal translated to Nim - Calendrical Calculations from Reingold/Dershowitz * added nimcalcal - PyCalCal translated to Nim - Calendrical Calculations from Reingold/Dershowitz * third try --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 2e96268..59d75e6 100644 --- a/packages.json +++ b/packages.json @@ -6666,5 +6666,17 @@ "description": "NiGui is a cross-platform, desktop GUI toolkit using native widgets.", "license": "MIT", "web": "https://github.com/trustable-code/NiGui" + }, + { + "name": "nimcalcal", + "url": "https://github.com/skilchen/nimcalcal", + "method": "git", + "tags": [ + "calendar", + "library" + ], + "description": "nimcalcal - PyCalCal translated to Nim, Calendrical Calculations from Reingold/Dershowitz", + "license": "MIT", + "web": "http://www3.cs.stonybrook.edu/~algorith/implement/reingold/implement.shtml" } ] From 505a05f19d66856fe6c8c54f574f89d5702a2737 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 8 Jul 2017 15:35:17 +0100 Subject: [PATCH 0450/1381] Rename monad to maybe. Add rename package instructions to readme. --- README.md | 27 +++++++++++++++++++++++++++ packages.json | 4 ++++ 2 files changed, 31 insertions(+) diff --git a/README.md b/README.md index dc1a0b1..fda9691 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,30 @@ Your packages may be removed if the url stops working. It goes without saying that your pull request will not be accepted unless you fill out all of the above required fields correctly, the package that ``url`` points to must also contain a .nimble file, or else it will be rejected. + +## Renaming packages + +To rename a package you will need to add a new entry for your package. Simply +perform the following steps: + +* Duplicate your package's current entry. +* Remove every field in one of the entries apart from the `name` field. +* Add an `alias` field to that entry. +* Change the name in the other package entry. + +For example: + +``` +... + { + "name": "myoldname", + "alias": "mynewname" + }, + { + "name": "mynewname", + "url": "...", + "method": "git", + ... + }, +... +``` \ No newline at end of file diff --git a/packages.json b/packages.json index a5159f7..4f65c2b 100644 --- a/packages.json +++ b/packages.json @@ -1591,6 +1591,10 @@ "license": "OpenSSL License and SSLeay License", "web": "https://github.com/cowboy-coders/nim-openssl-evp" }, + { + "name": "monad", + "alias": "maybe" + }, { "name": "maybe", "url": "https://github.com/superfunc/maybe", From c86d2ecb185898a20ef09d4cb065d91a045d9ee2 Mon Sep 17 00:00:00 2001 From: t8m8 Date: Mon, 10 Jul 2017 18:38:59 +0900 Subject: [PATCH 0451/1381] Add currying --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index df63a71..05d220d 100644 --- a/packages.json +++ b/packages.json @@ -6697,5 +6697,18 @@ "description": "nimcalcal - PyCalCal translated to Nim, Calendrical Calculations from Reingold/Dershowitz", "license": "MIT", "web": "http://www3.cs.stonybrook.edu/~algorith/implement/reingold/implement.shtml" + }, + { + "name": "currying", + "url": "https://github.com/t8m8/currying", + "method": "git", + "tags": [ + "library", + "functional", + "currying" + ], + "description": "Currying library for Nim", + "license": "MIT", + "web": "https://github.com/t8m8/currying" } ] From e7ca6b455666b6c1a0082ef93e5525e834eea49b Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 11 Jul 2017 00:02:17 +0100 Subject: [PATCH 0452/1381] Add support for aliases to package scanner. --- package_scanner.nim | 85 +++++++++++++++++++++++++-------------------- 1 file changed, 47 insertions(+), 38 deletions(-) diff --git a/package_scanner.nim b/package_scanner.nim index 7d16e0b..828bcc9 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -73,6 +73,12 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = echo "W: Another error attempting to request: ", url echo " Error was: ", getCurrentExceptionMsg() +proc verifyAlias(pdata: JsonNode, result: var int) = + if not pdata.hasKey("name"): + echo "E: missing alias' package name" + result.inc() + + # TODO: Verify that 'alias' points to a known package. proc check(): int = var @@ -88,45 +94,48 @@ proc check(): int = for pdata in pkg_list: name = if pdata.hasKey("name"): pdata["name"].str else: nil - if name.isNil: - echo "E: missing package name" - result.inc() - - elif not pdata.hasKey("method"): - echo "E: ", name, " has no method" - result.inc() - - elif not (pdata["method"].str in VCS_TYPES): - echo "E: ", name, " has an unknown method: ", pdata["method"].str - result.inc() - - elif not pdata.hasKey("url"): - echo "E: ", name, " has no URL" - result.inc() - - elif pdata.hasKey("web") and not canFetchNimbleRepository(name, pdata["web"]): - result.inc() - - elif not pdata.hasKey("tags"): - echo "E: ", name, " has no tags" - result.inc() - - elif not pdata.hasKey("description"): - echo "E: ", name, " has no description" - result.inc() - - elif not pdata.hasKey("license"): - echo "E: ", name, " has no license" - result.inc() - - elif pdata["url"].str.normalize.startsWith("git://github.com/"): - echo "E: ", name, " has an insecure git:// URL instead of https://" - result.inc() - + if pdata.hasKey("alias"): + verifyAlias(pdata, result) else: - # Other warnings should go here - if not (pdata["license"].str in LICENSES): - echo "W: ", name, " has an unexpected license: ", pdata["license"] + if name.isNil: + echo "E: missing package name" + result.inc() + + elif not pdata.hasKey("method"): + echo "E: ", name, " has no method" + result.inc() + + elif not (pdata["method"].str in VCS_TYPES): + echo "E: ", name, " has an unknown method: ", pdata["method"].str + result.inc() + + elif not pdata.hasKey("url"): + echo "E: ", name, " has no URL" + result.inc() + + elif pdata.hasKey("web") and not canFetchNimbleRepository(name, pdata["web"]): + result.inc() + + elif not pdata.hasKey("tags"): + echo "E: ", name, " has no tags" + result.inc() + + elif not pdata.hasKey("description"): + echo "E: ", name, " has no description" + result.inc() + + elif not pdata.hasKey("license"): + echo "E: ", name, " has no license" + result.inc() + + elif pdata["url"].str.normalize.startsWith("git://github.com/"): + echo "E: ", name, " has an insecure git:// URL instead of https://" + result.inc() + + else: + # Other warnings should go here + if not (pdata["license"].str in LICENSES): + echo "W: ", name, " has an unexpected license: ", pdata["license"] if name.normalize notin names: names.incl(name.normalize) From 8340d2e3ddd66135c27bc002f96475141ed7bf7d Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Wed, 12 Jul 2017 17:57:35 +0300 Subject: [PATCH 0453/1381] Added rect_packer --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 05d220d..fef7fce 100644 --- a/packages.json +++ b/packages.json @@ -6710,5 +6710,18 @@ "description": "Currying library for Nim", "license": "MIT", "web": "https://github.com/t8m8/currying" + }, + { + "name": "rect_packer", + "url": "https://github.com/yglukhov/rect_packer", + "method": "git", + "tags": [ + "library", + "geometry", + "packing" + ], + "description": "Pack rects into bigger rect", + "license": "MIT", + "web": "https://github.com/yglukhov/rect_packer" } ] From 18739fc8fed2a46fbea4b9c08bb8cd6d825850c4 Mon Sep 17 00:00:00 2001 From: Stefan Salewski Date: Thu, 13 Jul 2017 10:54:24 +0200 Subject: [PATCH 0454/1381] Added package gintro --- packages.json | 37 ++++++++++++++++++++++++------------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/packages.json b/packages.json index fef7fce..a775d9d 100644 --- a/packages.json +++ b/packages.json @@ -6518,19 +6518,19 @@ "web": "https://github.com/adelq/ulid" }, { - "name": "osureplay", - "url": "https://github.com/TiberiumN/nim-osureplay", - "method": "git", - "tags": [ - "library", - "osu!", - "parser", - "osugame", - "replay" - ], - "description": "osu! replay parser", - "license": "MIT", - "web": "https://github.com/TiberiumN/nim-osureplay" + "name": "osureplay", + "url": "https://github.com/TiberiumN/nim-osureplay", + "method": "git", + "tags": [ + "library", + "osu!", + "parser", + "osugame", + "replay" + ], + "description": "osu! replay parser", + "license": "MIT", + "web": "https://github.com/TiberiumN/nim-osureplay" }, { "name": "tiger", @@ -6723,5 +6723,16 @@ "description": "Pack rects into bigger rect", "license": "MIT", "web": "https://github.com/yglukhov/rect_packer" + }, + { + "name": "gintro", + "url": "https://github.com/stefansalewski/gintro", + "method": "git", + "tags": [ + "yes" + ], + "description": "High level GObject-Introspection based GTK3 bindings", + "license": "MIT", + "web": "https://github.com/stefansalewski/gintro" } ] From 76186d867d901e93728084604b78486d793668f9 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Thu, 13 Jul 2017 18:42:15 +0200 Subject: [PATCH 0455/1381] Add arraymancer Arraymancer is a tensor / multidimensional array --- packages.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fef7fce..82ecaf6 100644 --- a/packages.json +++ b/packages.json @@ -6723,5 +6723,22 @@ "description": "Pack rects into bigger rect", "license": "MIT", "web": "https://github.com/yglukhov/rect_packer" - } + }, + { + "name": "arraymancer", + "url": "https://github.com/mratsim/Arraymancer", + "method": "git", + "tags": [ + "vector", + "matrix", + "array", + "ndarray", + "multidimensional-array" + "linear-algebra", + "tensor" + ], + "description": "A tensor (multidimensional array) library for Nim", + "license": "Apache License 2.0", + "web": "https://mratsim.github.io/Arraymancer/" + }, ] From e9f08e333079d70ea4e599458f223aad49ed3d9d Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Fri, 14 Jul 2017 00:07:47 +0200 Subject: [PATCH 0456/1381] Remove trailing comma --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 82ecaf6..7b65cd1 100644 --- a/packages.json +++ b/packages.json @@ -6740,5 +6740,5 @@ "description": "A tensor (multidimensional array) library for Nim", "license": "Apache License 2.0", "web": "https://mratsim.github.io/Arraymancer/" - }, + } ] From a7438c7d2e4d4068e699e52d64ce798a10e199e9 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Fri, 14 Jul 2017 00:21:18 +0200 Subject: [PATCH 0457/1381] add missing comma --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 7b65cd1..3a50ebb 100644 --- a/packages.json +++ b/packages.json @@ -6733,7 +6733,7 @@ "matrix", "array", "ndarray", - "multidimensional-array" + "multidimensional-array", "linear-algebra", "tensor" ], From d08a994fa07aaec9c3c7226602a500347bd3d1d3 Mon Sep 17 00:00:00 2001 From: Mike Pechkin Date: Sun, 16 Jul 2017 19:37:55 +0300 Subject: [PATCH 0458/1381] add sha3 library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 3a50ebb..9e50a25 100644 --- a/packages.json +++ b/packages.json @@ -6740,5 +6740,19 @@ "description": "A tensor (multidimensional array) library for Nim", "license": "Apache License 2.0", "web": "https://mratsim.github.io/Arraymancer/" + }, + { + "name": "sha3", + "url": "https://bitbucket.org/mihailp/sha3/", + "method": "hg", + "tags": [ + "crypto", + "cryptography", + "hash", + "security" + ], + "description": "sha3 - cryptographic hash function", + "license": "CC0", + "web": "https://bitbucket.org/mihailp/sha3/" } ] From 4fbcb58ed95df53ffde820392d914b9dcaea52ba Mon Sep 17 00:00:00 2001 From: piedar Date: Mon, 17 Jul 2017 01:18:59 -0400 Subject: [PATCH 0459/1381] add coalesce --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9e50a25..1dee599 100644 --- a/packages.json +++ b/packages.json @@ -6754,5 +6754,19 @@ "description": "sha3 - cryptographic hash function", "license": "CC0", "web": "https://bitbucket.org/mihailp/sha3/" + }, + { + "name": "coalesce", + "url": "https://github.com/piedar/coalesce", + "method": "git", + "tags": [ + "nil", + "null", + "options", + "operator" + ], + "description": "A nil coalescing operator ?? for Nim", + "license": "MIT", + "web": "https://github.com/piedar/coalesce" } ] From 28a67a938ce8376fb56a1fccaa59cb017c515f51 Mon Sep 17 00:00:00 2001 From: tulayang Date: Fri, 21 Jul 2017 20:13:44 +0800 Subject: [PATCH 0460/1381] Add asyncmysql --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 421c32f..f0bd112 100644 --- a/packages.json +++ b/packages.json @@ -6782,5 +6782,19 @@ "description": "A nil coalescing operator ?? for Nim", "license": "MIT", "web": "https://github.com/piedar/coalesce" + }, + { + "name": "asyncmysql", + "url": "https://github.com/tulayang/asyncmysql", + "method": "git", + "tags": [ + "mysql", + "async", + "asynchronous", + "packet parser" + ], + "description": "Asynchronous MySQL connector written in pure Nim", + "license": "MIT", + "web": "https://github.com/tulayang/asyncmysql" } ] From d5efe20f83690ede7aa4c78047f5fcc89dbf10c8 Mon Sep 17 00:00:00 2001 From: wt Date: Sat, 22 Jul 2017 08:23:15 +0800 Subject: [PATCH 0461/1381] Del spaces --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index f0bd112..715a968 100644 --- a/packages.json +++ b/packages.json @@ -6791,7 +6791,7 @@ "mysql", "async", "asynchronous", - "packet parser" + "parser" ], "description": "Asynchronous MySQL connector written in pure Nim", "license": "MIT", From bde07255287568520ddac70c50ffe002b977255b Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Mon, 24 Jul 2017 10:45:47 +0300 Subject: [PATCH 0462/1381] Added cassandra --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 715a968..9f03a89 100644 --- a/packages.json +++ b/packages.json @@ -6796,5 +6796,20 @@ "description": "Asynchronous MySQL connector written in pure Nim", "license": "MIT", "web": "https://github.com/tulayang/asyncmysql" + }, + { + "name": "cassandra", + "url": "https://github.com/yglukhov/cassandra", + "method": "git", + "tags": [ + "cassandra", + "database", + "wrapper", + "bindings", + "driver" + ], + "description": "Bindings to Cassandra DB driver", + "license": "MIT", + "web": "https://github.com/yglukhov/cassandra" } ] From a0c9c5ca803566e1167fd4e3b612009bf3e6173e Mon Sep 17 00:00:00 2001 From: waylon531 Date: Tue, 25 Jul 2017 15:08:57 -0700 Subject: [PATCH 0463/1381] Added package tf2plug --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9f03a89..f83f10c 100644 --- a/packages.json +++ b/packages.json @@ -6811,5 +6811,19 @@ "description": "Bindings to Cassandra DB driver", "license": "MIT", "web": "https://github.com/yglukhov/cassandra" + }, + { + "name": "tf2plug", + "url": "https://github.com/waylon531/tf2plug", + "method": "git", + "tags": [ + "app", + "binary", + "tool", + "tf2" + ], + "description": "A mod manager for TF2", + "license": "GPLv3", + "web": "https://github.com/waylon531/tf2plug" } ] From e607106187849e131a5cef0c00291da07d0a63d4 Mon Sep 17 00:00:00 2001 From: waylon531 Date: Tue, 25 Jul 2017 15:17:52 -0700 Subject: [PATCH 0464/1381] Fixed git URL `nimble publish` used the wrong url by default, it defaults to github while my project was on gitlab --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index f83f10c..09117d6 100644 --- a/packages.json +++ b/packages.json @@ -6814,7 +6814,7 @@ }, { "name": "tf2plug", - "url": "https://github.com/waylon531/tf2plug", + "url": "https://gitlab.com/waylon531/tf2plug", "method": "git", "tags": [ "app", @@ -6824,6 +6824,6 @@ ], "description": "A mod manager for TF2", "license": "GPLv3", - "web": "https://github.com/waylon531/tf2plug" + "web": "https://gitlab.com/waylon531/tf2plug" } ] From 2c9734fc9fcac08b973f4fd66d529c0a077eadc8 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Wed, 26 Jul 2017 01:39:19 +0200 Subject: [PATCH 0465/1381] Added my packages nim-persistent-vector, gtkgenui, and nim-pcap --- packages.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/packages.json b/packages.json index 09117d6..d43e99c 100644 --- a/packages.json +++ b/packages.json @@ -895,6 +895,43 @@ "license": "MIT", "web": "https://github.com/PMunch/nimcr" }, + { + "name": "gtkgenui", + "url": "https://github.com/PMunch/gtkgenui", + "method": "git", + "tags": [ + "gtk2", + "utility" + ], + "description": "This module provides the genui macro for the Gtk2 toolkit. Genui is a way to specify graphical interfaces in a hierarchical way to more clearly show the structure of the interface as well as simplifying the code.", + "license": "MIT", + "web": "https://github.com/PMunch/gtkgenui" + }, + { + "name": "nim-persistent-vector", + "url": "https://github.com/PMunch/nim-persistent-vector", + "method": "git", + "tags": [ + "datastructures", + "immutable", + "persistent" + ], + "description": "This is an implementation of Clojures persistent vectors in Nim.", + "license": "MIT", + "web": "https://github.com/PMunch/nim-persistent-vector" + }, + { + "name": "nim-pcap", + "url": "https://github.com/PMunch/nim-pcap", + "method": "git", + "tags": [ + "pcap", + "fileformats" + ], + "description": "Tiny pure Nim library to read PCAP files used by TcpDump/WinDump/Wireshark.", + "license": "MIT", + "web": "https://github.com/PMunch/nim-pcap" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 41617665554bef7c6c94e23b51173b2ff62a8b99 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Wed, 26 Jul 2017 01:51:19 +0200 Subject: [PATCH 0466/1381] Made some changes to the newly added packages. --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d43e99c..4a15d31 100644 --- a/packages.json +++ b/packages.json @@ -908,7 +908,7 @@ "web": "https://github.com/PMunch/gtkgenui" }, { - "name": "nim-persistent-vector", + "name": "persvector", "url": "https://github.com/PMunch/nim-persistent-vector", "method": "git", "tags": [ @@ -921,7 +921,7 @@ "web": "https://github.com/PMunch/nim-persistent-vector" }, { - "name": "nim-pcap", + "name": "pcap", "url": "https://github.com/PMunch/nim-pcap", "method": "git", "tags": [ From 5fc60df355bb4eed7843da8b815d667c2dfc93d6 Mon Sep 17 00:00:00 2001 From: Ruslan Mustakov Date: Wed, 26 Jul 2017 09:14:29 +0700 Subject: [PATCH 0467/1381] Add godot package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4a15d31..9fa7796 100644 --- a/packages.json +++ b/packages.json @@ -6862,5 +6862,19 @@ "description": "A mod manager for TF2", "license": "GPLv3", "web": "https://gitlab.com/waylon531/tf2plug" + }, + { + "name": "godot", + "url": "https://github.com/pragmagic/godot-nim", + "method": "git", + "tags": [ + "game", + "engine", + "2d", + "3d" + ], + "description": "Nim bindings for Godot Engine", + "license": "MIT", + "web": "https://github.com/pragmagic/godot-nim" } ] From d04bf66a09e36eff3f0eda1771c73863ec0d1d07 Mon Sep 17 00:00:00 2001 From: Denis Lisovik Date: Mon, 31 Jul 2017 00:57:09 +0300 Subject: [PATCH 0468/1381] vkapi a wrapper for the vk.com API (russian social network) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4a15d31..4170946 100644 --- a/packages.json +++ b/packages.json @@ -6862,5 +6862,19 @@ "description": "A mod manager for TF2", "license": "GPLv3", "web": "https://gitlab.com/waylon531/tf2plug" + }, + { + "name": "vkapi", + "url": "https://github.com/cyberlis/nimvkapi", + "method": "git", + "tags": [ + "wrapper", + "vkontakte", + "vk", + "library" + ], + "description": "A wrapper for the vk.com API (russian social network)", + "license": "MIT", + "web": "https://github.com/cyberlis/nimvkapi" } ] From 091ceb0182bdc5aef50da8e846a435cf8de4e69e Mon Sep 17 00:00:00 2001 From: Daniil Yarancev Date: Mon, 31 Jul 2017 16:53:04 +0300 Subject: [PATCH 0469/1381] Change repository address --- packages.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 2b82ba8..52f8986 100644 --- a/packages.json +++ b/packages.json @@ -6879,16 +6879,17 @@ }, { "name": "vkapi", - "url": "https://github.com/cyberlis/nimvkapi", + "url": "https://github.com/TiberiumN/nimvkapi", "method": "git", "tags": [ "wrapper", "vkontakte", "vk", - "library" + "library", + "api" ], "description": "A wrapper for the vk.com API (russian social network)", "license": "MIT", - "web": "https://github.com/cyberlis/nimvkapi" + "web": "https://github.com/TiberiumN/nimvkapi" } ] From 125c6e362c5607d37fbf66c92b092aa28ee8825d Mon Sep 17 00:00:00 2001 From: StefanSalewski Date: Mon, 31 Jul 2017 21:28:16 +0200 Subject: [PATCH 0470/1381] Added package oldgtk3 (#549) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 52f8986..567cb48 100644 --- a/packages.json +++ b/packages.json @@ -6863,6 +6863,20 @@ "license": "GPLv3", "web": "https://gitlab.com/waylon531/tf2plug" }, + { + "name": "oldgtk3", + "url": "https://github.com/stefansalewski/oldgtk3", + "method": "git", + "tags": [ + "library", + "gtk", + "wrapper", + "gui" + ], + "description": "Low level bindings for GTK3 related libraries", + "license": "MIT", + "web": "https://github.com/stefansalewski/oldgtk3" + }, { "name": "godot", "url": "https://github.com/pragmagic/godot-nim", From 9f2491cfc4c0e8add8fc0ffd2771a0c18d8c15da Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Fri, 4 Aug 2017 12:18:24 +0200 Subject: [PATCH 0471/1381] Add slacklib package --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 567cb48..91439ef 100644 --- a/packages.json +++ b/packages.json @@ -6905,5 +6905,20 @@ "description": "A wrapper for the vk.com API (russian social network)", "license": "MIT", "web": "https://github.com/TiberiumN/nimvkapi" - } + }, + { + "name": "slacklib", + "url": "https://github.com/ThomasTJdev/nim_slacklib", + "method": "git", + "tags": [ + "library", + "wrapper", + "slack", + "slackapp", + "api" + ], + "description": "Library for working with a slack app or sending messages to a slack channel (slack.com)", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_slacklib" + } ] From c97415e3fecb8c494a150d9111485d06064cd173 Mon Sep 17 00:00:00 2001 From: skilchen Date: Sat, 5 Aug 2017 12:52:00 +0200 Subject: [PATCH 0472/1381] added calendar a clone of pythons calendar.py (#554) * added nimcalcal - PyCalCal translated to Nim - Calendrical Calculations from Reingold/Dershowitz * added nimcalcal - PyCalCal translated to Nim - Calendrical Calculations from Reingold/Dershowitz * third try * added calendar a clone of pythons calendar.py --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 91439ef..92a88c0 100644 --- a/packages.json +++ b/packages.json @@ -6920,5 +6920,18 @@ "description": "Library for working with a slack app or sending messages to a slack channel (slack.com)", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_slacklib" - } + }, + { + "name": "calendar", + "url": "https://github.com/skilchen/calendar", + "method": "git", + "tags": [ + "calendar", + "dates", + "library" + ], + "description": "calendar.py from Pythons stdlib translated to Nim", + "license": "MIT", + "web": "https://docs.python.org/2/library/calendar.html" + } ] From 5902118f19540b61072dd7b80256ebaf0af6df43 Mon Sep 17 00:00:00 2001 From: Pavel Nuzhdin Date: Mon, 7 Aug 2017 11:10:04 +0700 Subject: [PATCH 0473/1381] Added package redux --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 92a88c0..3949699 100644 --- a/packages.json +++ b/packages.json @@ -6933,5 +6933,16 @@ "description": "calendar.py from Pythons stdlib translated to Nim", "license": "MIT", "web": "https://docs.python.org/2/library/calendar.html" - } + }, + { + "name": "redux", + "url": "https://github.com/pragmagic/redux.nim", + "method": "git", + "tags": [ + "redux" + ], + "description": "Predictable state container.", + "license": "MIT", + "web": "https://github.com/pragmagic/redux.nim" + } ] From 2dd3ed2a57b9f55397fde3d0d0ec9597db1a91dd Mon Sep 17 00:00:00 2001 From: Francisco Requena Date: Mon, 7 Aug 2017 11:47:00 +0200 Subject: [PATCH 0474/1381] nim-sndfile -> sndfile --- packages.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 92a88c0..47fe532 100644 --- a/packages.json +++ b/packages.json @@ -1333,7 +1333,7 @@ "web": "https://github.com/MrJohz/appdirs" }, { - "name": "nim-sndfile", + "name": "sndfile", "url": "https://github.com/julienaubert/nim-sndfile", "method": "git", "tags": [ @@ -1346,6 +1346,10 @@ "license": "MIT", "web": "https://github.com/julienaubert/nim-sndfile" }, + { + "name": "nim-sndfile", + "alias": "sndfile" + }, { "name": "bigints", "url": "https://github.com/def-/bigints", From 521fbb89835d12cadf1662bbbab2cfb5c7757469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Mon, 7 Aug 2017 14:50:37 +0200 Subject: [PATCH 0475/1381] Add wiringPiNim package (#556) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 3949699..e8cff13 100644 --- a/packages.json +++ b/packages.json @@ -6934,6 +6934,21 @@ "license": "MIT", "web": "https://docs.python.org/2/library/calendar.html" }, + { + "name": "wiringPiNim", + "url": "https://github.com/ThomasTJdev/nim_wiringPiNim", + "method": "git", + "tags": [ + "wrapper", + "raspberry", + "rpi", + "wiringpi", + "pi" + ], + "description": "Wrapper that implements some of wiringPi's function for controlling a Raspberry Pi", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_wiringPiNim" + }, { "name": "redux", "url": "https://github.com/pragmagic/redux.nim", From 5dc908eadb15df7086ca238a43d63cb8ec434cdc Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Tue, 8 Aug 2017 17:05:37 -0400 Subject: [PATCH 0476/1381] Highjack nim-gmp `nim-gmp` is an unmaintained package that's fallen out of compatibility with nimble. I've forked it and made a trivial change to restore compatibility. --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index c5e0c77..6d47252 100644 --- a/packages.json +++ b/packages.json @@ -1665,7 +1665,7 @@ }, { "name": "gmp", - "url": "https://github.com/FedeOmoto/nim-gmp", + "url": "https://github.com/subsetpark/nim-gmp", "method": "git", "tags": [ "library", @@ -1675,7 +1675,7 @@ ], "description": "wrapper for the GNU multiple precision arithmetic library (GMP)", "license": "LGPLv3 or GPLv2", - "web": "https://github.com/FedeOmoto/nim-gmp" + "web": "https://github.com/subsetpark/nim-gmp" }, { "name": "ludens", From 68a6d7e9e5e9b58b5ed7b5cc7f338fb3feed0c14 Mon Sep 17 00:00:00 2001 From: Joshua Cearley Date: Wed, 9 Aug 2017 17:22:32 -0500 Subject: [PATCH 0477/1381] Added package skEasing --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6d47252..89f33d3 100644 --- a/packages.json +++ b/packages.json @@ -6963,5 +6963,18 @@ "description": "Predictable state container.", "license": "MIT", "web": "https://github.com/pragmagic/redux.nim" + }, + { + "name": "skEasing", + "url": "https://github.com/Skrylar/skEasing", + "method": "git", + "tags": [ + "math", + "curves", + "animation" + ], + "description": "A collection of easing curves for animation purposes.", + "license": "BSD", + "web": "https://github.com/Skrylar/skEasing" } ] From fe6b1947ccb85934b378ab708112bf64f72b38f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milli=20=C4=B0=C5=9Fletim=20Sistemi=20=28Milis=20Linux=29?= Date: Thu, 10 Aug 2017 22:30:17 +0300 Subject: [PATCH 0478/1381] nimrpc fresh repo --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 89f33d3..61f7187 100644 --- a/packages.json +++ b/packages.json @@ -3372,6 +3372,20 @@ "description": "RPC implementation for Nim based on msgpack4nim", "license": "MIT", "web": "https://github.com/rogercloud/nim-rpc" + }, + { + "name": "nimrpc-milis", + "url": "https://github.com/milisarge/nimrpc-milis", + "method": "git", + "tags": [ + "msgpack", + "library", + "rpc", + "nimrpc" + ], + "description": "RPC implementation for Nim based on msgpack4nim", + "license": "MIT", + "web": "https://github.com/milisarge/nimrpc-milis" }, { "name": "asyncevents", From ead7e3d96a754b8f1a7cee8dcc85d8e6d2e7da72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milli=20=C4=B0=C5=9Fletim=20Sistemi=20=28Milis=20Linux=29?= Date: Thu, 10 Aug 2017 22:40:57 +0300 Subject: [PATCH 0479/1381] Update packages.json --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 61f7187..f0e3c10 100644 --- a/packages.json +++ b/packages.json @@ -3374,8 +3374,8 @@ "web": "https://github.com/rogercloud/nim-rpc" }, { - "name": "nimrpc-milis", - "url": "https://github.com/milisarge/nimrpc-milis", + "name": "nimrpc_milis", + "url": "https://github.com/milisarge/nimrpc_milis", "method": "git", "tags": [ "msgpack", @@ -3385,7 +3385,7 @@ ], "description": "RPC implementation for Nim based on msgpack4nim", "license": "MIT", - "web": "https://github.com/milisarge/nimrpc-milis" + "web": "https://github.com/milisarge/nimrpc_milis" }, { "name": "asyncevents", From b3281391125fe050f727635200cc20233a3ea086 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Nihlg=C3=A5rd?= Date: Sun, 13 Aug 2017 22:59:39 +0200 Subject: [PATCH 0480/1381] Added package nimquery --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f0e3c10..be24577 100644 --- a/packages.json +++ b/packages.json @@ -6990,5 +6990,18 @@ "description": "A collection of easing curves for animation purposes.", "license": "BSD", "web": "https://github.com/Skrylar/skEasing" + }, + { + "name": "nimquery", + "url": "https://github.com/GULPF/nimquery", + "method": "git", + "tags": [ + "html", + "scraping", + "web" + ], + "description": "Library for querying HTML using CSS-selectors, like JavaScripts document.querySelector", + "license": "MIT", + "web": "https://github.com/GULPF/nimquery" } ] From 25713a3c55b716d0d760ec222be7dcd17e0837ce Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Mon, 14 Aug 2017 10:59:34 -0400 Subject: [PATCH 0481/1381] Added package usha --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index be24577..5a7e709 100644 --- a/packages.json +++ b/packages.json @@ -3373,7 +3373,7 @@ "license": "MIT", "web": "https://github.com/rogercloud/nim-rpc" }, - { + { "name": "nimrpc_milis", "url": "https://github.com/milisarge/nimrpc_milis", "method": "git", @@ -7003,5 +7003,17 @@ "description": "Library for querying HTML using CSS-selectors, like JavaScripts document.querySelector", "license": "MIT", "web": "https://github.com/GULPF/nimquery" + }, + { + "name": "usha", + "url": "https://github.com/subsetpark/untitled-shell-history-application", + "method": "git", + "tags": [ + "shell", + "utility" + ], + "description": "untitled shell history application", + "license": "MIT", + "web": "https://github.com/subsetpark/untitled-shell-history-application" } ] From bcee70a05294500191df839ea1fa256392ec3b0a Mon Sep 17 00:00:00 2001 From: Charles Barto Date: Tue, 15 Aug 2017 00:34:02 -0400 Subject: [PATCH 0482/1381] Added package libgit2 --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 5a7e709..73a2982 100644 --- a/packages.json +++ b/packages.json @@ -7015,5 +7015,20 @@ "description": "untitled shell history application", "license": "MIT", "web": "https://github.com/subsetpark/untitled-shell-history-application" + }, + { + "name": "libgit2", + "url": "https://github.com/barcharcraz/libgit2-nim", + "method": "git", + "tags": [ + "git", + "libgit", + "libgit2", + "vcs", + "wrapper" + ], + "description": "Libgit2 low level wrapper", + "license": "MIT", + "web": "https://github.com/barcharcraz/libgit2-nim" } ] From b72fb8ee2d85e18c85fe97d000e3fde1175f14d9 Mon Sep 17 00:00:00 2001 From: David Krause Date: Tue, 15 Aug 2017 20:36:21 +0200 Subject: [PATCH 0483/1381] added multicast added multicast; join and leave a multicast group --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 73a2982..53e1c62 100644 --- a/packages.json +++ b/packages.json @@ -7030,5 +7030,19 @@ "description": "Libgit2 low level wrapper", "license": "MIT", "web": "https://github.com/barcharcraz/libgit2-nim" - } + }, + { + "name": "multicast", + "url": "https://github.com/enthus1ast/nimMulticast", + "method": "git", + "tags": [ + "multicast", + "udp", + "socket", + "net" + ], + "description": "proc to join (and leave) a multicast group", + "license": "MIT", + "web": "https://github.com/enthus1ast/nimMulticast" + } ] From bf039ea5377bc9787166f46c07b078ee4b79442a Mon Sep 17 00:00:00 2001 From: Euan T Date: Tue, 15 Aug 2017 21:05:36 +0100 Subject: [PATCH 0484/1381] Rename `libserialport` to `serial`. `libserialport` was a misleading name as it implied the library was a wrapper. --- packages.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 53e1c62..75ee07f 100644 --- a/packages.json +++ b/packages.json @@ -5991,17 +5991,18 @@ "web": "http://dpdk.org/" }, { - "name": "libserialport", - "url": "https://github.com/euantorano/serialport.nim", + "name": "serial", + "url": "https://github.com/euantorano/serial.nim", "method": "git", "tags": [ "serial", "rs232", - "io" + "io", + "serialport" ], "description": "A library to operate serial ports using pure Nim.", "license": "BSD3", - "web": "https://github.com/euantorano/serialport.nim" + "web": "https://github.com/euantorano/serial.nim" }, { "name": "spdk", From eed243aaf4c76d8c4c2ed37f0f21fc5ecf4299dc Mon Sep 17 00:00:00 2001 From: Euan T Date: Tue, 15 Aug 2017 21:56:31 +0100 Subject: [PATCH 0485/1381] Update packages.json --- packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages.json b/packages.json index 75ee07f..6afbfca 100644 --- a/packages.json +++ b/packages.json @@ -5990,6 +5990,10 @@ "license": "Apache License 2.0", "web": "http://dpdk.org/" }, + { + "name": "libserialport", + "alias": "serial", + }, { "name": "serial", "url": "https://github.com/euantorano/serial.nim", From c3fb3315f41a671e12901b189d8bed0f50fd1584 Mon Sep 17 00:00:00 2001 From: wt Date: Sat, 19 Aug 2017 11:51:55 +0800 Subject: [PATCH 0486/1381] Add mysqlparser --- packages.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 53e1c62..54831f5 100644 --- a/packages.json +++ b/packages.json @@ -6845,8 +6845,7 @@ "tags": [ "mysql", "async", - "asynchronous", - "parser" + "asynchronous" ], "description": "Asynchronous MySQL connector written in pure Nim", "license": "MIT", @@ -7044,5 +7043,18 @@ "description": "proc to join (and leave) a multicast group", "license": "MIT", "web": "https://github.com/enthus1ast/nimMulticast" - } + }, + { + "name": "mysqlparser", + "url": "https://github.com/tulayang/mysqlparser.git", + "method": "git", + "tags": [ + "mysql", + "protocol", + "parser" + ], + "description": "An efficient packet parser for MySQL Client/Server Protocol. Help you to write Mysql communication in either BLOCKIONG-IO or NON-BLOCKING-IO.", + "license": "MIT", + "web": "https://github.com/tulayang/mysqlparser" + } ] From 4f944a255e4f321f634f91c8a0339a268c0b8859 Mon Sep 17 00:00:00 2001 From: David Krause Date: Tue, 22 Aug 2017 07:37:58 +0200 Subject: [PATCH 0487/1381] added "dbg template; in debug echo" --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c198511..d6ab829 100644 --- a/packages.json +++ b/packages.json @@ -7061,5 +7061,19 @@ "description": "An efficient packet parser for MySQL Client/Server Protocol. Help you to write Mysql communication in either BLOCKIONG-IO or NON-BLOCKING-IO.", "license": "MIT", "web": "https://github.com/tulayang/mysqlparser" - } + }, + { + "name": "dbg", + "url": "https://github.com/enthus1ast/nimDbg", + "method": "git", + "tags": [ + "template", + "echo", + "dbg", + "debug" + ], + "description": "dbg template; in debug echo" , + "license": "MIT", + "web": "https://github.com/enthus1ast/nimDbg" + } ] From 792b5086915be228d6692af1262036b87f4c3c96 Mon Sep 17 00:00:00 2001 From: Bo Lingen Date: Wed, 23 Aug 2017 06:09:40 +0000 Subject: [PATCH 0488/1381] Added package fugitive --- packages.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c198511..9923a18 100644 --- a/packages.json +++ b/packages.json @@ -5992,7 +5992,7 @@ }, { "name": "libserialport", - "alias": "serial", + "alias": "serial" }, { "name": "serial", @@ -7061,5 +7061,21 @@ "description": "An efficient packet parser for MySQL Client/Server Protocol. Help you to write Mysql communication in either BLOCKIONG-IO or NON-BLOCKING-IO.", "license": "MIT", "web": "https://github.com/tulayang/mysqlparser" + }, + { + "name": "fugitive", + "url": "https://github.com/citycide/fugitive", + "method": "git", + "tags": [ + "git", + "github", + "cli", + "extras", + "utility", + "tool" + ], + "description": "Simple command line tool to make git more intuitive, along with useful GitHub addons.", + "license": "MIT", + "web": "https://github.com/citycide/fugitive" } ] From d74bb53a2cb68d0c6baa39de56805ba510a2fd9e Mon Sep 17 00:00:00 2001 From: PMunch Date: Fri, 25 Aug 2017 22:05:45 +0200 Subject: [PATCH 0489/1381] Added drawille package (#572) * Added drawille package * Fixed tabs.. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 2de4b7b..5b600dc 100644 --- a/packages.json +++ b/packages.json @@ -932,6 +932,19 @@ "license": "MIT", "web": "https://github.com/PMunch/nim-pcap" }, + { + "name": "drawille", + "url": "https://github.com/PMunch/drawille-nim", + "method": "git", + "tags": [ + "drawile", + "terminal", + "graphics" + ], + "description": "Drawing in terminal with Unicode Braille characters.", + "license": "MIT", + "web": "https://github.com/PMunch/drawille-nim" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 6b0e93eb41b6d17c47ba18a9befacc5ff58cc108 Mon Sep 17 00:00:00 2001 From: Daniil Yarancev <21169548+Yardanico@users.noreply.github.com> Date: Sat, 26 Aug 2017 11:03:07 +0300 Subject: [PATCH 0490/1381] Added package pylib --- packages.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 5b600dc..677d906 100644 --- a/packages.json +++ b/packages.json @@ -7101,8 +7101,22 @@ "dbg", "debug" ], - "description": "dbg template; in debug echo" , + "description": "dbg template; in debug echo", "license": "MIT", "web": "https://github.com/enthus1ast/nimDbg" - } + }, + { + "name": "pylib", + "url": "https://github.com/Yardanico/nimpylib", + "method": "git", + "tags": [ + "python", + "compatibility", + "library", + "pure" + ], + "description": "Nim library with python-like functions and operators", + "license": "MIT", + "web": "https://github.com/Yardanico/nimpylib" + } ] From 5be12c3006048bc62be1ce614a04658558f0ae2b Mon Sep 17 00:00:00 2001 From: Daniil Yarancev <21169548+Yardanico@users.noreply.github.com> Date: Sun, 27 Aug 2017 14:37:38 +0300 Subject: [PATCH 0491/1381] Correct links of my packages --- packages.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 677d906..17b0d1f 100644 --- a/packages.json +++ b/packages.json @@ -6328,7 +6328,7 @@ }, { "name": "mathexpr", - "url": "https://github.com/TiberiumN/nim-mathexpr", + "url": "https://github.com/Yardanico/nim-mathexpr", "method": "git", "tags": [ "math", @@ -6337,7 +6337,7 @@ ], "description": "MathExpr - wrapper around TinyExpr C library", "license": "MIT", - "web": "https://github.com/TiberiumN/nim-mathexpr" + "web": "https://github.com/Yardanico/nim-mathexpr" }, { "name": "frag", @@ -6592,7 +6592,7 @@ }, { "name": "osureplay", - "url": "https://github.com/TiberiumN/nim-osureplay", + "url": "https://github.com/Yardanico/nim-osureplay", "method": "git", "tags": [ "library", @@ -6603,7 +6603,7 @@ ], "description": "osu! replay parser", "license": "MIT", - "web": "https://github.com/TiberiumN/nim-osureplay" + "web": "https://github.com/Yardanico/nim-osureplay" }, { "name": "tiger", @@ -6928,7 +6928,7 @@ }, { "name": "vkapi", - "url": "https://github.com/TiberiumN/nimvkapi", + "url": "https://github.com/Yardanico/nimvkapi", "method": "git", "tags": [ "wrapper", @@ -6939,7 +6939,7 @@ ], "description": "A wrapper for the vk.com API (russian social network)", "license": "MIT", - "web": "https://github.com/TiberiumN/nimvkapi" + "web": "https://github.com/Yardanico/nimvkapi" }, { "name": "slacklib", From c8d4514bb1c4333ae1b5855569681cf57dcddce5 Mon Sep 17 00:00:00 2001 From: Esteban Castro Borsani Date: Tue, 5 Sep 2017 15:55:11 -0300 Subject: [PATCH 0492/1381] Add package graphemes (#575) * Added package graphemes * remove tag commas --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 17b0d1f..12756a0 100644 --- a/packages.json +++ b/packages.json @@ -7118,5 +7118,18 @@ "description": "Nim library with python-like functions and operators", "license": "MIT", "web": "https://github.com/Yardanico/nimpylib" + }, + { + "name": "graphemes", + "url": "https://github.com/nitely/nim-graphemes", + "method": "git", + "tags": [ + "graphemes", + "grapheme-cluster", + "unicode" + ], + "description": "Grapheme aware string handling (Unicode tr29)", + "license": "MIT", + "web": "https://github.com/nitely/nim-graphemes" } ] From d21854a48dbc2969550cf2a938daa7bd69ea21e9 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Thu, 7 Sep 2017 14:05:32 -0500 Subject: [PATCH 0493/1381] Added package monero --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 12756a0..e6e3825 100644 --- a/packages.json +++ b/packages.json @@ -7131,5 +7131,18 @@ "description": "Grapheme aware string handling (Unicode tr29)", "license": "MIT", "web": "https://github.com/nitely/nim-graphemes" + }, + { + "name": "monero", + "url": "https://github.com/ehmry/nim-monero", + "method": "git", + "tags": [ + "monero", + "cryptonote", + "vanity" + ], + "description": "Libraries and utilites related to Monero, a CryptoNote cryptocurrency.", + "license": "MIT", + "web": "https://github.com/ehmry/nim-monero" } ] From 3db47fa292786b854aeb8397e90f0255f94e8dad Mon Sep 17 00:00:00 2001 From: Skrylar Date: Sat, 9 Sep 2017 06:20:13 -0500 Subject: [PATCH 0494/1381] Add package rfc3339 (#576) * Added package rfc3339 * Update packages.json Fixed package URL. * Update packages.json Also fixed the web URL. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index e6e3825..ade2aa5 100644 --- a/packages.json +++ b/packages.json @@ -7132,6 +7132,18 @@ "license": "MIT", "web": "https://github.com/nitely/nim-graphemes" }, + { + "name": "rfc3339", + "url": "https://github.com/Skrylar/rfc3339", + "method": "git", + "tags": [ + "rfc3339", + "datetime" + ], + "description": "RFC3339 (dates and times) implementation for Nim.", + "license": "BSD", + "web": "https://github.com/Skrylar/rfc3339" + }, { "name": "monero", "url": "https://github.com/ehmry/nim-monero", From 6875cd3f2a81f1db6d539327a38d6d0f814db815 Mon Sep 17 00:00:00 2001 From: Bennyelg Date: Thu, 14 Sep 2017 00:23:20 +0300 Subject: [PATCH 0495/1381] Added package presto --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ade2aa5..93e53f3 100644 --- a/packages.json +++ b/packages.json @@ -7156,5 +7156,19 @@ "description": "Libraries and utilites related to Monero, a CryptoNote cryptocurrency.", "license": "MIT", "web": "https://github.com/ehmry/nim-monero" + }, + { + "name": "presto", + "url": "https://github.com/Bennyelg/nimPresto", + "method": "git", + "tags": [ + "prestodb", + "connector", + "database", + "nim-lang" + ], + "description": "prestodb simple connector", + "license": "MIT", + "web": "https://github.com/Bennyelg/nimPresto" } ] From 4c2726c3deeaa04bfc81b2fa8a8d18c77000bc9c Mon Sep 17 00:00:00 2001 From: Bennyelg Date: Thu, 14 Sep 2017 15:11:34 +0300 Subject: [PATCH 0496/1381] Added package csvql --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 93e53f3..e801efb 100644 --- a/packages.json +++ b/packages.json @@ -7170,5 +7170,23 @@ "description": "prestodb simple connector", "license": "MIT", "web": "https://github.com/Bennyelg/nimPresto" + }, + { + "name": "csvql", + "url": "https://github.com/Bennyelg/csvql", + "method": "git", + "tags": [ + "csv", + "read", + "ansisql", + "query", + "database", + "files", + "nim", + "nim-lang" + ], + "description": "csvql.", + "license": "MIT", + "web": "https://github.com/Bennyelg/csvql" } ] From 68c2d0b41bacaac1de96ee67f679905f55ea0e4e Mon Sep 17 00:00:00 2001 From: Tyler Yocolano Date: Fri, 15 Sep 2017 17:42:10 -0400 Subject: [PATCH 0497/1381] Added nimbomb (#581) & removed redundant tags from previous package --- packages.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index e801efb..f4755c2 100644 --- a/packages.json +++ b/packages.json @@ -7171,6 +7171,20 @@ "license": "MIT", "web": "https://github.com/Bennyelg/nimPresto" }, + { + "name": "nimbomb", + "url": "https://github.com/Tyler-Yocolano/nimbomb", + "method": "git", + "tags": [ + "giant", + "bomb", + "wiki", + "api" + ], + "description": "A GiantBomb-wiki wrapper for nim", + "license": "MIT", + "web": "https://github.com/Tyler-Yocolano/nimbomb" + }, { "name": "csvql", "url": "https://github.com/Bennyelg/csvql", @@ -7181,9 +7195,7 @@ "ansisql", "query", "database", - "files", - "nim", - "nim-lang" + "files" ], "description": "csvql.", "license": "MIT", From b2cb3440a94d6f7fc93306482106a55408923dde Mon Sep 17 00:00:00 2001 From: Misha Kotwica Date: Wed, 20 Sep 2017 20:25:06 +0200 Subject: [PATCH 0498/1381] addded package contracts (#584) * addded package contracts * fix: no spaces in tags --- packages.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/packages.json b/packages.json index f4755c2..dfa5a96 100644 --- a/packages.json +++ b/packages.json @@ -7200,5 +7200,28 @@ "description": "csvql.", "license": "MIT", "web": "https://github.com/Bennyelg/csvql" + }, + { + "name": "contracts", + "url": "https://github.com/Udiknedormin/NimContracts", + "method": "git", + "tags": [ + "library", + "pure", + "contract", + "contracts", + "DbC", + "utility", + "automation", + "documentation", + "safety", + "test", + "tests", + "testing", + "unittest" + ], + "description": "Design by Contract (DbC) library with minimal runtime.", + "license": "MIT", + "web": "https://github.com/Udiknedormin/NimContracts" } ] From 0d1b1ddacfc43e2b34a8827f0d1ed1cd117a1b05 Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Wed, 20 Sep 2017 14:57:30 -0400 Subject: [PATCH 0499/1381] Added package syphus --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index dfa5a96..a726e80 100644 --- a/packages.json +++ b/packages.json @@ -7223,5 +7223,17 @@ "description": "Design by Contract (DbC) library with minimal runtime.", "license": "MIT", "web": "https://github.com/Udiknedormin/NimContracts" + }, + { + "name": "syphus", + "url": "https://github.com/makingspace/syphus-nim", + "method": "git", + "tags": [ + "optimization", + "tabu" + ], + "description": "An implementation of the tabu search heuristic in Nim.", + "license": "BSD-3", + "web": "https://github.com/makingspace/syphus-nim" } ] From 782909c801e5dbff94d491b2e9a44bd6bef5dbbc Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 20 Sep 2017 23:47:21 +0100 Subject: [PATCH 0500/1381] Add analytics package. --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index a726e80..361527b 100644 --- a/packages.json +++ b/packages.json @@ -7235,5 +7235,19 @@ "description": "An implementation of the tabu search heuristic in Nim.", "license": "BSD-3", "web": "https://github.com/makingspace/syphus-nim" - } + }, + { + "name": "analytics", + "url": "https://github.com/dom96/analytics", + "method": "git", + "tags": [ + "google", + "telemetry", + "statistics" + ], + "description": "Allows statistics to be sent to and recorded in Google Analytics.", + "license": "MIT", + "web": "https://github.com/dom96/analytics" + }, + ] From 7ad1dcc213635e6dacc94e1f9ac3a799a15a444c Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 20 Sep 2017 23:49:48 +0100 Subject: [PATCH 0501/1381] Fixes trailing comma --- packages.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 361527b..43a3dd9 100644 --- a/packages.json +++ b/packages.json @@ -7248,6 +7248,5 @@ "description": "Allows statistics to be sent to and recorded in Google Analytics.", "license": "MIT", "web": "https://github.com/dom96/analytics" - }, - + } ] From 47c3718a0a33dde1a20d47e0716e9900ef44729a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 21 Sep 2017 13:02:49 +0100 Subject: [PATCH 0502/1381] Rename presto to db_presto. Refs #583 --- packages.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 43a3dd9..f1b3e82 100644 --- a/packages.json +++ b/packages.json @@ -7158,14 +7158,13 @@ "web": "https://github.com/ehmry/nim-monero" }, { - "name": "presto", + "name": "db_presto", "url": "https://github.com/Bennyelg/nimPresto", "method": "git", "tags": [ "prestodb", "connector", - "database", - "nim-lang" + "database" ], "description": "prestodb simple connector", "license": "MIT", From b5e14fdf70df9c16ef42b0e451ba703b96cc6cdb Mon Sep 17 00:00:00 2001 From: Eduardo Bart Date: Thu, 21 Sep 2017 14:32:30 -0300 Subject: [PATCH 0503/1381] Added package arraymancer_vision --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f1b3e82..39ad5d3 100644 --- a/packages.json +++ b/packages.json @@ -7247,5 +7247,18 @@ "description": "Allows statistics to be sent to and recorded in Google Analytics.", "license": "MIT", "web": "https://github.com/dom96/analytics" + }, + { + "name": "arraymancer_vision", + "url": "https://github.com/edubart/arraymancer-vision", + "method": "git", + "tags": [ + "arraymancer", + "image", + "vision" + ], + "description": "Image transformation and visualization utilities for arraymancer", + "license": "Apache License 2.0", + "web": "https://github.com/edubart/arraymancer-vision" } ] From 35b833d369875530a18fe957ce76fff1efb29b0b Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sat, 23 Sep 2017 13:27:04 +0300 Subject: [PATCH 0504/1381] Added gplay --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 39ad5d3..631a409 100644 --- a/packages.json +++ b/packages.json @@ -7260,5 +7260,20 @@ "description": "Image transformation and visualization utilities for arraymancer", "license": "Apache License 2.0", "web": "https://github.com/edubart/arraymancer-vision" + }, + { + "name": "gplay", + "url": "https://github.com/yglukhov/gplay", + "method": "git", + "tags": [ + "google", + "play", + "apk", + "publish", + "upload" + ], + "description": "Google Play APK Uploader", + "license": "MIT", + "web": "https://github.com/yglukhov/gplay" } ] From b77f25eff773a39b3c70df40b13c4e89c65b2c86 Mon Sep 17 00:00:00 2001 From: "David J. Kordsmeier" Date: Sun, 24 Sep 2017 05:14:36 -0700 Subject: [PATCH 0505/1381] Add package huenim (#588) * Added package huenim * Fix tags for huenim. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 631a409..cf3705d 100644 --- a/packages.json +++ b/packages.json @@ -7275,5 +7275,20 @@ "description": "Google Play APK Uploader", "license": "MIT", "web": "https://github.com/yglukhov/gplay" + }, + { + "name": "huenim", + "url": "https://github.com/IoTone/huenim", + "method": "git", + "tags": [ + "hue", + "iot", + "lighting", + "philips", + "library" + ], + "description": "Huenim", + "license": "MIT", + "web": "https://github.com/IoTone/huenim" } ] From 02f11eefd1e1f5f93a70bec954ae4e7d3aab40a7 Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Fri, 29 Sep 2017 15:31:33 -0400 Subject: [PATCH 0506/1381] Added drand48. --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cf3705d..74e9eb2 100644 --- a/packages.json +++ b/packages.json @@ -7290,5 +7290,16 @@ "description": "Huenim", "license": "MIT", "web": "https://github.com/IoTone/huenim" - } + }, + { + "name": "drand48", + "url": "https://github.com/JeffersonLab/drand48", + "method": "git", + "tags": [ + "random number generator" + ], + "description": "Nim implementation of the standard unix drand48 pseudo random number generator", + "license": "BSD3", + "web": "https://github.com/JeffersonLab/drand48" + }, ] From c2ca47dca303115a07d592d5b9edc54405489ee9 Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Fri, 29 Sep 2017 15:37:15 -0400 Subject: [PATCH 0507/1381] Added package ensem --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 74e9eb2..6a8cbc3 100644 --- a/packages.json +++ b/packages.json @@ -7302,4 +7302,15 @@ "license": "BSD3", "web": "https://github.com/JeffersonLab/drand48" }, + { + "name": "ensem", + "url": "https://github.com/JeffersonLab/ensem", + "method": "git", + "tags": [ + "yes" + ], + "description": "Support for ensemble file format and arithmetic using jackknife/bootstrap propagation of errors", + "license": "BSD3", + "web": "https://github.com/JeffersonLab/ensem" + } ] From 25793413174e2b36a79d40f871f947676585df01 Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Fri, 29 Sep 2017 15:39:10 -0400 Subject: [PATCH 0508/1381] Fixed up tags for ensem. --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 6a8cbc3..e8002c0 100644 --- a/packages.json +++ b/packages.json @@ -7307,7 +7307,8 @@ "url": "https://github.com/JeffersonLab/ensem", "method": "git", "tags": [ - "yes" + "jackknife", + "statistics", ], "description": "Support for ensemble file format and arithmetic using jackknife/bootstrap propagation of errors", "license": "BSD3", From 11fca55e2340529c987e34a432ffd9f3f81c83c1 Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Fri, 29 Sep 2017 16:34:51 -0400 Subject: [PATCH 0509/1381] Removed white-spaces in tag for drand48 --- packages.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index e8002c0..79c48a5 100644 --- a/packages.json +++ b/packages.json @@ -7296,7 +7296,9 @@ "url": "https://github.com/JeffersonLab/drand48", "method": "git", "tags": [ - "random number generator" + "random", + "number", + "generator" ], "description": "Nim implementation of the standard unix drand48 pseudo random number generator", "license": "BSD3", From d5c3799a8656e5d961db37b0a156a8c922403e2b Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Sat, 30 Sep 2017 23:44:32 +0700 Subject: [PATCH 0510/1381] update location of my repos --- packages.json | 60 +++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/packages.json b/packages.json index a3dba0e..8168a33 100644 --- a/packages.json +++ b/packages.json @@ -2525,7 +2525,7 @@ }, { "name": "struct", - "url": "https://github.com/rgv151/struct.nim", + "url": "https://github.com/OpenSystemsLab/struct.nim", "method": "git", "tags": [ "struct", @@ -2536,7 +2536,7 @@ ], "description": "Python-like 'struct' for Nim", "license": "MIT", - "web": "https://github.com/rgv151/struct.nim" + "web": "https://github.com/OpenSystemsLab/struct.nim" }, { "name": "uri2", @@ -2553,7 +2553,7 @@ }, { "name": "hmac", - "url": "https://github.com/rgv151/hmac.nim", + "url": "https://github.com/OpenSystemsLab/hmac.nim", "method": "git", "tags": [ "hmac", @@ -2564,7 +2564,7 @@ ], "description": "HMAC-SHA1 and HMAC-MD5 hashing in Nim", "license": "MIT", - "web": "https://github.com/rgv151/hmac.nim" + "web": "https://github.com/OpenSystemsLab/hmac.nim" }, { "name": "mongrel2", @@ -2595,7 +2595,7 @@ }, { "name": "base32", - "url": "https://github.com/rgv151/base32.nim", + "url": "https://github.com/OpenSystemsLab/base32.nim", "method": "git", "tags": [ "base32", @@ -2604,11 +2604,11 @@ ], "description": "Base32 library for Nim", "license": "MIT", - "web": "https://github.com/rgv151/base32.nim" + "web": "https://github.com/OpenSystemsLab/base32.nim" }, { "name": "otp", - "url": "https://github.com/rgv151/otp.nim", + "url": "https://github.com/OpenSystemsLab/otp.nim", "method": "git", "tags": [ "otp", @@ -2622,11 +2622,11 @@ ], "description": "One Time Password library for Nim", "license": "MIT", - "web": "https://github.com/rgv151/otp.nim" + "web": "https://github.com/OpenSystemsLab/otp.nim" }, { "name": "q", - "url": "https://github.com/rgv151/q.nim", + "url": "https://github.com/OpenSystemsLab/q.nim", "method": "git", "tags": [ "css", @@ -2640,7 +2640,7 @@ ], "description": "Simple package for query HTML/XML elements using a CSS3 or jQuery-like selector syntax", "license": "MIT", - "web": "https://github.com/rgv151/q.nim" + "web": "https://github.com/OpenSystemsLab/q.nim" }, { "name": "bignum", @@ -2671,7 +2671,7 @@ }, { "name": "anybar", - "url": "https://github.com/rgv151/anybar.nim", + "url": "https://github.com/ba0f3/anybar.nim", "method": "git", "tags": [ "anybar", @@ -2681,7 +2681,7 @@ ], "description": "Control AnyBar instances with Nim", "license": "MIT", - "web": "https://github.com/rgv151/anybar.nim" + "web": "https://github.com/ba0f3/anybar.nim" }, { "name": "astar", @@ -2840,7 +2840,7 @@ }, { "name": "telebot", - "url": "https://github.com/rgv151/telebot.nim", + "url": "https://github.com/ba0f3/telebot.nim", "method": "git", "tags": [ "telebot", @@ -2852,11 +2852,11 @@ ], "description": "Async Telegram Bot API Client", "license": "MIT", - "web": "https://github.com/rgv151/telebot.nim" + "web": "https://github.com/ba0f3/telebot.nim" }, { "name": "tempfile", - "url": "https://github.com/rgv151/tempfile.nim", + "url": "https://github.com/OpenSystemsLab/tempfile.nim", "method": "git", "tags": [ "temp", @@ -2868,7 +2868,7 @@ ], "description": "Temporary files and directories", "license": "MIT", - "web": "https://github.com/rgv151/tempfile.nim" + "web": "https://github.com/OpenSystemsLab/tempfile.nim" }, { "name": "AstroNimy", @@ -3025,7 +3025,7 @@ }, { "name": "libssh2", - "url": "https://github.com/rgv151/libssh2.nim", + "url": "https://github.com/ba0f3/libssh2.nim", "method": "git", "tags": [ "lib", @@ -3038,11 +3038,11 @@ ], "description": "Nim wrapper for libssh2", "license": "MIT", - "web": "https://github.com/rgv151/libssh2.nim" + "web": "https://github.com/ba0f3/libssh2.nim" }, { "name": "rethinkdb", - "url": "https://github.com/rgv151/rethinkdb.nim", + "url": "https://github.com/OpenSystemsLab/rethinkdb.nim", "method": "git", "tags": [ "rethinkdb", @@ -3052,7 +3052,7 @@ ], "description": "RethinkDB driver for Nim", "license": "MIT", - "web": "https://github.com/rgv151/rethinkdb.nim" + "web": "https://github.com/OpenSystemsLab/rethinkdb.nim" }, { "name": "dbus", @@ -3239,7 +3239,7 @@ }, { "name": "pfring", - "url": "https://github.com/rgv151/pfring.nim", + "url": "https://github.com/ba0f3/pfring.nim", "method": "git", "tags": [ "pf_ring", @@ -3253,7 +3253,7 @@ ], "description": "PF_RING wrapper for Nim", "license": "MIT", - "web": "https://github.com/rgv151/pfring.nim" + "web": "https://github.com/ba0f3/pfring.nim" }, { "name": "xxtea", @@ -3271,7 +3271,7 @@ }, { "name": "xxhash", - "url": "https://github.com/rgv151/xxhash.nim", + "url": "https://github.com/OpenSystemsLab/xxhash.nim", "method": "git", "tags": [ "fast", @@ -3280,11 +3280,11 @@ ], "description": "xxhash wrapper for Nim", "license": "MIT", - "web": "https://github.com/rgv151/xxhash.nim" + "web": "https://github.com/OpenSystemsLab/xxhash.nim" }, { "name": "libipset", - "url": "https://github.com/rgv151/libipset.nim", + "url": "https://github.com/ba0f3/libipset.nim", "method": "git", "tags": [ "ipset", @@ -3299,7 +3299,7 @@ ], "description": "libipset wrapper for Nim", "license": "MIT", - "web": "https://github.com/rgv151/libipset.nim" + "web": "https://github.com/ba0f3/libipset.nim" }, { "name": "pop3", @@ -3414,7 +3414,7 @@ }, { "name": "ptrace", - "url": "https://github.com/rgv151/ptrace.nim", + "url": "https://github.com/ba0f3/ptrace.nim", "method": "git", "tags": [ "ptrace", @@ -3426,7 +3426,7 @@ ], "description": "ptrace wrapper for Nim", "license": "MIT", - "web": "https://github.com/rgv151/ptrace.nim" + "web": "https://github.com/ba0f3/ptrace.nim" }, { "name": "ndbex", @@ -3548,7 +3548,7 @@ }, { "name": "daemonize", - "url": "https://github.com/rgv151/daemonize.nim", + "url": "https://github.com/OpenSystemsLab/daemonize.nim", "method": "git", "tags": [ "daemonize", @@ -3560,7 +3560,7 @@ ], "description": "This library makes your code run as a daemon process on Unix-like systems", "license": "MIT", - "web": "https://github.com/rgv151/daemonize.nim" + "web": "https://github.com/OpenSystemsLab/daemonize.nim" }, { "name": "tnim", From 9ea814378c6a192e87175a0283692ffaaee1221f Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sun, 1 Oct 2017 15:27:30 +0300 Subject: [PATCH 0511/1381] Update packages.json --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0bc7f83..bb82a8b 100644 --- a/packages.json +++ b/packages.json @@ -7310,7 +7310,7 @@ "method": "git", "tags": [ "jackknife", - "statistics", + "statistics" ], "description": "Support for ensemble file format and arithmetic using jackknife/bootstrap propagation of errors", "license": "BSD3", From fb642ff377cbf41778f9c103d99d156e29dc4905 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sun, 1 Oct 2017 15:34:58 +0300 Subject: [PATCH 0512/1381] Validate json with js --- .travis.yml | 2 +- validate_json.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 validate_json.js diff --git a/.travis.yml b/.travis.yml index 6257b0f..d4e2673 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_script: - export PATH=`pwd`/nim-0.13.0/bin:$PATH script: - - nim c -d:ssl -r package_scanner.nim + - nim c -d:ssl -r package_scanner.nim && node ./validate_json.js notifications: email: false # noisy diff --git a/validate_json.js b/validate_json.js new file mode 100644 index 0000000..e9d1bb4 --- /dev/null +++ b/validate_json.js @@ -0,0 +1,2 @@ +var fs = require('fs'); +JSON.parse(fs.readFileSync('packages.json', 'utf8')); From 0786983a1e3b85b9a5ae91f36d7e515c6b5d00f8 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 1 Oct 2017 16:07:01 +0100 Subject: [PATCH 0513/1381] Add basic2d/basic3d --- packages.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/packages.json b/packages.json index bb82a8b..8aa3a72 100644 --- a/packages.json +++ b/packages.json @@ -7315,5 +7315,33 @@ "description": "Support for ensemble file format and arithmetic using jackknife/bootstrap propagation of errors", "license": "BSD3", "web": "https://github.com/JeffersonLab/ensem" + }, + { + "name": "basic2d", + "url": "https://github.com/nim-lang/basic2d", + "method": "git", + "tags": [ + "deprecated", + "vector", + "stdlib", + "library" + ], + "description": "Deprecated module for vector/matrices operations.", + "license": "MIT", + "web": "https://github.com/nim-lang/basic2d" + }, + { + "name": "basic3d", + "url": "https://github.com/nim-lang/basic3d", + "method": "git", + "tags": [ + "deprecated", + "vector", + "stdlib", + "library" + ], + "description": "Deprecated module for vector/matrices operations.", + "license": "MIT", + "web": "https://github.com/nim-lang/basic3d" } ] From f2cccaf85faa427574f6c6f6f24b03d47bb7e440 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Wed, 4 Oct 2017 21:40:13 -0600 Subject: [PATCH 0514/1381] add kexpr --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8aa3a72..2540b87 100644 --- a/packages.json +++ b/packages.json @@ -7261,6 +7261,19 @@ "license": "Apache License 2.0", "web": "https://github.com/edubart/arraymancer-vision" }, + { + "name": "kexpr", + "url": "https://github.com/brentp/kexpr-nim", + "method": "git", + "tags": [ + "math", + "expression", + "evalute" + ], + "description": "wrapper for kexpr math expression evaluation library", + "license": "MIT", + "web": "https://github.com/brentp/kexpr-nim" + }, { "name": "gplay", "url": "https://github.com/yglukhov/gplay", From 969b9c82d28df35781b6b808aee77b10ee6c68da Mon Sep 17 00:00:00 2001 From: Narazaka Date: Fri, 6 Oct 2017 00:32:25 +0900 Subject: [PATCH 0515/1381] Added package shiori --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8aa3a72..edb4182 100644 --- a/packages.json +++ b/packages.json @@ -7343,5 +7343,18 @@ "description": "Deprecated module for vector/matrices operations.", "license": "MIT", "web": "https://github.com/nim-lang/basic3d" + }, + { + "name": "shiori", + "url": "https://github.com/Narazaka/shiori-nim", + "method": "git", + "tags": [ + "ukagaka", + "shiori", + "protocol" + ], + "description": "SHIORI Protocol Parser/Builder", + "license": "MIT", + "web": "https://github.com/Narazaka/shiori-nim" } ] From 2628840c3ec08fb0dd964dba411949077d5c9c56 Mon Sep 17 00:00:00 2001 From: Narazaka Date: Sat, 7 Oct 2017 17:09:02 +0900 Subject: [PATCH 0516/1381] Added package shioridll --- packages.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 23c2859..2e860e2 100644 --- a/packages.json +++ b/packages.json @@ -7266,9 +7266,9 @@ "url": "https://github.com/brentp/kexpr-nim", "method": "git", "tags": [ - "math", - "expression", - "evalute" + "math", + "expression", + "evalute" ], "description": "wrapper for kexpr math expression evaluation library", "license": "MIT", @@ -7369,5 +7369,17 @@ "description": "SHIORI Protocol Parser/Builder", "license": "MIT", "web": "https://github.com/Narazaka/shiori-nim" + }, + { + "name": "shioridll", + "url": "https://github.com/Narazaka/shioridll-nim", + "method": "git", + "tags": [ + "shiori", + "ukagaka" + ], + "description": "The SHIORI DLL interface", + "license": "MIT", + "web": "https://github.com/Narazaka/shioridll-nim" } ] From 84ad2296305715be97818190a2070c33a254718e Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 7 Oct 2017 22:53:56 +0100 Subject: [PATCH 0517/1381] Added package httpauth --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 2e860e2..39b6ccb 100644 --- a/packages.json +++ b/packages.json @@ -7381,5 +7381,20 @@ "description": "The SHIORI DLL interface", "license": "MIT", "web": "https://github.com/Narazaka/shioridll-nim" + }, + { + "name": "httpauth", + "url": "https://github.com/FedericoCeratto/nim-httpauth", + "method": "git", + "tags": [ + "http", + "authentication", + "authorization", + "library", + "security" + ], + "description": "HTTP Authentication and Authorization", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-httpauth" } ] From e85a29b5cacd50295c037541b1d8b6571374daa5 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 11 Oct 2017 19:43:23 -0500 Subject: [PATCH 0518/1381] Added package cbor --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 39b6ccb..b79817b 100644 --- a/packages.json +++ b/packages.json @@ -7396,5 +7396,19 @@ "description": "HTTP Authentication and Authorization", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-httpauth" + }, + { + "name": "cbor", + "url": "https://github.com/ehmry/nim-cbor", + "method": "git", + "tags": [ + "library", + "cbor", + "binary", + "encoding" + ], + "description": "Concise Binary Object Representation decoder (RFC7049).", + "license": "MIT", + "web": "https://github.com/ehmry/nim-cbor" } ] From 2b762106d7ba1671519debfac7b83c691bc49772 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Thu, 12 Oct 2017 15:46:17 -0500 Subject: [PATCH 0519/1381] Added package base58 --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index b79817b..1dafc1f 100644 --- a/packages.json +++ b/packages.json @@ -7410,5 +7410,21 @@ "description": "Concise Binary Object Representation decoder (RFC7049).", "license": "MIT", "web": "https://github.com/ehmry/nim-cbor" + }, + { + "name": "base58", + "url": "https://github.com/ehmry/nim-base58", + "method": "git", + "tags": [ + "base58", + "bitcoin", + "cryptonote", + "monero", + "encoding", + "library" + ], + "description": "Base58 encoders and decoders for Bitcoin and CryptoNote addresses.", + "license": "MIT", + "web": "https://github.com/ehmry/nim-base58" } ] From 0aefccde05bb737ce21737f5b6048139c2386c84 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 13 Oct 2017 22:04:33 +0100 Subject: [PATCH 0520/1381] Add webdriver package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1dafc1f..4c3f6d0 100644 --- a/packages.json +++ b/packages.json @@ -7426,5 +7426,19 @@ "description": "Base58 encoders and decoders for Bitcoin and CryptoNote addresses.", "license": "MIT", "web": "https://github.com/ehmry/nim-base58" + }, + { + "name": "webdriver", + "url": "https://github.com/dom96/webdriver", + "method": "git", + "tags": [ + "webdriver", + "selenium", + "library", + "firefox" + ], + "description": "Implementation of the WebDriver w3c spec.", + "license": "MIT", + "web": "https://github.com/dom96/webdriver" } ] From 5f55a12d8a704601398d80a8585e5e60ee4365f2 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Mon, 23 Oct 2017 17:57:47 +0200 Subject: [PATCH 0521/1381] Added interfaced --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 4c3f6d0..4784341 100644 --- a/packages.json +++ b/packages.json @@ -7440,5 +7440,16 @@ "description": "Implementation of the WebDriver w3c spec.", "license": "MIT", "web": "https://github.com/dom96/webdriver" + }, + { + "name": "interfaced", + "url": "https://github.com/andreaferretti/interfaced", + "method": "git", + "tags": [ + "interface" + ], + "description": "Go-like interfaces", + "license": "Apache License 2.0", + "web": "https://github.com/andreaferretti/interfaced" } ] From 1534b3b936d0e4ceec7d7c7c1be5fa8fa4aac000 Mon Sep 17 00:00:00 2001 From: Brian Rogoff Date: Mon, 23 Oct 2017 19:26:21 -0700 Subject: [PATCH 0522/1381] Added package vla --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4784341..ba94e82 100644 --- a/packages.json +++ b/packages.json @@ -7451,5 +7451,17 @@ "description": "Go-like interfaces", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/interfaced" + }, + { + "name": "vla", + "url": "https://github.com/bpr/vla", + "method": "git", + "tags": [ + "vla", + "alloca" + ], + "description": "Variable length arrays for Nim", + "license": "MIT", + "web": "https://github.com/bpr/vla" } ] From 034a4252f8fa83c9e0aadee08ad2fc6bf6481362 Mon Sep 17 00:00:00 2001 From: Xiao-Yong Jin Date: Thu, 26 Oct 2017 00:29:25 -0500 Subject: [PATCH 0523/1381] Added package metatools --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ba94e82..cd09694 100644 --- a/packages.json +++ b/packages.json @@ -7463,5 +7463,17 @@ "description": "Variable length arrays for Nim", "license": "MIT", "web": "https://github.com/bpr/vla" + }, + { + "name": "metatools", + "url": "https://github.com/jxy/metatools", + "method": "git", + "tags": [ + "macros", + "metaprogramming" + ], + "description": "Metaprogramming tools for Nim", + "license": "MIT", + "web": "https://github.com/jxy/metatools" } ] From b25763cabb60606e09e95d2f9b5accdc8e9bf820 Mon Sep 17 00:00:00 2001 From: Chris Watson Date: Fri, 27 Oct 2017 01:17:04 -0700 Subject: [PATCH 0524/1381] Added github_api (#604) * Added github_api * Fixed name * Changed license to WTFPL since it's on the list --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cd09694..bce7b1b 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,18 @@ [ + { + "name": "github_api", + "url": "https://github.com/watzon/github-api-nim", + "method": "git", + "tags": [ + "library", + "api", + "github", + "client" + ], + "description": "Nim wrapper for the GitHub API", + "license": "WTFPL", + "web": "https://github.com/watzon/github-api-nim" + }, { "name": "discordnim", "url": "https://github.com/Krognol/discordnim", From 6f0cd494e97f8ee253ef32ed6a86c4342d64165c Mon Sep 17 00:00:00 2001 From: lcrees Date: Sat, 28 Oct 2017 22:50:26 -0600 Subject: [PATCH 0525/1381] Added package libuv --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bce7b1b..4f2d3d1 100644 --- a/packages.json +++ b/packages.json @@ -7489,5 +7489,19 @@ "description": "Metaprogramming tools for Nim", "license": "MIT", "web": "https://github.com/jxy/metatools" + }, + { + "name": "libuv", + "url": "https://github.com/lcrees/libuv", + "method": "git", + "tags": [ + "libuv", + "wrapper", + "node", + "networking" + ], + "description": "libuv bindings for Nim", + "license": "MIT", + "web": "https://github.com/lcrees/libuv" } ] From 96ddf1be5e06f35451e402433c26ca037bb93447 Mon Sep 17 00:00:00 2001 From: lcrees Date: Tue, 31 Oct 2017 13:05:58 -0600 Subject: [PATCH 0526/1381] Added package romans --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4f2d3d1..da7e7af 100644 --- a/packages.json +++ b/packages.json @@ -7503,5 +7503,17 @@ "description": "libuv bindings for Nim", "license": "MIT", "web": "https://github.com/lcrees/libuv" + }, + { + "name": "romans", + "url": "https://github.com/lcrees/romans", + "method": "git", + "tags": [ + "roman", + "numerals" + ], + "description": "Conversion between integers and Roman numerals", + "license": "MIT", + "web": "https://github.com/lcrees/romans" } ] From f7cc394ba09f6f3799f0bbec35c35aea7d54e0a4 Mon Sep 17 00:00:00 2001 From: "Lynn C. Rees" Date: Tue, 31 Oct 2017 15:45:37 -0600 Subject: [PATCH 0527/1381] Added package pdcurses (#605) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4f2d3d1..f5ca426 100644 --- a/packages.json +++ b/packages.json @@ -7490,6 +7490,20 @@ "license": "MIT", "web": "https://github.com/jxy/metatools" }, + { + "name": "pdcurses", + "url": "https://github.com/lcrees/pdcurses", + "method": "git", + "tags": [ + "pdcurses", + "curses", + "console", + "gui" + ], + "description": "Nim wrapper for PDCurses", + "license": "MIT", + "web": "https://github.com/lcrees/pdcurses" + }, { "name": "libuv", "url": "https://github.com/lcrees/libuv", From 423153a4b7211dc313bdf3f9c774ff764a7dcb9d Mon Sep 17 00:00:00 2001 From: jamesalbert Date: Sat, 4 Nov 2017 00:01:27 -0700 Subject: [PATCH 0528/1381] added nimates --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e0fc9b5..3e99504 100644 --- a/packages.json +++ b/packages.json @@ -13,6 +13,19 @@ "license": "WTFPL", "web": "https://github.com/watzon/github-api-nim" }, + { + "name": "nimates", + "url": "https://github.com/jamesalbert/nimates", + "method": "git", + "tags": [ + "library", + "postmates", + "delivery" + ], + "description": "Client library for the Postmates API", + "license": "Apache", + "web": "https://github.com/jamesalbert/nimates" + }, { "name": "discordnim", "url": "https://github.com/Krognol/discordnim", From 2a6b988f4ee385e95283376dcd1da1c4363abceb Mon Sep 17 00:00:00 2001 From: mikra72 Date: Sun, 5 Nov 2017 15:41:51 +0100 Subject: [PATCH 0529/1381] nimble entry for timerpool implementation --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 3e99504..41ffd88 100644 --- a/packages.json +++ b/packages.json @@ -7542,5 +7542,19 @@ "description": "Conversion between integers and Roman numerals", "license": "MIT", "web": "https://github.com/lcrees/romans" + }, + { + "name": "timerpool", + "url": "https://github.com/mikra01/timerpool/", + "method": "git", + "tags": [ + "timer", + "pool", + "events", + "thread" + ], + "description": "threadsafe timerpool implementation for event purpose", + "license": "MIT", + "web": "https://github.com/mikra01/timerpool" } ] From fb3e429442a23c4568a9dd74094bd2269391392f Mon Sep 17 00:00:00 2001 From: Luca Guzzon Date: Mon, 6 Nov 2017 00:20:44 +0100 Subject: [PATCH 0530/1381] Added package simpleAST (#610) --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 41ffd88..7309b75 100644 --- a/packages.json +++ b/packages.json @@ -7543,7 +7543,18 @@ "license": "MIT", "web": "https://github.com/lcrees/romans" }, - { + { + "name": "simpleAST", + "url": "https://github.com/lguzzon/simpleAST", + "method": "git", + "tags": [ + "ast" + ], + "description": "Simple AST in NIM", + "license": "MIT", + "web": "https://github.com/lguzzon/simpleAST" + }, + { "name": "timerpool", "url": "https://github.com/mikra01/timerpool/", "method": "git", From efccc6a6607e33d0bd4cd61f81d093c0bc471b7e Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Mon, 6 Nov 2017 11:18:26 +0200 Subject: [PATCH 0531/1381] Add zero-functional --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 7309b75..a66292f 100644 --- a/packages.json +++ b/packages.json @@ -7567,5 +7567,19 @@ "description": "threadsafe timerpool implementation for event purpose", "license": "MIT", "web": "https://github.com/mikra01/timerpool" + }, + { + "name": "zero_functional", + "url": "https://github.com/alehander42/zero-functional", + "method": "git", + "tags": [ + "functional", + "dsl", + "chaining", + "seq" + ], + "description": "A library providing zero-cost chaining for functional abstractions in Nim", + "license": "MIT", + "web": "https://github.com/alehander42/zero-functional" } ] From 564b7ec98582e69b614e9dab5585f7b288c5f16a Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Tue, 7 Nov 2017 00:07:29 +0100 Subject: [PATCH 0532/1381] Added package ormin --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index a66292f..11a6d4f 100644 --- a/packages.json +++ b/packages.json @@ -7581,5 +7581,19 @@ "description": "A library providing zero-cost chaining for functional abstractions in Nim", "license": "MIT", "web": "https://github.com/alehander42/zero-functional" + }, + { + "name": "ormin", + "url": "https://github.com/Araq/ormin", + "method": "git", + "tags": [ + "ORM", + "SQL", + "db", + "database" + ], + "description": "Prepared SQL statement generator. A lightweight ORM.", + "license": "MIT", + "web": "https://github.com/Araq/ormin" } ] From 8f2816c6aa022c978616c141fa7349859161747a Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Tue, 7 Nov 2017 11:54:39 +0100 Subject: [PATCH 0533/1381] Added package karax --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 11a6d4f..992c008 100644 --- a/packages.json +++ b/packages.json @@ -7595,5 +7595,19 @@ "description": "Prepared SQL statement generator. A lightweight ORM.", "license": "MIT", "web": "https://github.com/Araq/ormin" + }, + { + "name": "karax", + "url": "https://github.com/pragmagic/karax", + "method": "git", + "tags": [ + "browser", + "DOM", + "virtual-DOM", + "UI" + ], + "description": "Karax is a framework for developing single page applications in Nim.", + "license": "MIT", + "web": "https://github.com/pragmagic/karax" } ] From aec390870072ec4362bb514995f4c05c3a1531a9 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Tue, 7 Nov 2017 14:25:44 +0200 Subject: [PATCH 0534/1381] Taking over jnim again --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 11a6d4f..4a5010e 100644 --- a/packages.json +++ b/packages.json @@ -2365,7 +2365,7 @@ }, { "name": "jnim", - "url": "https://github.com/vegansk/jnim", + "url": "https://github.com/yglukhov/jnim", "method": "git", "tags": [ "library", @@ -2376,7 +2376,7 @@ ], "description": "Nim - Java bridge", "license": "MIT", - "web": "https://github.com/vegansk/jnim" + "web": "https://github.com/yglukhov/jnim" }, { "name": "nimPDF", From 182c38fde2f6ddba255b7c8b704a003091e96e67 Mon Sep 17 00:00:00 2001 From: citycide Date: Sat, 11 Nov 2017 15:20:19 -0600 Subject: [PATCH 0535/1381] Added package cascade --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f994b4b..7d0c61d 100644 --- a/packages.json +++ b/packages.json @@ -7609,5 +7609,20 @@ "description": "Karax is a framework for developing single page applications in Nim.", "license": "MIT", "web": "https://github.com/pragmagic/karax" + }, + { + "name": "cascade", + "url": "https://github.com/citycide/cascade", + "method": "git", + "tags": [ + "macro", + "cascade", + "operator", + "dart", + "with" + ], + "description": "Method & assignment cascades for Nim, inspired by Smalltalk & Dart.", + "license": "MIT", + "web": "https://github.com/citycide/cascade" } ] From d1c533e50ea511cf25c72fb37078f65a934f3ea2 Mon Sep 17 00:00:00 2001 From: Andre von Houck Date: Mon, 13 Nov 2017 19:23:45 -0800 Subject: [PATCH 0536/1381] Added package chrono --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 7d0c61d..6b123f0 100644 --- a/packages.json +++ b/packages.json @@ -7624,5 +7624,20 @@ "description": "Method & assignment cascades for Nim, inspired by Smalltalk & Dart.", "license": "MIT", "web": "https://github.com/citycide/cascade" + }, + { + "name": "chrono", + "url": "https://github.com/treeform/chrono", + "method": "git", + "tags": [ + "library", + "timestamp", + "calendar", + "timezone", + "" + ], + "description": "Calendars, Timestamps and Timezones utilities.", + "license": "MIT", + "web": "https://github.com/treeform/chrono" } ] From d86ee027e0b623fe7284db0a76d66e15e755bfb3 Mon Sep 17 00:00:00 2001 From: treeform Date: Mon, 13 Nov 2017 19:25:03 -0800 Subject: [PATCH 0537/1381] Update packages.json remove empty tag --- packages.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 6b123f0..c8a8c1e 100644 --- a/packages.json +++ b/packages.json @@ -7633,8 +7633,7 @@ "library", "timestamp", "calendar", - "timezone", - "" + "timezone" ], "description": "Calendars, Timestamps and Timezones utilities.", "license": "MIT", From da2c3d0ee73d530bdb9effb29e5ca77d03edaaf6 Mon Sep 17 00:00:00 2001 From: Anatoly Galiulin Date: Wed, 15 Nov 2017 13:40:01 +0700 Subject: [PATCH 0538/1381] Add `dbschema` library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c8a8c1e..5180138 100644 --- a/packages.json +++ b/packages.json @@ -7638,5 +7638,18 @@ "description": "Calendars, Timestamps and Timezones utilities.", "license": "MIT", "web": "https://github.com/treeform/chrono" + }, + { + "name": "dbschema", + "url": "https://github.com/vegansk/dbschema", + "method": "git", + "tags": [ + "library", + "database", + "db" + ], + "description": "Database schema migration library for Nim language.", + "license": "MIT", + "web": "https://github.com/vegansk/dbschema" } ] From 87f7e05a1afa92e93b5a3455f09a39a220e0a163 Mon Sep 17 00:00:00 2001 From: lcrees Date: Wed, 15 Nov 2017 11:20:18 -0700 Subject: [PATCH 0539/1381] Added package gentabs --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 5180138..ed843bf 100644 --- a/packages.json +++ b/packages.json @@ -7651,5 +7651,19 @@ "description": "Database schema migration library for Nim language.", "license": "MIT", "web": "https://github.com/vegansk/dbschema" + }, + { + "name": "gentabs", + "url": "https://github.com/lcrees/gentabs", + "method": "git", + "tags": [ + "table", + "string", + "key", + "value" + ], + "description": "Efficient hash table that is a key-value mapping (removed from stdlib)", + "license": "MIT", + "web": "https://github.com/lcrees/gentabs" } ] From 9609386b7593a6f1672ca31aba4c176e1c487914 Mon Sep 17 00:00:00 2001 From: Earl Kennedy Date: Wed, 15 Nov 2017 19:25:01 -0500 Subject: [PATCH 0540/1381] Add libgraph --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index ed843bf..d03666d 100644 --- a/packages.json +++ b/packages.json @@ -7665,5 +7665,20 @@ "description": "Efficient hash table that is a key-value mapping (removed from stdlib)", "license": "MIT", "web": "https://github.com/lcrees/gentabs" + }, + { + "name": "libgraph", + "url": "https://github.com/Mnenmenth/libgraphnim", + "method": "git", + "tags": [ + "graph", + "math", + "conversion", + "pixels", + "coordinates" + ], + "description": "Converts 2D linear graph coordinates to pixels on screen", + "license": "MIT", + "web": "https://github.com/Mnenmenth/libgraphnim" } ] From 81e89655313f30770b5a9bd5659aed4f2b383be6 Mon Sep 17 00:00:00 2001 From: lcrees Date: Thu, 16 Nov 2017 12:31:36 -0700 Subject: [PATCH 0541/1381] Added package polynumeric --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d03666d..b23d56b 100644 --- a/packages.json +++ b/packages.json @@ -7680,5 +7680,17 @@ "description": "Converts 2D linear graph coordinates to pixels on screen", "license": "MIT", "web": "https://github.com/Mnenmenth/libgraphnim" + }, + { + "name": "polynumeric", + "url": "https://github.com/lcrees/polynumeric", + "method": "git", + "tags": [ + "polynomial", + "numeric" + ], + "description": "Polynomial operations", + "license": "MIT", + "web": "https://github.com/lcrees/polynumeric" } ] From 853f443ed50306ab693cc65ebe7eaf3c6f39d1aa Mon Sep 17 00:00:00 2001 From: nitely Date: Wed, 22 Nov 2017 22:07:06 -0300 Subject: [PATCH 0542/1381] Added package unicodedb --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b23d56b..b9b9d81 100644 --- a/packages.json +++ b/packages.json @@ -7692,5 +7692,18 @@ "description": "Polynomial operations", "license": "MIT", "web": "https://github.com/lcrees/polynumeric" + }, + { + "name": "unicodedb", + "url": "https://github.com/nitely/nim-unicodedb", + "method": "git", + "tags": [ + "unicode", + "UCD", + "unicodedata" + ], + "description": "Unicode Character Database (UCD) access for Nim", + "license": "MIT", + "web": "https://github.com/nitely/nim-unicodedb" } ] From 5f7bfac3b8cd3dc46a206778e53432db206f4cac Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Fri, 24 Nov 2017 10:11:31 -0700 Subject: [PATCH 0543/1381] add lapper --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index b9b9d81..d008408 100644 --- a/packages.json +++ b/packages.json @@ -7301,6 +7301,17 @@ "license": "MIT", "web": "https://github.com/brentp/kexpr-nim" }, + { + "name": "lapper", + "url": "https://github.com/brentp/nim-lapper", + "method": "git", + "tags": [ + "interval" + ], + "description": "fast interval overlaps", + "license": "MIT", + "web": "https://github.com/brentp/nim-lapper" + }, { "name": "gplay", "url": "https://github.com/yglukhov/gplay", From 58100b6d980c91a88c014293f2fc6e4dc1775465 Mon Sep 17 00:00:00 2001 From: nitely Date: Mon, 27 Nov 2017 03:58:27 -0300 Subject: [PATCH 0544/1381] Added package normalize --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d008408..71cd587 100644 --- a/packages.json +++ b/packages.json @@ -7716,5 +7716,19 @@ "description": "Unicode Character Database (UCD) access for Nim", "license": "MIT", "web": "https://github.com/nitely/nim-unicodedb" + }, + { + "name": "normalize", + "url": "https://github.com/nitely/nim-normalize", + "method": "git", + "tags": [ + "unicode", + "normalization", + "nfc", + "nfd" + ], + "description": "Unicode normalization forms (tr15)", + "license": "MIT", + "web": "https://github.com/nitely/nim-normalize" } ] From fc31f14c2db07cd0fa4721742c00abb9d6a83740 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 29 Nov 2017 12:34:30 +0000 Subject: [PATCH 0545/1381] Add nico --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 71cd587..331b982 100644 --- a/packages.json +++ b/packages.json @@ -7730,5 +7730,20 @@ "description": "Unicode normalization forms (tr15)", "license": "MIT", "web": "https://github.com/nitely/nim-normalize" + }, + { + "name": "nico", + "url": "https://github.com/ftsf/nico", + "method": "git", + "tags": [ + "pico-8", + "game", + "library", + "ludum", + "dare" + ], + "description": "Nico game engine", + "license": "MIT", + "web": "https://github.com/ftsf/nico" } ] From e99be0d335ef0023af28631159f32f3f4a1ead28 Mon Sep 17 00:00:00 2001 From: Volodymyr Melnychuk Date: Thu, 30 Nov 2017 15:10:23 +0200 Subject: [PATCH 0546/1381] Add os_files package file dialog, system file/folder icon, open file with default app --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 331b982..29ca643 100644 --- a/packages.json +++ b/packages.json @@ -7745,5 +7745,17 @@ "description": "Nico game engine", "license": "MIT", "web": "https://github.com/ftsf/nico" + },{ + "name": "os_files", + "url": "https://github.com/tormund/os_files", + "method": "git", + "tags": [ + "dialogs", + "file", + "icon" + ], + "description": "Crossplatform (x11, windows, osx) native file dialogs; sytem file/folder icons in any resolution; open file with default application", + "license": "MIT", + "web": "https://github.com/tormund/os_files" } ] From e3fb0667e59e95b6050ba9fcfcde4896bc6f7f28 Mon Sep 17 00:00:00 2001 From: Charles Barto Date: Fri, 1 Dec 2017 16:01:24 -0500 Subject: [PATCH 0547/1381] Added package netpbm --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 29ca643..ce973cf 100644 --- a/packages.json +++ b/packages.json @@ -7745,7 +7745,8 @@ "description": "Nico game engine", "license": "MIT", "web": "https://github.com/ftsf/nico" - },{ + }, + { "name": "os_files", "url": "https://github.com/tormund/os_files", "method": "git", @@ -7757,5 +7758,19 @@ "description": "Crossplatform (x11, windows, osx) native file dialogs; sytem file/folder icons in any resolution; open file with default application", "license": "MIT", "web": "https://github.com/tormund/os_files" + }, + { + "name": "netpbm", + "url": "https://github.com/barcharcraz/nim-netpbm", + "method": "git", + "tags": [ + "pbm", + "image", + "wrapper", + "netpbm" + ], + "description": "Wrapper for libnetpbm", + "license": "MIT", + "web": "https://github.com/barcharcraz/nim-netpbm" } ] From 431ac60e7dd1d7b67a1716f194aea03b3ec9553d Mon Sep 17 00:00:00 2001 From: Charles Barto Date: Fri, 1 Dec 2017 16:05:36 -0500 Subject: [PATCH 0548/1381] renamed libpng --- packages.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 29ca643..663589d 100644 --- a/packages.json +++ b/packages.json @@ -869,7 +869,7 @@ "web": "https://www.github.com/barcharcraz/nimalpm/" }, { - "name": "nimlibpng", + "name": "png", "url": "https://github.com/barcharcraz/nimlibpng", "method": "git", "tags": [ @@ -883,6 +883,10 @@ "license": "libpng", "web": "https://github.com/barcharcraz/nimlibpng" }, + { + "name": "nimlibpng", + "alias": "png" + }, { "name": "sdl2", "url": "https://github.com/nim-lang/sdl2", From 468838782a4bda09a4ad21358a6eefdea75e3c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Krampe?= Date: Sat, 2 Dec 2017 16:25:54 +0100 Subject: [PATCH 0549/1381] Added package spryvm (#627) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7f1a2cc..ebbc8aa 100644 --- a/packages.json +++ b/packages.json @@ -7763,6 +7763,19 @@ "license": "MIT", "web": "https://github.com/tormund/os_files" }, + { + "name": "spryvm", + "url": "https://github.com/gokr/spryvm", + "method": "git", + "tags": [ + "interpreter", + "language", + "spry" + ], + "description": "Homoiconic dynamic language interpreter in Nim", + "license": "MIT", + "web": "https://github.com/gokr/spryvm" + }, { "name": "netpbm", "url": "https://github.com/barcharcraz/nim-netpbm", From e69a88b9db2bfee54224e7cc3d5a6359f898926a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Krampe?= Date: Sat, 2 Dec 2017 16:27:15 +0100 Subject: [PATCH 0550/1381] Added package sprymicro (#628) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ebbc8aa..831ef9c 100644 --- a/packages.json +++ b/packages.json @@ -7763,6 +7763,18 @@ "license": "MIT", "web": "https://github.com/tormund/os_files" }, + { + "name": "sprymicro", + "url": "https://github.com/gokr/sprymicro", + "method": "git", + "tags": [ + "spry", + "demo" + ], + "description": "Small demo Spry interpreters", + "license": "MIT", + "web": "https://github.com/gokr/sprymicro" + }, { "name": "spryvm", "url": "https://github.com/gokr/spryvm", From a70481797027319d839a96b01c59a00fed8348b6 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Sun, 3 Dec 2017 08:08:38 -0700 Subject: [PATCH 0551/1381] add nim-kmer --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 831ef9c..a6a404f 100644 --- a/packages.json +++ b/packages.json @@ -7292,6 +7292,19 @@ "license": "Apache License 2.0", "web": "https://github.com/edubart/arraymancer-vision" }, + { + "name": "kmer", + "url": "https://github.com/brentp/nim-kmer", + "method": "git", + "tags": [ + "kmer", + "dna", + "sequence" + ], + "description": "encoded kmer library for fast operations on kmers up to 31", + "license": "MIT", + "web": "https://github.com/brentp/nim-kmer" + }, { "name": "kexpr", "url": "https://github.com/brentp/kexpr-nim", From ba514be15aa7b93dca90463006e4d1a684ba303a Mon Sep 17 00:00:00 2001 From: Michedev Date: Sun, 3 Dec 2017 21:22:25 +0100 Subject: [PATCH 0552/1381] Update packages.json --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 29ca643..f10bc1c 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,19 @@ [ + { + "name": "sequtils2", + "url": "https://github.com/Michedev/sequtils2", + "method": "git", + "tags": [ + "library", + "sequence", + "string", + "openArray", + "functional" + ], + "description": "Additional functions for sequences that are not present in sequtils", + "license": "MIT", + "web": "http://htmlpreview.github.io/?https://github.com/Michedev/sequtils2/blob/master/sequtils2.html" + }, { "name": "github_api", "url": "https://github.com/watzon/github-api-nim", From c02c1e2ca1af17b4994892a04a419c18538e13a5 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Mon, 4 Dec 2017 14:43:00 -0600 Subject: [PATCH 0553/1381] Add nimgen --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index a6a404f..d4c1a21 100644 --- a/packages.json +++ b/packages.json @@ -7814,5 +7814,20 @@ "description": "Wrapper for libnetpbm", "license": "MIT", "web": "https://github.com/barcharcraz/nim-netpbm" + }, + { + "name": "nimgen", + "url": "https://github.com/genotrance/nimgen", + "method": "git", + "tags": [ + "c2nim", + "library", + "wrapper", + "c", + "c++" + ], + "description": "C2nim helper to simplify and automate wrapping C libraries", + "license": "MIT", + "web": "https://github.com/genotrance/nimgen" } ] From 3dbdcfbd9591f0dfeabdc07cbf2a7cb2681ba72f Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Wed, 13 Dec 2017 11:26:42 +0100 Subject: [PATCH 0554/1381] Added binaryparse package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d4c1a21..9731e42 100644 --- a/packages.json +++ b/packages.json @@ -976,6 +976,18 @@ "license": "MIT", "web": "https://github.com/PMunch/drawille-nim" }, + { + "name": "binaryparse", + "url": "https://github.com/PMunch/binaryparse", + "method": "git", + "tags": [ + "parsing", + "binary" + ], + "description": "Binary parser (and writer) in pure Nim. Generates efficient parsing procedures that handle many commonly seen patterns seen in binary files and does sub-byte field reading.", + "license": "MIT", + "web": "https://github.com/PMunch/binaryparse" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From bb906b15ca4871267c9597ae546ca1bd280fd54e Mon Sep 17 00:00:00 2001 From: Skrylar Date: Sun, 17 Dec 2017 07:53:12 +0000 Subject: [PATCH 0555/1381] Add sksbox to nimble (manually, because nimble publish is >:|) --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 9731e42..1b10bf4 100644 --- a/packages.json +++ b/packages.json @@ -7841,5 +7841,20 @@ "description": "C2nim helper to simplify and automate wrapping C libraries", "license": "MIT", "web": "https://github.com/genotrance/nimgen" - } + }, + { + "name": "sksbox", + "url": "https://github.com/Skrylar/sksbox", + "method": "git", + "tags": [ + "sbox", + "binary", + "binaryformat", + "nothings", + "container" + ], + "description": "A native-nim implementaton of the sBOX generic container format.", + "license": "MIT", + "web": "https://github.com/Skrylar/sksbox" + }, ] From 815a64213862c51f714425f0a8d60c79db234a08 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 17 Dec 2017 10:41:33 +0000 Subject: [PATCH 0556/1381] Fix trailing comma --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 1b10bf4..d1462b9 100644 --- a/packages.json +++ b/packages.json @@ -7856,5 +7856,5 @@ "description": "A native-nim implementaton of the sBOX generic container format.", "license": "MIT", "web": "https://github.com/Skrylar/sksbox" - }, + } ] From fabd1c6c65d0e3edb6b7c90b8d21e9610d1a5b7e Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Sun, 31 Dec 2017 15:38:39 +0200 Subject: [PATCH 0557/1381] added avbin_nim entry --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index d1462b9..4a7bef4 100644 --- a/packages.json +++ b/packages.json @@ -7856,5 +7856,20 @@ "description": "A native-nim implementaton of the sBOX generic container format.", "license": "MIT", "web": "https://github.com/Skrylar/sksbox" + }, + { + "name": "avbin_nim", + "url": "https://github.com/Vladar4/avbin_nim", + "method": "git", + "tags": [ + "audio", + "video", + "media", + "library", + "wrapper" + ], + "description": "Wrapper of the AVbin library for the Nim language.", + "license": "LGPL", + "web": "https://github.com/Vladar4/avbin_nim" } ] From fda634fc5d117d33befc7112d572a56a458bcc58 Mon Sep 17 00:00:00 2001 From: Vladar4 Date: Sun, 31 Dec 2017 17:07:17 +0200 Subject: [PATCH 0558/1381] renamed avbin_nim to avbin --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 4a7bef4..681cd69 100644 --- a/packages.json +++ b/packages.json @@ -7858,8 +7858,8 @@ "web": "https://github.com/Skrylar/sksbox" }, { - "name": "avbin_nim", - "url": "https://github.com/Vladar4/avbin_nim", + "name": "avbin", + "url": "https://github.com/Vladar4/avbin", "method": "git", "tags": [ "audio", @@ -7870,6 +7870,6 @@ ], "description": "Wrapper of the AVbin library for the Nim language.", "license": "LGPL", - "web": "https://github.com/Vladar4/avbin_nim" + "web": "https://github.com/Vladar4/avbin" } ] From 1b13bd438e2935c1c5a0a6a4c303fde7d545d7a4 Mon Sep 17 00:00:00 2001 From: Bruce Doan Date: Mon, 1 Jan 2018 23:35:09 +0700 Subject: [PATCH 0559/1381] Added package fsm --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 681cd69..f120663 100644 --- a/packages.json +++ b/packages.json @@ -7871,5 +7871,19 @@ "description": "Wrapper of the AVbin library for the Nim language.", "license": "LGPL", "web": "https://github.com/Vladar4/avbin" + }, + { + "name": "fsm", + "url": "https://github.com/ba0f3/fsm.nim", + "method": "git", + "tags": [ + "fsm", + "finite", + "state", + "machine" + ], + "description": "A simple finite-state machine for @nim-lang", + "license": "MIT", + "web": "https://github.com/ba0f3/fsm.nim" } ] From 0ae777e177473f0aa2d4c3d045598f58788dd988 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Fri, 5 Jan 2018 13:01:28 -0700 Subject: [PATCH 0560/1381] add hts-nim --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index baa10e2..38af8f7 100644 --- a/packages.json +++ b/packages.json @@ -7319,6 +7319,22 @@ "license": "Apache License 2.0", "web": "https://github.com/edubart/arraymancer-vision" }, + { + "name": "hts", + "url": "https://github.com/brentp/hts-nim", + "method": "git", + "tags": [ + "kmer", + "dna", + "sequence", + "bam", + "vcf", + "genomics" + ], + "description": "htslib wrapper for nim", + "license": "MIT", + "web": "https://brentp.github.io/hts-nim/" + }, { "name": "kmer", "url": "https://github.com/brentp/nim-kmer", From 794a149bf5d20fc4140560924f3ef1da875200fc Mon Sep 17 00:00:00 2001 From: GULPF Date: Sat, 6 Jan 2018 21:22:38 +0100 Subject: [PATCH 0561/1381] Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 38af8f7..dc37ff2 100644 --- a/packages.json +++ b/packages.json @@ -7916,5 +7916,18 @@ "description": "A simple finite-state machine for @nim-lang", "license": "MIT", "web": "https://github.com/ba0f3/fsm.nim" + }, + { + "name": "timezones", + "url": "https://github.com/GULPF/timezones", + "method": "git", + "tags": [ + "timezone", + "time", + "tzdata" + ], + "description": "Timezone library compatible with the standard library. ", + "license": "MIT", + "web": "https://github.com/GULPF/timezones" } ] From 6429b306712fed09216061d6f01fa9b60f61d8d2 Mon Sep 17 00:00:00 2001 From: Max Skybin Date: Tue, 9 Jan 2018 21:19:42 -0500 Subject: [PATCH 0562/1381] Update packages.json --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index dc37ff2..1cbff3b 100644 --- a/packages.json +++ b/packages.json @@ -7929,5 +7929,20 @@ "description": "Timezone library compatible with the standard library. ", "license": "MIT", "web": "https://github.com/GULPF/timezones" + }, + { + "name": "ndf", + "url": "https://github.com/rustomax/ndf", + "method": "git", + "tags": [ + "app", + "binary", + "duplicates", + "utility", + "filesystem" + ], + "description": "Duplicate files finder", + "license": "MIT", + "web": "https://github.com/rustomax/ndf" } ] From 819fd13cb880f7f7c6ec26813b72e0f7d90091cb Mon Sep 17 00:00:00 2001 From: oskca Date: Wed, 10 Jan 2018 22:12:58 +0800 Subject: [PATCH 0563/1381] add webview, a cross platform single header webview library --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 1cbff3b..5d0a660 100644 --- a/packages.json +++ b/packages.json @@ -2927,6 +2927,22 @@ "license": "MIT", "web": "https://github.com/yglukhov/nimx" }, + { + "name": "webview", + "url": "https://github.com/oskca/webview", + "method": "git", + "tags": [ + "gui", + "ui", + "webview", + "cross", + "web", + "library" + ], + "description": "Nim bindings for https://github.com/zserge/webview, a cross platform single header webview library", + "license": "MIT", + "web": "https://github.com/oskca/webview" + }, { "name": "memo", "url": "https://github.com/andreaferretti/memo", From 50e2906fb7237dd8d117fd7a122b7de16187adb3 Mon Sep 17 00:00:00 2001 From: PMunch Date: Thu, 11 Jan 2018 10:40:31 +0100 Subject: [PATCH 0564/1381] Added libkeepass package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5d0a660..d9de6be 100644 --- a/packages.json +++ b/packages.json @@ -1003,6 +1003,19 @@ "license": "MIT", "web": "https://github.com/PMunch/binaryparse" }, + { + "name": "libkeepass", + "url": "https://github.com/PMunch/libkeepass", + "method": "git", + "tags": [ + "keepass", + "password", + "library" + ], + "description": "Library for reading KeePass files and decrypt the passwords within it", + "license": "MIT", + "web": "https://github.com/PMunch/libkeepass" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From ce1c086710ed4d7ce4195b1e80da6d78ce31fdb6 Mon Sep 17 00:00:00 2001 From: nitely Date: Fri, 12 Jan 2018 12:58:25 -0300 Subject: [PATCH 0565/1381] Added package unicodeplus --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index d9de6be..57f47a7 100644 --- a/packages.json +++ b/packages.json @@ -7973,5 +7973,18 @@ "description": "Duplicate files finder", "license": "MIT", "web": "https://github.com/rustomax/ndf" + }, + { + "name": "unicodeplus", + "url": "https://github.com/nitely/nim-unicodeplus", + "method": "git", + "tags": [ + "unicode", + "isdigit", + "isalpha" + ], + "description": "Common unicode operations", + "license": "MIT", + "web": "https://github.com/nitely/nim-unicodeplus" } ] From cd6bc8008bdb7bc180e2a66d3410312a895d669d Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Sat, 13 Jan 2018 19:41:21 -0600 Subject: [PATCH 0566/1381] Added package libsvm --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 57f47a7..67868a3 100644 --- a/packages.json +++ b/packages.json @@ -7986,5 +7986,18 @@ "description": "Common unicode operations", "license": "MIT", "web": "https://github.com/nitely/nim-unicodeplus" + }, + { + "name": "libsvm", + "url": "https://github.com/genotrance/libsvm", + "method": "git", + "tags": [ + "scientific", + "svm", + "vector" + ], + "description": "libsvm wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/libsvm" } ] From 8b17f52b1ced6e18514b700ca16db05af84d4d40 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Mon, 15 Jan 2018 23:02:49 +0100 Subject: [PATCH 0567/1381] Added zhsh(zhangshasha) package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 67868a3..45caf2c 100644 --- a/packages.json +++ b/packages.json @@ -1016,6 +1016,18 @@ "license": "MIT", "web": "https://github.com/PMunch/libkeepass" }, + { + "name": "zhsh", + "url": "https://github.com/PMunch/zhangshasha", + "method": "git", + "tags": [ + "algorithm", + "edit-distance" + ], + "description": "This module is a port of the Java implementation of the Zhang-Shasha algorithm for tree edit distance", + "license": "MIT", + "web": "https://github.com/PMunch/zhangshasha" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From e1179128db94d0caaf4458226d9b58deb93c3a4a Mon Sep 17 00:00:00 2001 From: Eli Date: Wed, 17 Jan 2018 18:58:50 -0500 Subject: [PATCH 0568/1381] Added lilt package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 45caf2c..e7237af 100644 --- a/packages.json +++ b/packages.json @@ -8011,5 +8011,18 @@ "description": "libsvm wrapper for Nim", "license": "MIT", "web": "https://github.com/genotrance/libsvm" + }, + { + "name": "lilt", + "url": "https://github.com/quelklef/lilt", + "method": "git", + "tags": [ + "language", + "parser", + "parsing" + ], + "description": "Parsing language", + "license": "MIT", + "web": "https://github.com/quelklef/lilt" } ] From a43000093c481a42d0ecba333c2c2fe8c8070103 Mon Sep 17 00:00:00 2001 From: Narazaka Date: Sat, 20 Jan 2018 17:22:54 +0900 Subject: [PATCH 0569/1381] Added package shiori_charset_convert --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index e7237af..056ec39 100644 --- a/packages.json +++ b/packages.json @@ -8024,5 +8024,17 @@ "description": "Parsing language", "license": "MIT", "web": "https://github.com/quelklef/lilt" + }, + { + "name": "shiori_charset_convert", + "url": "https://github.com/Narazaka/shiori_charset_convert-nim", + "method": "git", + "tags": [ + "shiori", + "ukagaka" + ], + "description": "The SHIORI Message charset convert utility", + "license": "MIT", + "web": "https://github.com/Narazaka/shiori_charset_convert-nim" } ] From bbdb218e29322cf8ffe69b11d564d9e333ac998e Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Sat, 27 Jan 2018 18:34:46 +0100 Subject: [PATCH 0570/1381] Add Nim RocksDB wrapper --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 056ec39..eafce4e 100644 --- a/packages.json +++ b/packages.json @@ -8036,5 +8036,21 @@ "description": "The SHIORI Message charset convert utility", "license": "MIT", "web": "https://github.com/Narazaka/shiori_charset_convert-nim" + }, + { + "name": "rocksdb", + "url": "https://github.com/status-im/nim-rocksdb", + "method": "git", + "tags": [ + "rocksdb", + "database", + "wrapper", + "key", + "value", + "storage" + ], + "description": "Nim wrapper for RocksDB, a persistent key-value store for Flash and RAM Storage.", + "license": "Apache v2 or GPLv2", + "web": "https://github.com/status-im/nim-rocksdb" } ] From 02c0c32a5ba4384b33d99d0ce4790ac8ae059df2 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Sun, 28 Jan 2018 14:45:10 +0100 Subject: [PATCH 0571/1381] Added termstyle package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index eafce4e..fdf3fce 100644 --- a/packages.json +++ b/packages.json @@ -1028,6 +1028,19 @@ "license": "MIT", "web": "https://github.com/PMunch/zhangshasha" }, + { + "name": "termstyle", + "url": "https://github.com/PMunch/termstyle", + "method": "git", + "tags": [ + "terminal", + "colour", + "style" + ], + "description": "Easy to use styles for terminal output", + "license": "MIT", + "web": "https://github.com/PMunch/termstyle" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 3fde59193767c0c43ad26f2694309656792cc577 Mon Sep 17 00:00:00 2001 From: jamesalbert Date: Mon, 29 Jan 2018 19:50:29 -0800 Subject: [PATCH 0572/1381] added grafanim --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fdf3fce..ff89835 100644 --- a/packages.json +++ b/packages.json @@ -8065,5 +8065,18 @@ "description": "Nim wrapper for RocksDB, a persistent key-value store for Flash and RAM Storage.", "license": "Apache v2 or GPLv2", "web": "https://github.com/status-im/nim-rocksdb" + }, + { + "name": "grafanim", + "url": "https://github.com/jamesalbert/grafanim", + "method": "git", + "tags": [ + "library", + "grafana", + "dashboards" + ], + "description": "Grafana module for Nim", + "license": "GPL", + "web": "https://github.com/jamesalbert/grafanim" } ] From 9a5b9af5382c9890de1953ea37f21be1a3d92a2b Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Wed, 31 Jan 2018 12:53:28 +0200 Subject: [PATCH 0573/1381] Added nimpy --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ff89835..548f619 100644 --- a/packages.json +++ b/packages.json @@ -8078,5 +8078,17 @@ "description": "Grafana module for Nim", "license": "GPL", "web": "https://github.com/jamesalbert/grafanim" + }, + { + "name": "nimpy", + "url": "https://github.com/yglukhov/nimpy", + "method": "git", + "tags": [ + "python", + "bridge" + ], + "description": "Nim - Python bridge", + "license": "MIT", + "web": "https://github.com/yglukhov/nimpy" } ] From 968a571e558446ff8859b27d9829b75f33a46779 Mon Sep 17 00:00:00 2001 From: Eric Lee Date: Fri, 2 Feb 2018 22:34:34 -0800 Subject: [PATCH 0574/1381] Added package simple_graph --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 548f619..2a59999 100644 --- a/packages.json +++ b/packages.json @@ -8090,5 +8090,16 @@ "description": "Nim - Python bridge", "license": "MIT", "web": "https://github.com/yglukhov/nimpy" + }, + { + "name": "simple_graph", + "url": "github:erhlee-bird/simple_graph", + "method": "git", + "tags": [ + "nim-lang" + ], + "description": "Simple Graph Library", + "license": "MIT", + "web": "github:erhlee-bird/simple_graph" } ] From a9a6a8f2b471e9dbaa2ba3b3284c04c9dcd60f5f Mon Sep 17 00:00:00 2001 From: Eric Lee Date: Fri, 2 Feb 2018 22:36:20 -0800 Subject: [PATCH 0575/1381] fix tags --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2a59999..3fca126 100644 --- a/packages.json +++ b/packages.json @@ -8096,7 +8096,8 @@ "url": "github:erhlee-bird/simple_graph", "method": "git", "tags": [ - "nim-lang" + "datastructures", + "library" ], "description": "Simple Graph Library", "license": "MIT", From ef7e414e83d86ab337db05c4fb38c30df3939ffe Mon Sep 17 00:00:00 2001 From: Eric Lee Date: Sat, 3 Feb 2018 13:17:00 -0800 Subject: [PATCH 0576/1381] whoops fixed web and url --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 3fca126..b07f8e3 100644 --- a/packages.json +++ b/packages.json @@ -8093,7 +8093,7 @@ }, { "name": "simple_graph", - "url": "github:erhlee-bird/simple_graph", + "url": "https://github.com/erhlee-bird/simple_graph", "method": "git", "tags": [ "datastructures", @@ -8101,6 +8101,6 @@ ], "description": "Simple Graph Library", "license": "MIT", - "web": "github:erhlee-bird/simple_graph" + "web": "https://github.com/erhlee-bird/simple_graph" } ] From 30744bc4ef7e3d49a9ff0e0460d9f6ffefed0766 Mon Sep 17 00:00:00 2001 From: TakeYourFreedom <36302420+TakeYourFreedom@users.noreply.github.com> Date: Sat, 10 Feb 2018 15:36:29 +0100 Subject: [PATCH 0577/1381] Add ControlStructures Package (#651) * Update packages.json * Update packages.json * Added Web-URL * Fix description * Fixes tags --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b07f8e3..95d3b72 100644 --- a/packages.json +++ b/packages.json @@ -8102,5 +8102,18 @@ "description": "Simple Graph Library", "license": "MIT", "web": "https://github.com/erhlee-bird/simple_graph" + }, + { + "name": "controlStructures", + "url": "https://github.com/TakeYourFreedom/Additional-Control-Structures-for-Nim", + "method": "git", + "tags": [ + "library", + "control", + "structure" + ], + "description": "Additional control structures", + "license": "MIT", + "web": "http://htmlpreview.github.io/?https://github.com/TakeYourFreedom/Additional-Control-Structures-for-Nim/blob/master/controlStructures.html" } ] From 48bd894fb688d1343dbc5926891c37395fd57390 Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Tue, 13 Feb 2018 18:22:00 +0200 Subject: [PATCH 0578/1381] Add breeze --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 95d3b72..3ed4563 100644 --- a/packages.json +++ b/packages.json @@ -8115,5 +8115,18 @@ "description": "Additional control structures", "license": "MIT", "web": "http://htmlpreview.github.io/?https://github.com/TakeYourFreedom/Additional-Control-Structures-for-Nim/blob/master/controlStructures.html" + }, + { + "name": "breeze", + "url": "https://github.com/alehander42/breeze", + "method": "git", + "tags": [ + "dsl", + "macro", + "metaprogramming" + ], + "description": "A dsl for writing macros in Nim", + "license": "MIT", + "web": "https://github.com/alehander42/breeze" } ] From 7a2a5b58ae461735eb0168ae2f099862f628d145 Mon Sep 17 00:00:00 2001 From: "mr.Shu" Date: Wed, 14 Feb 2018 20:34:45 +0100 Subject: [PATCH 0579/1381] Added package notetxt --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 95d3b72..d30b418 100644 --- a/packages.json +++ b/packages.json @@ -8115,5 +8115,18 @@ "description": "Additional control structures", "license": "MIT", "web": "http://htmlpreview.github.io/?https://github.com/TakeYourFreedom/Additional-Control-Structures-for-Nim/blob/master/controlStructures.html" + }, + { + "name": "notetxt", + "url": "https://github.com/mrshu/nim-notetxt", + "method": "git", + "tags": [ + "notetxt,", + "note", + "taking" + ], + "description": "A library that implements the note.txt specification for note taking.", + "license": "MIT", + "web": "https://github.com/mrshu/nim-notetxt" } ] From 0b0e47fc0f6e15d60e88d15dab7f2694c20d4566 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 17 Feb 2018 17:57:31 +0000 Subject: [PATCH 0580/1381] Added joyent_http_parser and libsvm_legacy packages. --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 716806e..c1e917f 100644 --- a/packages.json +++ b/packages.json @@ -8141,5 +8141,31 @@ "description": "A dsl for writing macros in Nim", "license": "MIT", "web": "https://github.com/alehander42/breeze" + }, + { + "name": "joyent_http_parser", + "url": "https://github.com/nim-lang/joyent_http_parser", + "method": "git", + "tags": [ + "wrapper", + "library", + "parsing" + ], + "description": "Wrapper for high performance HTTP parsing library.", + "license": "MIT", + "web": "https://github.com/nim-lang/joyent_http_parser" + }, + { + "name": "libsvm_legacy", + "url": "https://github.com/nim-lang/libsvm_legacy", + "method": "git", + "tags": [ + "wrapper", + "library", + "scientific" + ], + "description": "Wrapper for libsvm.", + "license": "MIT", + "web": "https://github.com/nim-lang/libsvm_legacy" } ] From b877b09a5d87955c786dc9f19cec56460d5c921d Mon Sep 17 00:00:00 2001 From: Jacob Date: Sun, 18 Feb 2018 19:02:46 +0100 Subject: [PATCH 0581/1381] added nimp5 to package.json --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c1e917f..a3db6e8 100644 --- a/packages.json +++ b/packages.json @@ -8167,5 +8167,19 @@ "description": "Wrapper for libsvm.", "license": "MIT", "web": "https://github.com/nim-lang/libsvm_legacy" + }, + { + "name": "nimp5", + "url": "https://github.com/Foldover/nim-p5", + "method": "git", + "tags": [ + "p5", + "javascript", + "creative coding", + "processing" + ], + "description": "Nim bindings for p5.js.", + "license": "MIT", + "web": "https://github.com/Foldover/nim-p5" } ] From 5a325eebe87f1750454d0e4a62ecb1f3a257eca3 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 18 Feb 2018 21:49:48 +0000 Subject: [PATCH 0582/1381] Update packages.json --- packages.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index a3db6e8..e9332dd 100644 --- a/packages.json +++ b/packages.json @@ -8175,8 +8175,10 @@ "tags": [ "p5", "javascript", - "creative coding", - "processing" + "creative", + "coding", + "processing", + "library" ], "description": "Nim bindings for p5.js.", "license": "MIT", From 9e33b281373567a050d4214b8a41609431a4946a Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Sun, 18 Feb 2018 22:51:06 +0100 Subject: [PATCH 0583/1381] Add CLBlast, a wrapper for the OpenCL BLAS library (#654) --- packages.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/packages.json b/packages.json index e9332dd..433962a 100644 --- a/packages.json +++ b/packages.json @@ -8168,6 +8168,27 @@ "license": "MIT", "web": "https://github.com/nim-lang/libsvm_legacy" }, + { + "name": "clblas", + "url": "https://github.com/numforge/nim-clblast", + "method": "git", + "tags": [ + "BLAS", + "linear", + "algebra", + "vector", + "matrix", + "opencl", + "high", + "performance", + "computing", + "GPU", + "wrapper" + ], + "description": "Wrapper for CLBlast, an OpenCL BLAS library", + "license": "Apache License 2.0", + "web": "https://github.com/numforge/nim-clblast" + }, { "name": "nimp5", "url": "https://github.com/Foldover/nim-p5", From 3a02666163e55e6e96a6ea927a85c65e1e949a11 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Mon, 19 Feb 2018 10:13:21 +0100 Subject: [PATCH 0584/1381] typo, missing a "t" in clblast Sorry :/ --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 433962a..760eb99 100644 --- a/packages.json +++ b/packages.json @@ -8169,7 +8169,7 @@ "web": "https://github.com/nim-lang/libsvm_legacy" }, { - "name": "clblas", + "name": "clblast", "url": "https://github.com/numforge/nim-clblast", "method": "git", "tags": [ From 87799bd53761db0baa03388f7bf4376f435dab4d Mon Sep 17 00:00:00 2001 From: Ruslan Mustakov Date: Tue, 20 Feb 2018 01:11:19 +0700 Subject: [PATCH 0585/1381] Add names module --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 760eb99..8bade36 100644 --- a/packages.json +++ b/packages.json @@ -8204,5 +8204,16 @@ "description": "Nim bindings for p5.js.", "license": "MIT", "web": "https://github.com/Foldover/nim-p5" + }, + { + "name": "names", + "url": "https://github.com/pragmagic/names", + "method": "git", + "tags": [ + "strings" + ], + "description": "String interning library", + "license": "MIT", + "web": "https://github.com/pragmagic/names" } ] From 8ca27a3f4525929cad922ba516e8d52fd32e23a6 Mon Sep 17 00:00:00 2001 From: Yoshihiro Tanaka Date: Wed, 21 Feb 2018 20:31:36 +0900 Subject: [PATCH 0586/1381] Add sha1ext --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 8bade36..27531d8 100644 --- a/packages.json +++ b/packages.json @@ -8215,5 +8215,17 @@ "description": "String interning library", "license": "MIT", "web": "https://github.com/pragmagic/names" + }, + { + "name": "sha1ext", + "url": "https://github.com/CORDEA/sha1ext", + "method": "git", + "tags": [ + "sha1", + "extension" + ], + "description": "std / sha1 extension", + "license": "Apache License 2.0", + "web": "https://github.com/CORDEA/sha1ext" } ] From 7aa0d5e8929e4984e8d27e14a6111dc5d28e6012 Mon Sep 17 00:00:00 2001 From: Forlan Date: Wed, 21 Feb 2018 19:36:16 +0200 Subject: [PATCH 0587/1381] Added package libsha --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 27531d8..c7fcabf 100644 --- a/packages.json +++ b/packages.json @@ -8227,5 +8227,20 @@ "description": "std / sha1 extension", "license": "Apache License 2.0", "web": "https://github.com/CORDEA/sha1ext" + }, + { + "name": "libsha", + "url": "https://github.com/forlan-ua/nim-libsha", + "method": "git", + "tags": [ + "sha1", + "sha224", + "sha256", + "sha384", + "sha512" + ], + "description": "Sha1 and Sha2 implementations", + "license": "MIT", + "web": "https://github.com/forlan-ua/nim-libsha" } ] From e2d9e507f28eaa1ce40b2eab236be7cb0761a065 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 22 Feb 2018 15:41:22 +0000 Subject: [PATCH 0588/1381] Add pwned --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c7fcabf..1914727 100644 --- a/packages.json +++ b/packages.json @@ -8242,5 +8242,19 @@ "description": "Sha1 and Sha2 implementations", "license": "MIT", "web": "https://github.com/forlan-ua/nim-libsha" + }, + { + "name": "pwned", + "url": "https://github.com/dom96/pwned", + "method": "git", + "tags": [ + "application", + "passwords", + "security", + "binary" + ], + "description": "A client for the Pwned passwords API.", + "license": "MIT", + "web": "https://github.com/dom96/pwned" } ] From 0ac2a6353cdebcccbe53f6077923ccd855ab7be6 Mon Sep 17 00:00:00 2001 From: treeform Date: Mon, 26 Feb 2018 01:13:45 -0800 Subject: [PATCH 0589/1381] Add useragents library. (#660) * Add useragents library. * no spaes in tags --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1914727..4171c39 100644 --- a/packages.json +++ b/packages.json @@ -8256,5 +8256,17 @@ "description": "A client for the Pwned passwords API.", "license": "MIT", "web": "https://github.com/dom96/pwned" + }, + { + "name": "useragents", + "url": "https://github.com/treeform/useragents", + "method": "git", + "tags": [ + "library", + "useragent" + ], + "description": "User Agent parser for nim.", + "license": "MIT", + "web": "https://github.com/treeform/useragents" } ] From acfd70e473ddbbe31a1bfb295d2851b3303b9825 Mon Sep 17 00:00:00 2001 From: Michael Jendrusch Date: Tue, 27 Feb 2018 12:22:01 +0100 Subject: [PATCH 0590/1381] add metric. (#661) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4171c39..7d69703 100644 --- a/packages.json +++ b/packages.json @@ -8257,6 +8257,20 @@ "license": "MIT", "web": "https://github.com/dom96/pwned" }, + { + "name": "metric", + "url": "https://github.com/mjendrusch/metric", + "method": "git", + "tags": [ + "library", + "units", + "scientific", + "dimensional-analysis" + ], + "description": "Dimensionful types and dimensional analysis.", + "license": "MIT", + "web": "https://github.com/mjendrusch/metric" + }, { "name": "useragents", "url": "https://github.com/treeform/useragents", From 3ddb6c209f29e960c34d9e96dbeaf21f78319c92 Mon Sep 17 00:00:00 2001 From: emekoi Date: Tue, 27 Feb 2018 10:50:30 -0600 Subject: [PATCH 0591/1381] Added package suffer (#662) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7d69703..d653dde 100644 --- a/packages.json +++ b/packages.json @@ -8257,6 +8257,19 @@ "license": "MIT", "web": "https://github.com/dom96/pwned" }, + { + "name": "suffer", + "url": "https://github.com/emekoi/suffer", + "method": "git", + "tags": [ + "graphics", + "font", + "software" + ], + "description": "a nim library for drawing 2d shapes, text, and images to 32bit software pixel buffers", + "license": "MIT", + "web": "https://github.com/emekoi/suffer" + }, { "name": "metric", "url": "https://github.com/mjendrusch/metric", From 8fb78f9b4ec4d7ebae764fb44d4ec4874fe88ad8 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 27 Feb 2018 19:32:57 +0200 Subject: [PATCH 0592/1381] Add the packages developed by Status Research & Development GmbH --- packages.json | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) diff --git a/packages.json b/packages.json index d653dde..95d765a 100644 --- a/packages.json +++ b/packages.json @@ -5768,6 +5768,165 @@ "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-etcd-client" }, + { + "name": "ranges", + "url": "https://github.com/status-im/nim-ranges", + "method": "git", + "tags": [ + "library", + "ranges" + ], + "description": "Exploration of various implementations of memory range types", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-ranges" + }, + { + "name": "rlp", + "url": "https://github.com/status-im/nim-rlp", + "method": "git", + "tags": [ + "library", + "ethereum", + "rlp" + ], + "description": "RLP serialization library for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-rlp" + }, + { + "name": "eth-keys", + "url": "https://github.com/status-im/nim-eth-keys", + "method": "git", + "tags": [ + "library", + "ethereum", + "cryptography" + ], + "description": "A reimplementation in pure Nim of eth-keys, the common API for Ethereum key operations.", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-eth-keys" + }, + { + "name": "ethash", + "url": "https://github.com/status-im/nim-ethash", + "method": "git", + "tags": [ + "library", + "ethereum", + "ethash", + "cryptography", + "proof-of-work" + ], + "description": "A Nim implementation of Ethash, the ethereum proof-of-work hashing function", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-ethash" + }, + { + "name": "evmjit", + "url": "https://github.com/status-im/nim-evmjit", + "method": "git", + "tags": [ + "library", + "ethereum", + "evm", + "jit", + "wrapper" + ], + "description": "A wrapper for the The Ethereum EVM JIT library", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-evmjit" + }, + { + "name": "keccak_tiny", + "url": "https://github.com/status-im/nim-keccak-tiny", + "method": "git", + "tags": [ + "library", + "sha3", + "keccak", + "cryptography" + ], + "description": "A wrapper for the keccak-tiny C library", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-keccak-tiny" + }, + { + "name": "rocksdb", + "url": "https://github.com/status-im/nim-rocksdb", + "method": "git", + "tags": [ + "library", + "wrapper", + "database" + ], + "description": "A wrapper for Facebook's RocksDB, an embeddable, persistent key-value store for fast storage", + "license": "Apache License 2.0 or GPLv2", + "web": "https://github.com/status-im/nim-rocksdb" + }, + { + "name": "secp256k1", + "url": "https://github.com/status-im/nim-secp256k1", + "method": "git", + "tags": [ + "library", + "cryptography", + "secp256k1" + ], + "description": "A wrapper for the libsecp256k1 C library", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-secp256k1" + }, + { + "name": "ethereum_trie", + "url": "https://github.com/status-im/nim-trie", + "method": "git", + "tags": [ + "library", + "ethereum", + "trie", + "patricia-trie" + ], + "description": "Merkle Patricia Tries as specified by Ethereum", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-trie" + }, + { + "name": "ttmath", + "url": "https://github.com/status-im/nim-ttmath", + "method": "git", + "tags": [ + "library", + "math", + "numbers" + ], + "description": "A Nim wrapper for ttmath: big numbers with fixed size", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-ttmath" + }, + { + "name": "nimbus", + "url": "https://github.com/status-im/nimbus", + "method": "git", + "tags": [ + "ethereum" + ], + "description": "An Ethereum 2.0 Sharding Client for Resource-Restricted Devices", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nimbus" + }, + { + "name": "mpint", + "url": "https://github.com/status-im/mpint", + "method": "git", + "tags": [ + "library", + "math", + "numbers" + ], + "description": "Efficient multiprecision int in Nim", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/mpint" + }, { "name": "stb_image", "url": "https://gitlab.com/define-private-public/stb_image-Nim", From 2d8431b4e5b36ae525319efaddb7e58e3b8ebb83 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 27 Feb 2018 20:18:11 +0200 Subject: [PATCH 0593/1381] oops, the rocksdb package ended up being duplicated --- packages.json | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/packages.json b/packages.json index 95d765a..4cf3a20 100644 --- a/packages.json +++ b/packages.json @@ -8209,22 +8209,6 @@ "license": "MIT", "web": "https://github.com/Narazaka/shiori_charset_convert-nim" }, - { - "name": "rocksdb", - "url": "https://github.com/status-im/nim-rocksdb", - "method": "git", - "tags": [ - "rocksdb", - "database", - "wrapper", - "key", - "value", - "storage" - ], - "description": "Nim wrapper for RocksDB, a persistent key-value store for Flash and RAM Storage.", - "license": "Apache v2 or GPLv2", - "web": "https://github.com/status-im/nim-rocksdb" - }, { "name": "grafanim", "url": "https://github.com/jamesalbert/grafanim", From fe152cdebedf38221e1a8705451fb7ed4b21831d Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 27 Feb 2018 21:32:55 +0200 Subject: [PATCH 0594/1381] fix the name of the eth_keys package --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 4cf3a20..8b45e80 100644 --- a/packages.json +++ b/packages.json @@ -5794,7 +5794,7 @@ "web": "https://github.com/status-im/nim-rlp" }, { - "name": "eth-keys", + "name": "eth_keys", "url": "https://github.com/status-im/nim-eth-keys", "method": "git", "tags": [ From 179627fdeecf78ede9da3cffda2b88e0e717bd34 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 28 Feb 2018 00:05:56 +0200 Subject: [PATCH 0595/1381] add cheatfate's asynctools --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 8b45e80..a01abf5 100644 --- a/packages.json +++ b/packages.json @@ -4302,6 +4302,23 @@ "license": "MIT", "web": "https://networkos.net/nim/reactor.nim" }, + { + "name": "asynctools", + "url": "https://github.com/cheatfate/asynctools", + "method": "git", + "tags": [ + "async", + "pipes", + "processes", + "ipc", + "synchronization", + "dns", + "pty" + ], + "description": "Various asynchronous tools for Nim", + "license": "MIT", + "web": "https://github.com/cheatfate/asynctools" + }, { "name": "collections", "url": "https://github.com/zielmicha/collections.nim", From a8ea79b3e89b0551f6c9af03f165603634f470e5 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 1 Mar 2018 12:35:46 +0100 Subject: [PATCH 0596/1381] add nimna. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index a01abf5..3b7aff5 100644 --- a/packages.json +++ b/packages.json @@ -8455,5 +8455,19 @@ "description": "User Agent parser for nim.", "license": "MIT", "web": "https://github.com/treeform/useragents" + }, + { + "name": "nimna", + "url": "https://github.com/mjendrusch/nimna", + "method": "git", + "tags": [ + "library", + "nucleic-acid-folding", + "scientific", + "biology" + ], + "description": "Nucleic acid folding and design.", + "license": "MIT", + "web": "https://github.com/mjendrusch/nimna" } ] From f256e381a6767e5d52494a116319ca0d8ca47f47 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 4 Mar 2018 13:32:06 +0000 Subject: [PATCH 0597/1381] Add bencode library --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3b7aff5..a3754fa 100644 --- a/packages.json +++ b/packages.json @@ -8469,5 +8469,17 @@ "description": "Nucleic acid folding and design.", "license": "MIT", "web": "https://github.com/mjendrusch/nimna" + }, + { + "name": "bencode", + "url": "https://github.com/FedericoCeratto/nim-bencode", + "method": "git", + "tags": [ + "library", + "bencode" + ], + "description": "Bencode serialization/deserialization library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-bencode" } ] From 4b66f72f1fe4d6c37bc4932a7111d51543aed12f Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Tue, 6 Mar 2018 19:33:07 +0000 Subject: [PATCH 0598/1381] Add i3ipc --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a3754fa..4315adf 100644 --- a/packages.json +++ b/packages.json @@ -8481,5 +8481,18 @@ "description": "Bencode serialization/deserialization library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-bencode" + }, + { + "name": "i3ipc", + "url": "https://github.com/FedericoCeratto/nim-i3ipc", + "method": "git", + "tags": [ + "library", + "i3" + ], + "description": "i3 IPC client library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-i3ipc" } + ] From ce5acc2314ad9788eeba3a2fac83150899add23c Mon Sep 17 00:00:00 2001 From: treeform Date: Wed, 7 Mar 2018 13:02:11 -0800 Subject: [PATCH 0599/1381] Add chroma color library. (#665) * Add chroma color library. * oops comma * Last comma? --- packages.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 4315adf..d8529c4 100644 --- a/packages.json +++ b/packages.json @@ -8493,6 +8493,19 @@ "description": "i3 IPC client library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-i3ipc" - } - + }, + { + "name": "chroma", + "url": "https://github.com/treeform/chroma", + "method": "git", + "tags": [ + "colors", + "cmyk", + "hsl", + "hsv" + ], + "description": "Everything you want to do with colors.", + "license": "MIT", + "web": "https://github.com/treeform/chroma" + } ] From 23e097f6d988e2e112e753895ba2a98dca65e4ab Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Thu, 8 Mar 2018 23:11:13 -0600 Subject: [PATCH 0600/1381] Added package nimbass --- packages.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d8529c4..0232127 100644 --- a/packages.json +++ b/packages.json @@ -8450,7 +8450,7 @@ "method": "git", "tags": [ "library", - "useragent" + "useragent" ], "description": "User Agent parser for nim.", "license": "MIT", @@ -8507,5 +8507,18 @@ "description": "Everything you want to do with colors.", "license": "MIT", "web": "https://github.com/treeform/chroma" - } + }, + { + "name": "nimbass", + "url": "https://github.com/genotrance/nimbass", + "method": "git", + "tags": [ + "bass", + "audio", + "wrapper" + ], + "description": "Bass wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimbass" + } ] From caff1b7b2a11a2c993641b504f3bda3a2922061c Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Thu, 8 Mar 2018 23:15:45 -0600 Subject: [PATCH 0601/1381] Added package nimkerberos --- packages.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d8529c4..3bd9924 100644 --- a/packages.json +++ b/packages.json @@ -8450,7 +8450,7 @@ "method": "git", "tags": [ "library", - "useragent" + "useragent" ], "description": "User Agent parser for nim.", "license": "MIT", @@ -8507,5 +8507,20 @@ "description": "Everything you want to do with colors.", "license": "MIT", "web": "https://github.com/treeform/chroma" - } + }, + { + "name": "nimkerberos", + "url": "https://github.com/genotrance/nimkerberos", + "method": "git", + "tags": [ + "kerberos", + "ntlm", + "authentication", + "auth", + "sspi" + ], + "description": "WinKerberos wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimkerberos" + } ] From ad602c441354202e23e4038a79e51c357a264d20 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Thu, 8 Mar 2018 23:22:24 -0600 Subject: [PATCH 0602/1381] Added package nimssh2 --- packages.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d8529c4..abd46df 100644 --- a/packages.json +++ b/packages.json @@ -8450,7 +8450,7 @@ "method": "git", "tags": [ "library", - "useragent" + "useragent" ], "description": "User Agent parser for nim.", "license": "MIT", @@ -8507,5 +8507,18 @@ "description": "Everything you want to do with colors.", "license": "MIT", "web": "https://github.com/treeform/chroma" - } + }, + { + "name": "nimssh2", + "url": "https://github.com/genotrance/nimssh2", + "method": "git", + "tags": [ + "ssh", + "library", + "wrapper" + ], + "description": "libssl2 wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimssh2" + } ] From 73af620a5e09fa336ad60d9e5b4d61797fda306a Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Thu, 8 Mar 2018 23:40:58 -0600 Subject: [PATCH 0603/1381] Added package nimrax --- packages.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d8529c4..a507efc 100644 --- a/packages.json +++ b/packages.json @@ -8450,7 +8450,7 @@ "method": "git", "tags": [ "library", - "useragent" + "useragent" ], "description": "User Agent parser for nim.", "license": "MIT", @@ -8507,5 +8507,20 @@ "description": "Everything you want to do with colors.", "license": "MIT", "web": "https://github.com/treeform/chroma" - } + }, + { + "name": "nimrax", + "url": "https://github.com/genotrance/nimrax", + "method": "git", + "tags": [ + "rax", + "radix", + "tree", + "data", + "structure" + ], + "description": "Radix tree wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimrax" + } ] From d1b628d9f65ab76bd097f1b897d9f5850410ea23 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Thu, 8 Mar 2018 23:48:03 -0600 Subject: [PATCH 0604/1381] Added package snip --- packages.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d8529c4..c6b3602 100644 --- a/packages.json +++ b/packages.json @@ -8450,7 +8450,7 @@ "method": "git", "tags": [ "library", - "useragent" + "useragent" ], "description": "User Agent parser for nim.", "license": "MIT", @@ -8507,5 +8507,19 @@ "description": "Everything you want to do with colors.", "license": "MIT", "web": "https://github.com/treeform/chroma" - } + }, + { + "name": "snip", + "url": "https://github.com/genotrance/snip", + "method": "git", + "tags": [ + "console", + "editor", + "text", + "cli" + ], + "description": "Text editor to speed up testing code snippets", + "license": "MIT", + "web": "https://github.com/genotrance/snip" + } ] From 327dd100ff47a0174af03ce9c47469b9be435b66 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Fri, 9 Mar 2018 16:05:13 -0600 Subject: [PATCH 0605/1381] Add nimssl --- packages.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cbb3355..2189689 100644 --- a/packages.json +++ b/packages.json @@ -8560,8 +8560,24 @@ "library", "wrapper" ], - "description": "libssl2 wrapper for Nim", + "description": "libssh2 wrapper for Nim", "license": "MIT", "web": "https://github.com/genotrance/nimssh2" + }, + { + "name": "nimssl", + "url": "https://github.com/genotrance/nimssl", + "method": "git", + "tags": [ + "openssl", + "sha", + "sha1", + "hash", + "sha256", + "sha512" + ], + "description": "OpenSSL wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimssl" } ] From 62d03d682dfedd22ced27f3b85cf8dd83c04dfc5 Mon Sep 17 00:00:00 2001 From: Carlo Capocasa Date: Sun, 11 Mar 2018 23:18:29 +0100 Subject: [PATCH 0606/1381] scnim (#674) * scnim * Update packages.json --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 36b9e41..cfbcdc0 100644 --- a/packages.json +++ b/packages.json @@ -8593,5 +8593,23 @@ "description": "Text editor to speed up testing code snippets", "license": "MIT", "web": "https://github.com/genotrance/snip" + }, + { + "name": "scnim", + "url": "https://github.com/capocasa/scnim", + "method": "git", + "tags": [ + "music", + "synthesizer", + "realtime", + "supercollider", + "ugen", + "plugin", + "binding", + "audio" + ], + "description": "Develop SuperCollider UGens in Nim", + "license": "MIT", + "web": "https://github.com/capocasa/scnim" } ] From aa8f4f73807f19fd0d3df7d10ea9f20ef584872c Mon Sep 17 00:00:00 2001 From: momf Date: Wed, 14 Mar 2018 06:07:56 +0900 Subject: [PATCH 0607/1381] Added package mofuw (#675) * Added package mofuw * Update packages.json * Update packages.json * Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index cfbcdc0..0c62543 100644 --- a/packages.json +++ b/packages.json @@ -8594,6 +8594,19 @@ "license": "MIT", "web": "https://github.com/genotrance/snip" }, + { + "name": "mofuw", + "url": "https://github.com/2vg/mofuw", + "method": "git", + "tags": [ + "web", + "http", + "framework" + ], + "description": "mofuw is *MO*re *F*aster, *U*ltra *W*ebserver", + "license": "MIT", + "web": "https://github.com/2vg/mofuw" + }, { "name": "scnim", "url": "https://github.com/capocasa/scnim", From e626f72d9139b5278f727582b0e37368f69c1236 Mon Sep 17 00:00:00 2001 From: Sebastien Diot Date: Tue, 13 Mar 2018 22:09:26 +0100 Subject: [PATCH 0608/1381] Added package moduleinit (#677) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 0c62543..545e523 100644 --- a/packages.json +++ b/packages.json @@ -8594,6 +8594,19 @@ "license": "MIT", "web": "https://github.com/genotrance/snip" }, + { + "name": "moduleinit", + "url": "https://github.com/skunkiferous/moduleinit", + "method": "git", + "tags": [ + "library", + "parallelism", + "threads" + ], + "description": "Nim module/thread initialisation ordering library", + "license": "MIT", + "web": "https://github.com/skunkiferous/moduleinit" + }, { "name": "mofuw", "url": "https://github.com/2vg/mofuw", From aa861958573794d6f28e650ab32a14eed35c6495 Mon Sep 17 00:00:00 2001 From: Leonardo Mariscal Date: Tue, 13 Mar 2018 16:13:10 -0500 Subject: [PATCH 0609/1381] Added package nimgl (#678) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 545e523..fe36ff0 100644 --- a/packages.json +++ b/packages.json @@ -8637,5 +8637,21 @@ "description": "Develop SuperCollider UGens in Nim", "license": "MIT", "web": "https://github.com/capocasa/scnim" + }, + { + "name": "nimgl", + "url": "https://github.com/cavariux/nimgl", + "method": "git", + "tags": [ + "glfw", + "glew", + "math", + "opengl", + "bindings", + "gl" + ], + "description": "Nim Game Library", + "license": "MIT", + "web": "https://github.com/cavariux/nimgl" } ] From cfd17fdb8aabb7f7c66de2ce78e712a621fca27c Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Tue, 13 Mar 2018 23:15:01 +0200 Subject: [PATCH 0610/1381] Register ttmath (#663) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fe36ff0..d191836 100644 --- a/packages.json +++ b/packages.json @@ -8456,6 +8456,20 @@ "license": "MIT", "web": "https://github.com/treeform/useragents" }, + { + "name": "ttmath", + "url": "https://github.com/status-im/nim-ttmath", + "method": "git", + "tags": [ + "library", + "math", + "bigint", + "numbers" + ], + "description": "A wrapper for ttmath", + "license": "Apache2", + "web": "https://github.com/status-im/nim-ttmath" + }, { "name": "nimna", "url": "https://github.com/mjendrusch/nimna", From 1d44d92741e2e03e3647ff471ab892baf9de80aa Mon Sep 17 00:00:00 2001 From: Andrei Regiani Date: Wed, 14 Mar 2018 02:04:14 +0100 Subject: [PATCH 0611/1381] Added INim --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index d191836..3b0b460 100644 --- a/packages.json +++ b/packages.json @@ -8667,5 +8667,18 @@ "description": "Nim Game Library", "license": "MIT", "web": "https://github.com/cavariux/nimgl" + }, + { + "name": "inim", + "url": "https://github.com/AndreiRegiani/INim", + "method": "git", + "tags": [ + "repl", + "playground", + "shell" + ], + "description": "Interactive Nim Shell", + "license": "MIT", + "web": "https://github.com/AndreiRegiani/INim" } ] From ea71540b16103fd5c136049354dcc0f4944a916c Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 14 Mar 2018 13:25:09 +0000 Subject: [PATCH 0612/1381] Remove duplicate ttmath. --- packages.json | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/packages.json b/packages.json index 3b0b460..c077247 100644 --- a/packages.json +++ b/packages.json @@ -8456,20 +8456,6 @@ "license": "MIT", "web": "https://github.com/treeform/useragents" }, - { - "name": "ttmath", - "url": "https://github.com/status-im/nim-ttmath", - "method": "git", - "tags": [ - "library", - "math", - "bigint", - "numbers" - ], - "description": "A wrapper for ttmath", - "license": "Apache2", - "web": "https://github.com/status-im/nim-ttmath" - }, { "name": "nimna", "url": "https://github.com/mjendrusch/nimna", From 95a2c91f8d2bf2001b97bfa96e10f0e298356e8a Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Wed, 14 Mar 2018 15:10:00 -0500 Subject: [PATCH 0613/1381] Added package nimbigwig --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c077247..2534d7a 100644 --- a/packages.json +++ b/packages.json @@ -8666,5 +8666,18 @@ "description": "Interactive Nim Shell", "license": "MIT", "web": "https://github.com/AndreiRegiani/INim" + }, + { + "name": "nimbigwig", + "url": "https://github.com/genotrance/nimbigwig", + "method": "git", + "tags": [ + "bigwig", + "bigbend", + "genome" + ], + "description": "libBigWig wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimbigwig" } ] From a955f0d4ec0c8615d1d193de4e66d923427a5c52 Mon Sep 17 00:00:00 2001 From: nitely Date: Wed, 14 Mar 2018 21:50:31 -0300 Subject: [PATCH 0614/1381] Added package regex --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 2534d7a..b25a0eb 100644 --- a/packages.json +++ b/packages.json @@ -8679,5 +8679,16 @@ "description": "libBigWig wrapper for Nim", "license": "MIT", "web": "https://github.com/genotrance/nimbigwig" + }, + { + "name": "regex", + "url": "https://github.com/nitely/nim-regex", + "method": "git", + "tags": [ + "regex" + ], + "description": "Linear time regex matching", + "license": "MIT", + "web": "https://github.com/nitely/nim-regex" } ] From 78ff3637de5110dfb539e44a8b6a53a1e31c2a30 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Thu, 15 Mar 2018 18:44:07 +0000 Subject: [PATCH 0615/1381] Add tsundoku --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b25a0eb..7be2bd4 100644 --- a/packages.json +++ b/packages.json @@ -8690,5 +8690,18 @@ "description": "Linear time regex matching", "license": "MIT", "web": "https://github.com/nitely/nim-regex" + }, + { + "name": "tsundoku", + "url": "https://github.com/FedericoCeratto/tsundoku", + "method": "git", + "tags": [ + "OPDS", + "ebook", + "server" + ], + "description": "Simple and lightweight OPDS ebook server", + "license": "GPLv3", + "web": "https://github.com/FedericoCeratto/tsundoku" } ] From a77b81d1d06c938ff19526fc0f20465586f4e873 Mon Sep 17 00:00:00 2001 From: 2vg Date: Sat, 17 Mar 2018 13:30:49 +0900 Subject: [PATCH 0616/1381] Added package msqueue --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 7be2bd4..ca52a8d 100644 --- a/packages.json +++ b/packages.json @@ -8703,5 +8703,20 @@ "description": "Simple and lightweight OPDS ebook server", "license": "GPLv3", "web": "https://github.com/FedericoCeratto/tsundoku" + }, + { + "name": "msqueue", + "url": "https://github.com/2vg/MSQueue", + "method": "git", + "tags": [ + "algorithm", + "queue", + "MichaelScott", + "fast", + "concurrent" + ], + "description": "Michael-Scott queue implemented in Nim", + "license": "MIT", + "web": "https://github.com/2vg/MSQueue" } ] From 34b921a382505b84086e8a79b617d260bbc34c6d Mon Sep 17 00:00:00 2001 From: KeepCoolWithCoolidge <37387200+KeepCoolWithCoolidge@users.noreply.github.com> Date: Sat, 17 Mar 2018 18:18:20 -0700 Subject: [PATCH 0617/1381] Added package nimlibxlsxwriter (#684) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ca52a8d..ce091d1 100644 --- a/packages.json +++ b/packages.json @@ -8704,6 +8704,20 @@ "license": "GPLv3", "web": "https://github.com/FedericoCeratto/tsundoku" }, + { + "name": "nimlibxlsxwriter", + "url": "https://github.com/KeepCoolWithCoolidge/nimlibxlsxwriter", + "method": "git", + "tags": [ + "Excel", + "wrapper", + "nim", + "xlsx" + ], + "description": "libxslxwriter wrapper for Nim", + "license": "MIT", + "web": "https://github.com/KeepCoolWithCoolidge/nimlibxlsxwriter" + }, { "name": "msqueue", "url": "https://github.com/2vg/MSQueue", From 802da802b3e953fe8b9f272cfee23868c8779462 Mon Sep 17 00:00:00 2001 From: Andrew Burns Date: Sat, 17 Mar 2018 20:59:55 -0700 Subject: [PATCH 0618/1381] Added package nimclutter --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index ce091d1..6a67a4f 100644 --- a/packages.json +++ b/packages.json @@ -8732,5 +8732,18 @@ "description": "Michael-Scott queue implemented in Nim", "license": "MIT", "web": "https://github.com/2vg/MSQueue" + }, + { + "name": "nimclutter", + "url": "https://github.com/KeepCoolWithCoolidge/nimclutter", + "method": "git", + "tags": [ + "clutter", + "gtk", + "gui" + ], + "description": "Nim bindings for Clutter toolkit.", + "license": "LGPLv2.1", + "web": "https://github.com/KeepCoolWithCoolidge/nimclutter" } ] From 54d1b33f61b785c322eef8be1ba0773e88ee2ac1 Mon Sep 17 00:00:00 2001 From: Vindaar Date: Sun, 18 Mar 2018 16:02:42 +0100 Subject: [PATCH 0619/1381] Added package nimhdf5 --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 6a67a4f..8c4592c 100644 --- a/packages.json +++ b/packages.json @@ -8745,5 +8745,22 @@ "description": "Nim bindings for Clutter toolkit.", "license": "LGPLv2.1", "web": "https://github.com/KeepCoolWithCoolidge/nimclutter" + }, + { + "name": "nimhdf5", + "url": "https://github.com/Vindaar/nimhdf5", + "method": "git", + "tags": [ + "library", + "wrapper", + "binding", + "libhdf5", + "hdf5", + "ndarray", + "storage" + ], + "description": "Bindings for the HDF5 data format C library", + "license": "MIT", + "web": "https://github.com/Vindaar/nimhdf5" } ] From 52d14d7b28651f333fa24dfc56b6b2caf72d1ba3 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Fri, 23 Mar 2018 13:49:37 +0200 Subject: [PATCH 0620/1381] Add Nimcrypto --- packages.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/packages.json b/packages.json index 8c4592c..8e22bf5 100644 --- a/packages.json +++ b/packages.json @@ -4319,6 +4319,27 @@ "license": "MIT", "web": "https://github.com/cheatfate/asynctools" }, + { + "name": "nimcrypto", + "url": "https://github.com/cheatfate/nimcrypto", + "method": "git", + "tags": [ + "crypto", + "hashes", + "ciphers", + "keccak", + "sha3", + "blowfish", + "twofish", + "rijndael", + "csprng", + "hmac", + "ripemd" + ], + "description": "Nim cryptographic library", + "license": "MIT", + "web": "https://github.com/cheatfate/nimcrypto" + }, { "name": "collections", "url": "https://github.com/zielmicha/collections.nim", From 74fc9934f7b82e9e404733db6387401481f65d84 Mon Sep 17 00:00:00 2001 From: narimiran Date: Sat, 24 Mar 2018 19:26:57 +0100 Subject: [PATCH 0621/1381] Added package itertools --- packages.json | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/packages.json b/packages.json index 8e22bf5..9092119 100644 --- a/packages.json +++ b/packages.json @@ -8772,16 +8772,29 @@ "url": "https://github.com/Vindaar/nimhdf5", "method": "git", "tags": [ - "library", - "wrapper", - "binding", - "libhdf5", - "hdf5", - "ndarray", - "storage" + "library", + "wrapper", + "binding", + "libhdf5", + "hdf5", + "ndarray", + "storage" ], "description": "Bindings for the HDF5 data format C library", "license": "MIT", "web": "https://github.com/Vindaar/nimhdf5" + }, + { + "name": "itertools", + "url": "https://github.com/narimiran/itertools", + "method": "git", + "tags": [ + "itertools", + "python", + "iterators" + ], + "description": "Itertools for Nim", + "license": "MIT", + "web": "https://github.com/narimiran/itertools" } ] From f040793de1899d310d3b7a2a9996b8f583066cfe Mon Sep 17 00:00:00 2001 From: Daniil Yarancev <21169548+Yardanico@users.noreply.github.com> Date: Wed, 28 Mar 2018 15:41:45 +0300 Subject: [PATCH 0622/1381] Update mathexpr description --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 9092119..36a01b5 100644 --- a/packages.json +++ b/packages.json @@ -6644,7 +6644,7 @@ "mathparser", "tinyexpr" ], - "description": "MathExpr - wrapper around TinyExpr C library", + "description": "MathExpr - pure-Nim mathematical expression evaluator library", "license": "MIT", "web": "https://github.com/Yardanico/nim-mathexpr" }, From 6400646bc26b230a1a9dfec135079179b651cfa9 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 29 Mar 2018 15:35:15 +0300 Subject: [PATCH 0623/1381] Added typelists package --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 36a01b5..a863b41 100644 --- a/packages.json +++ b/packages.json @@ -8796,5 +8796,16 @@ "description": "Itertools for Nim", "license": "MIT", "web": "https://github.com/narimiran/itertools" + }, + { + "name": "typelists", + "url": "https://github.com/yglukhov/typelists", + "method": "git", + "tags": [ + "metaprogramming" + ], + "description": "Typelists in Nim", + "license": "MIT", + "web": "https://github.com/yglukhov/typelists" } ] From 120b02afd72b9b0f236615b96338bb0838755659 Mon Sep 17 00:00:00 2001 From: davidgarland Date: Thu, 29 Mar 2018 17:37:20 -0500 Subject: [PATCH 0624/1381] Added package sol --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index a863b41..325d0a6 100644 --- a/packages.json +++ b/packages.json @@ -8807,5 +8807,23 @@ "description": "Typelists in Nim", "license": "MIT", "web": "https://github.com/yglukhov/typelists" + }, + { + "name": "sol", + "url": "https://github.com/davidgarland/sol", + "method": "git", + "tags": [ + "c99", + "c11", + "c", + "vector", + "simd", + "avx", + "avx2", + "neon" + ], + "description": "A SIMD-accelerated vector library written in C99 with Nim bindings.", + "license": "MIT", + "web": "https://github.com/davidgarland/sol" } ] From e8715df122c97b34a17e38c1ca89bc2604b7e019 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Fri, 30 Mar 2018 18:11:45 +0200 Subject: [PATCH 0625/1381] Add protobuf and combparser packages --- packages.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/packages.json b/packages.json index 325d0a6..9b6389e 100644 --- a/packages.json +++ b/packages.json @@ -1041,6 +1041,30 @@ "license": "MIT", "web": "https://github.com/PMunch/termstyle" }, + { + "name": "combparser", + "url": "https://github.com/PMunch/combparser", + "method": "git", + "tags": [ + "parser", + "combinator" + ], + "description": "A parser combinator library for easy generation of complex parsers", + "license": "MIT", + "web": "https://github.com/PMunch/combparser" + }, + { + "name": "protobuf-nim", + "url": "https://github.com/PMunch/protobuf-nim", + "method": "git", + "tags": [ + "protobuf", + "serialization" + ], + "description": "Protobuf implementation in pure Nim that leverages the power of the macro system to not depend on any external tools", + "license": "MIT", + "web": "https://github.com/PMunch/protobuf-nim" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 03a2b84efd063e802242cc41e70b0ca22d0c4392 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Fri, 30 Mar 2018 20:33:48 +0200 Subject: [PATCH 0626/1381] Fix package name containing dash --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 9b6389e..282ece1 100644 --- a/packages.json +++ b/packages.json @@ -1054,7 +1054,7 @@ "web": "https://github.com/PMunch/combparser" }, { - "name": "protobuf-nim", + "name": "protobuf", "url": "https://github.com/PMunch/protobuf-nim", "method": "git", "tags": [ From 695d0b50d05968bef8a8fb8079b4ad9d3873c1e1 Mon Sep 17 00:00:00 2001 From: James Osborn Date: Sun, 1 Apr 2018 01:20:22 -0500 Subject: [PATCH 0627/1381] added simdX86 --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 325d0a6..4d71b8b 100644 --- a/packages.json +++ b/packages.json @@ -8825,5 +8825,16 @@ "description": "A SIMD-accelerated vector library written in C99 with Nim bindings.", "license": "MIT", "web": "https://github.com/davidgarland/sol" + }, + { + "name": "simdX86", + "url": "https://github.com/nimlibs/simdX86", + "method": "git", + "tags": [ + "simd" + ], + "description": "Wrappers for X86 SIMD intrinsics", + "license": "MIT", + "web": "https://github.com/nimlibs/simdX86" } ] From 7905fd1469ee2caa2d1c3463f34411765363aeda Mon Sep 17 00:00:00 2001 From: mratsim Date: Mon, 2 Apr 2018 18:12:06 +0200 Subject: [PATCH 0628/1381] Added package loopfusion --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4d71b8b..afaf9a5 100644 --- a/packages.json +++ b/packages.json @@ -8836,5 +8836,20 @@ "description": "Wrappers for X86 SIMD intrinsics", "license": "MIT", "web": "https://github.com/nimlibs/simdX86" + }, + { + "name": "loopfusion", + "url": "https://github.com/numforge/loopfusion", + "method": "git", + "tags": [ + "loop", + "iterator", + "zip", + "forEach", + "variadic" + ], + "description": "Loop efficiently over a variadic number of containers", + "license": "MIT or Apache License 2.0", + "web": "https://github.com/numforge/loopfusion" } ] From 954531205e2e798fc83e6622609e7b08fa478532 Mon Sep 17 00:00:00 2001 From: shinriyo Date: Wed, 4 Apr 2018 21:22:00 +0900 Subject: [PATCH 0629/1381] nim_exodus (#683) nim_exodus added --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index afaf9a5..b0d8cda 100644 --- a/packages.json +++ b/packages.json @@ -8725,6 +8725,19 @@ "license": "GPLv3", "web": "https://github.com/FedericoCeratto/tsundoku" }, + { + "name": "nim_exodus", + "url": "https://github.com/shinriyo/nim_exodus", + "method": "git", + "tags": [ + "web", + "html", + "template" + ], + "description": "Template generator for gester", + "license": "MIT", + "web": "https://github.com/shinriyo/nim_exodus" + }, { "name": "nimlibxlsxwriter", "url": "https://github.com/KeepCoolWithCoolidge/nimlibxlsxwriter", From 70e4953d47a36cd3a8cde5a47991cdfb0207a9ed Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Wed, 4 Apr 2018 14:35:36 -0400 Subject: [PATCH 0630/1381] Added package consul --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index b0d8cda..e079997 100644 --- a/packages.json +++ b/packages.json @@ -8864,5 +8864,16 @@ "description": "Loop efficiently over a variadic number of containers", "license": "MIT or Apache License 2.0", "web": "https://github.com/numforge/loopfusion" + }, + { + "name": "consul", + "url": "https://github.com/makingspace/nim_consul", + "method": "git", + "tags": [ + "consul" + ], + "description": "A simple interface to a running Consul agent.", + "license": "BSD2", + "web": "https://github.com/makingspace/nim_consul" } ] From fedc72fe6ad2f0a36222c87a5ceacd5b0ad4f0b4 Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Wed, 4 Apr 2018 17:33:16 -0400 Subject: [PATCH 0631/1381] Added package cittadino (#699) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e079997..4b22e5f 100644 --- a/packages.json +++ b/packages.json @@ -8865,6 +8865,20 @@ "license": "MIT or Apache License 2.0", "web": "https://github.com/numforge/loopfusion" }, + { + "name": "cittadino", + "url": "https://github.com/makingspace/cittadino", + "method": "git", + "tags": [ + "pubsub", + "stomp", + "rabbitmq", + "amqp" + ], + "description": "A simple PubSub framework using STOMP.", + "license": "BSD2", + "web": "https://github.com/makingspace/cittadino" + }, { "name": "consul", "url": "https://github.com/makingspace/nim_consul", From 22484bd14bf884976d6708c967fd9fa31c59ab0c Mon Sep 17 00:00:00 2001 From: Senketsu Date: Thu, 5 Apr 2018 14:10:27 +0200 Subject: [PATCH 0632/1381] added nsu --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4b22e5f..4d15408 100644 --- a/packages.json +++ b/packages.json @@ -2490,6 +2490,20 @@ "license": "MIT", "web": "https://github.com/Senketsu/nshout" }, + { + "name": "nsu", + "url": "https://github.com/Senketsu/nsu", + "method": "git", + "tags": [ + "library", + "tool", + "utility", + "screenshot" + ], + "description": "Simple screenshot library & cli tool made in Nim", + "license": "MIT", + "web": "https://github.com/Senketsu/nsu" + }, { "name": "nuuid", "url": "https://github.com/yglukhov/nim-only-uuid", From bc89ac251f1adaaaa822cb20976bf8d11e99b83c Mon Sep 17 00:00:00 2001 From: Double_oxygeN Date: Thu, 5 Apr 2018 21:57:56 +0900 Subject: [PATCH 0633/1381] Added package tinamou (#697) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4b22e5f..ba73f85 100644 --- a/packages.json +++ b/packages.json @@ -8865,6 +8865,18 @@ "license": "MIT or Apache License 2.0", "web": "https://github.com/numforge/loopfusion" }, + { + "name": "tinamou", + "url": "https://github.com/Double-oxygeN/tinamou", + "method": "git", + "tags": [ + "game", + "sdl2" + ], + "description": "Game Library in Nim with SDL2", + "license": "MIT", + "web": "https://github.com/Double-oxygeN/tinamou" + }, { "name": "cittadino", "url": "https://github.com/makingspace/cittadino", From 924789057ec2f2f24114f02b959b0c57c42d0fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Geis?= Date: Mon, 9 Apr 2018 23:53:14 +0200 Subject: [PATCH 0634/1381] Added package keystone --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index ba73f85..f8570d5 100644 --- a/packages.json +++ b/packages.json @@ -8901,5 +8901,21 @@ "description": "A simple interface to a running Consul agent.", "license": "BSD2", "web": "https://github.com/makingspace/nim_consul" + }, + { + "name": "keystone", + "url": "https://github.com/6A/Keystone.nim", + "method": "git", + "tags": [ + "binding", + "keystone", + "asm", + "assembler", + "x86", + "arm" + ], + "description": "Bindings to the Keystone Assembler.", + "license": "MIT", + "web": "https://github.com/6A/Keystone.nim" } ] From ad41def00017579eddd89960c5300757324f1d12 Mon Sep 17 00:00:00 2001 From: Udiknedormin Date: Sun, 15 Apr 2018 19:21:09 +0200 Subject: [PATCH 0635/1381] add NimUnits --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index f8570d5..fddf1f2 100644 --- a/packages.json +++ b/packages.json @@ -8917,5 +8917,22 @@ "description": "Bindings to the Keystone Assembler.", "license": "MIT", "web": "https://github.com/6A/Keystone.nim" + }, + { + "name": "units", + "url": "https://github.com/Udiknedormin/NimUnits", + "method": "git", + "tags": [ + "library", + "pure", + "units", + "physics", + "science", + "documentation", + "safety" + ], + "description": " Statically-typed quantity units.", + "license": "MIT", + "web": "https://github.com/Udiknedormin/NimUnits" } ] From fe79eee063aea52b210aacf73ada2f63ccda12f0 Mon Sep 17 00:00:00 2001 From: notTito Date: Mon, 16 Apr 2018 22:58:59 +0300 Subject: [PATCH 0636/1381] Added package morpheus (#703) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 8305b70..b93bceb 100644 --- a/packages.json +++ b/packages.json @@ -8932,6 +8932,18 @@ "license": "MIT", "web": "https://github.com/6A/Keystone.nim" }, + { + "name": "morpheus", + "url": "https://github.com/notTito/morpheus", + "method": "git", + "tags": [ + "matrix", + "linear-algebra" + ], + "description": "Nim Matrix module", + "license": "MIT", + "web": "https://github.com/notTito/morpheus" + }, { "name": "units", "url": "https://github.com/Udiknedormin/NimUnits", From 237c71ff7f23bec136221527816922472433458d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20D=C3=B6ring?= Date: Wed, 18 Apr 2018 12:43:09 +0200 Subject: [PATCH 0637/1381] Added package ast_pattern_matching --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b93bceb..f9fba8e 100644 --- a/packages.json +++ b/packages.json @@ -8960,5 +8960,18 @@ "description": " Statically-typed quantity units.", "license": "MIT", "web": "https://github.com/Udiknedormin/NimUnits" + }, + { + "name": "ast_pattern_matching", + "url": "https://github.com/krux02/ast-pattern-matching", + "method": "git", + "tags": [ + "macros", + "pattern-matching", + "ast" + ], + "description": "a general ast pattern matching library with a focus on correctness and good error messages", + "license": "MIT", + "web": "https://github.com/krux02/ast-pattern-matching" } ] From a7cacbfd2c3321857ea986f191735d6d98081adf Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Fri, 20 Apr 2018 23:07:17 -0500 Subject: [PATCH 0638/1381] Added package tissue --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f9fba8e..c310557 100644 --- a/packages.json +++ b/packages.json @@ -8973,5 +8973,20 @@ "description": "a general ast pattern matching library with a focus on correctness and good error messages", "license": "MIT", "web": "https://github.com/krux02/ast-pattern-matching" + }, + { + "name": "tissue", + "url": "https://github.com/genotrance/tissue", + "method": "git", + "tags": [ + "github", + "issue", + "debug", + "test", + "testament" + ], + "description": "Test failing snippets from Nim's issues", + "license": "MIT", + "web": "https://github.com/genotrance/tissue" } ] From a708a476e72309a9906e06b4840c41ad8dec930e Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Tue, 24 Apr 2018 13:10:45 +0200 Subject: [PATCH 0639/1381] Added package sphincs --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c310557..16479a1 100644 --- a/packages.json +++ b/packages.json @@ -8988,5 +8988,18 @@ "description": "Test failing snippets from Nim's issues", "license": "MIT", "web": "https://github.com/genotrance/tissue" + }, + { + "name": "sphincs", + "url": "https://github.com/ehmry/nim-sphincs", + "method": "git", + "tags": [ + "crypto", + "pqcrypto", + "signing" + ], + "description": "SPHINCS⁺ stateless hash-based signature scheme", + "license": "MIT", + "web": "https://github.com/ehmry/nim-sphincs" } ] From 62f6a00ef291ce679ee57736529e13076d8e0116 Mon Sep 17 00:00:00 2001 From: Oskari Timperi Date: Tue, 24 Apr 2018 18:03:40 +0300 Subject: [PATCH 0640/1381] Add nimpb and nimpb_protoc --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index c310557..e5dea6b 100644 --- a/packages.json +++ b/packages.json @@ -8988,5 +8988,32 @@ "description": "Test failing snippets from Nim's issues", "license": "MIT", "web": "https://github.com/genotrance/tissue" + }, + { + "name": "nimpb", + "url": "https://github.com/oswjk/nimpb", + "method": "git", + "tags": [ + "serialization", + "protocol-buffers", + "protobuf", + "library" + ], + "description": "A Protocol Buffers library for Nim", + "license": "MIT", + "web": "https://github.com/oswjk/nimpb" + }, + { + "name": "nimpb_protoc", + "url": "https://github.com/oswjk/nimpb_protoc", + "method": "git", + "tags": [ + "serialization", + "protocol-buffers", + "protobuf", + ], + "description": "Protocol Buffers compiler support package for nimpb", + "license": "MIT", + "web": "https://github.com/oswjk/nimpb_protoc" } ] From 4c7122365d1816ab1ffc5d88bae8fcccb327beab Mon Sep 17 00:00:00 2001 From: Oskari Timperi Date: Tue, 24 Apr 2018 18:14:06 +0300 Subject: [PATCH 0641/1381] Remove an erroneous comma --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index e5dea6b..b962313 100644 --- a/packages.json +++ b/packages.json @@ -9010,7 +9010,7 @@ "tags": [ "serialization", "protocol-buffers", - "protobuf", + "protobuf" ], "description": "Protocol Buffers compiler support package for nimpb", "license": "MIT", From e35d6cbd3c0f6fe060561fdd17eb811d839fef86 Mon Sep 17 00:00:00 2001 From: nitely Date: Wed, 25 Apr 2018 19:10:27 -0300 Subject: [PATCH 0642/1381] Added package strunicode --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7c3a187..219814b 100644 --- a/packages.json +++ b/packages.json @@ -9052,5 +9052,18 @@ "description": "Protocol Buffers compiler support package for nimpb", "license": "MIT", "web": "https://github.com/oswjk/nimpb_protoc" + }, + { + "name": "strunicode", + "url": "https://github.com/nitely/nim-strunicode", + "method": "git", + "tags": [ + "string", + "unicode", + "grapheme" + ], + "description": "Swift-like unicode string handling", + "license": "MIT", + "web": "https://github.com/nitely/nim-strunicode" } ] From b0e721a7bb50eeee398705625e5c00e877f5910b Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Thu, 26 Apr 2018 15:12:20 -0500 Subject: [PATCH 0643/1381] Added turn_based_game to list of packages. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 219814b..b8dd043 100644 --- a/packages.json +++ b/packages.json @@ -9065,5 +9065,18 @@ "description": "Swift-like unicode string handling", "license": "MIT", "web": "https://github.com/nitely/nim-strunicode" + }, + { + "name": "turn_based_game", + "url": "https://github.com/JohnAD/turn_based_game", + "method": "git", + "tags": [ + "rules-engine", + "game", + "turn-based" + ], + "description": "Game rules engine for simulating or playing turn-based games", + "license": "MIT", + "web": "https://github.com/JohnAD/turn_based_game/wiki" } ] From 3b0fb2788349164a64af475e307a4188d268bc1b Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 3 May 2018 07:12:40 -0300 Subject: [PATCH 0644/1381] Added package translation (#712) * Added package translation * Update packages.json --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index b8dd043..762e765 100644 --- a/packages.json +++ b/packages.json @@ -9078,5 +9078,20 @@ "description": "Game rules engine for simulating or playing turn-based games", "license": "MIT", "web": "https://github.com/JohnAD/turn_based_game/wiki" + }, + { + "name": "translation", + "url": "https://github.com/juancarlospaco/nim-tinyslation", + "method": "git", + "tags": [ + "translation", + "tinyslation", + "api", + "strings", + "minimalism" + ], + "description": "Text string translation from free online crowdsourced API. Tinyslation a tiny translation.", + "license": "LGPLv3", + "web": "https://github.com/juancarlospaco/nim-tinyslation" } ] From eae9405b9c5e03cfad27b0f5da277a7949c7dc12 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Fri, 4 May 2018 00:40:08 -0300 Subject: [PATCH 0645/1381] Added package random_font_color --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 762e765..42874f3 100644 --- a/packages.json +++ b/packages.json @@ -9093,5 +9093,20 @@ "description": "Text string translation from free online crowdsourced API. Tinyslation a tiny translation.", "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-tinyslation" + }, + { + "name": "random_font_color", + "url": "https://github.com/juancarlospaco/nim-random-font-color", + "method": "git", + "tags": [ + "fonts", + "colors", + "pastel", + "design", + "random" + ], + "description": "Random curated Fonts and pastel Colors for your UI/UX design, design for non-designers.", + "license": "LGPLv3", + "web": "https://github.com/juancarlospaco/nim-random-font-color" } ] From 6491b4ab1484245e47810562fc3e0fd2c912f36d Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Fri, 4 May 2018 19:02:18 +0200 Subject: [PATCH 0646/1381] Added package configparser (#714) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 42874f3..bb3f1d8 100644 --- a/packages.json +++ b/packages.json @@ -9094,6 +9094,19 @@ "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-tinyslation" }, + { + "name": "configparser", + "url": "https://github.com/xmonader/nim-configparser", + "method": "git", + "tags": [ + "configparser", + "ini", + "parser" + ], + "description": "pure Ini configurations parser", + "license": "MIT", + "web": "https://github.com/xmonader/nim-configparser" + }, { "name": "random_font_color", "url": "https://github.com/juancarlospaco/nim-random-font-color", From 979156c9211795c406cf4e6a6de82f0da81cc066 Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Fri, 4 May 2018 19:04:15 +0200 Subject: [PATCH 0647/1381] Added package magic (#719) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index bb3f1d8..6abb1c6 100644 --- a/packages.json +++ b/packages.json @@ -9094,6 +9094,19 @@ "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-tinyslation" }, + { + "name": "magic", + "url": "https://github.com/xmonader/nim-magic", + "method": "git", + "tags": [ + "libmagic", + "magic", + "guessfile" + ], + "description": "libmagic for nim", + "license": "MIT", + "web": "https://github.com/xmonader/nim-magic" + }, { "name": "configparser", "url": "https://github.com/xmonader/nim-configparser", From 50caf08f32e706db170bb54ef713df5e3159937d Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Fri, 4 May 2018 21:32:01 -0300 Subject: [PATCH 0648/1381] Added package bytes2human --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 6abb1c6..19b38bd 100644 --- a/packages.json +++ b/packages.json @@ -9134,5 +9134,19 @@ "description": "Random curated Fonts and pastel Colors for your UI/UX design, design for non-designers.", "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-random-font-color" + }, + { + "name": "bytes2human", + "url": "https://github.com/juancarlospaco/nim-bytes2human", + "method": "git", + "tags": [ + "bytes", + "human", + "minimalism", + "size" + ], + "description": "Convert bytes to kilobytes, megabytes, gigabytes, etc.", + "license": "LGPLv3", + "web": "https://github.com/juancarlospaco/nim-bytes2human" } ] From aa535d441d689bea663514ddf4f190b06e86bbba Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sun, 6 May 2018 08:04:48 -0300 Subject: [PATCH 0649/1381] Add package crc32 (#724) * Added package crc32 * Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 19b38bd..4628144 100644 --- a/packages.json +++ b/packages.json @@ -9148,5 +9148,18 @@ "description": "Convert bytes to kilobytes, megabytes, gigabytes, etc.", "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-bytes2human" + }, + { + "name": "crc32", + "url": "https://github.com/juancarlospaco/nim-crc32", + "method": "git", + "tags": [ + "crc32", + "checksum", + "minimalism" + ], + "description": "CRC32, 2 proc, copied from RosettaCode.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-crc32" } ] From eefbeeda74ad450c2e0ea741af7d85d3e68c891e Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 6 May 2018 14:39:02 +0100 Subject: [PATCH 0650/1381] Adds httpbeast --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4628144..9fa2a55 100644 --- a/packages.json +++ b/packages.json @@ -9161,5 +9161,20 @@ "description": "CRC32, 2 proc, copied from RosettaCode.", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-crc32" + }, + { + "name": "httpbeast", + "url": "https://github.com/dom96/httpbeast", + "method": "git", + "tags": [ + "http", + "server", + "parallel", + "linux", + "unix" + ], + "description": "A performant and scalable HTTP server.", + "license": "MIT", + "web": "https://github.com/dom96/httpbeast" } ] From 31de56013355762175e364b0ffd63969cb4b0a84 Mon Sep 17 00:00:00 2001 From: Fabio Cevasco Date: Sun, 6 May 2018 21:53:28 +0200 Subject: [PATCH 0651/1381] Added package nimhttpd (#723) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9fa2a55..ead7bf5 100644 --- a/packages.json +++ b/packages.json @@ -9149,6 +9149,20 @@ "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-bytes2human" }, + { + "name": "nimhttpd", + "url": "https://github.com/h3rald/nimhttpd", + "method": "git", + "tags": [ + "web-server", + "static-file-server", + "server", + "http" + ], + "description": "A tiny static file web server.", + "license": "MIT", + "web": "https://github.com/h3rald/nimhttpd" + }, { "name": "crc32", "url": "https://github.com/juancarlospaco/nim-crc32", From acd7ecc3aa643826b596e22f17c1a3a1490c00b8 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 7 May 2018 16:25:06 +0100 Subject: [PATCH 0652/1381] Adds sass --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index ead7bf5..0a08186 100644 --- a/packages.json +++ b/packages.json @@ -9190,5 +9190,21 @@ "description": "A performant and scalable HTTP server.", "license": "MIT", "web": "https://github.com/dom96/httpbeast" + }, + { + "name": "sass", + "url": "https://github.com/dom96/sass", + "method": "git", + "tags": [ + "css", + "compiler", + "wrapper", + "library", + "scss", + "web" + ], + "description": "A wrapper for the libsass library.", + "license": "MIT", + "web": "https://github.com/dom96/sass" } ] From 759be704e1d1fa750914d70b71d41c8f91da0aaf Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Tue, 8 May 2018 01:29:22 -0300 Subject: [PATCH 0653/1381] Added package osutil --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 0a08186..70b6be6 100644 --- a/packages.json +++ b/packages.json @@ -9206,5 +9206,21 @@ "description": "A wrapper for the libsass library.", "license": "MIT", "web": "https://github.com/dom96/sass" + }, + { + "name": "osutil", + "url": "https://github.com/juancarlospaco/nim-osutil", + "method": "git", + "tags": [ + "utils", + "helpers", + "minimalism", + "process", + "mobile", + "battery" + ], + "description": "OS Utils for Nim, simple tiny but useful procs for OS. Turn Display OFF and set Process Name.", + "license": "LGPLv3", + "web": "https://github.com/juancarlospaco/nim-osutil" } ] From c41e6835347eee16b5a7211cb3921dd559231307 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Tue, 8 May 2018 19:56:09 -0300 Subject: [PATCH 0654/1381] Added package datetime2human (#725) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 0a08186..6e8f7b1 100644 --- a/packages.json +++ b/packages.json @@ -9191,6 +9191,22 @@ "license": "MIT", "web": "https://github.com/dom96/httpbeast" }, + { + "name": "datetime2human", + "url": "https://github.com/juancarlospaco/nim-datetime2human", + "method": "git", + "tags": [ + "date", + "time", + "datetime", + "ISO-8601", + "human", + "minimalism" + ], + "description": "Human friendly DateTime string representations, seconds to millenniums.", + "license": "LGPLv3", + "web": "https://github.com/juancarlospaco/nim-datetime2human" + }, { "name": "sass", "url": "https://github.com/dom96/sass", From 61c6149e2314372a83854f9385769bfcd66ebe13 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 9 May 2018 11:05:46 +0300 Subject: [PATCH 0655/1381] rename mpint to stint --- packages.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 48e08f6..d2b50a9 100644 --- a/packages.json +++ b/packages.json @@ -5991,17 +5991,17 @@ "web": "https://github.com/status-im/nimbus" }, { - "name": "mpint", - "url": "https://github.com/status-im/mpint", + "name": "stint", + "url": "https://github.com/status-im/nim-stint", "method": "git", "tags": [ "library", "math", "numbers" ], - "description": "Efficient multiprecision int in Nim", + "description": "Stack-based arbitrary-precision integers - Fast and portable with natural syntax for resource-restricted devices.", "license": "Apache License 2.0", - "web": "https://github.com/status-im/mpint" + "web": "https://github.com/status-im/nim-stint" }, { "name": "stb_image", From fae918ce76b324029533cbecd46791ff85e0661e Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 9 May 2018 11:11:07 +0300 Subject: [PATCH 0656/1381] Add nim-daemon and nim-chronicles --- packages.json | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d2b50a9..54ea8ff 100644 --- a/packages.json +++ b/packages.json @@ -5999,10 +5999,34 @@ "math", "numbers" ], - "description": "Stack-based arbitrary-precision integers - Fast and portable with natural syntax for resource-restricted devices.", + "description": "Stack-based arbitrary-precision integers - Fast and portable with natural syntax for resource-restricted devices", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-stint" }, + { + "name": "daemon", + "url": "https://github.com/status-im/nim-daemon", + "method": "git", + "tags": [ + "servers", + "daemonization" + ], + "description": "Cross-platform process daemonization library", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-daemon" + }, + { + "name": "chronicles", + "url": "https://github.com/status-im/nim-chronicles", + "method": "git", + "tags": [ + "logging", + "json" + ], + "description": "A crafty implementation of structured logging for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-chronicles" + }, { "name": "stb_image", "url": "https://gitlab.com/define-private-public/stb_image-Nim", From 976608f27dc63d677b544c044feb4f2dfb77f62b Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Thu, 10 May 2018 17:25:15 -0600 Subject: [PATCH 0657/1381] add plotly package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 54ea8ff..d986e96 100644 --- a/packages.json +++ b/packages.json @@ -6278,6 +6278,20 @@ "license": "MIT", "web": "https://github.com/apahl/csvtable" }, + { + "name": "plotly", + "url": "https://github.com/brentp/nim-plotly", + "method": "git", + "tags": [ + "plot", + "graphing", + "chart", + "data" + ], + "description": "Nim interface to plotly", + "license": "MIT", + "web": "https://github.com/brentp/nim-plotly" + }, { "name": "gnuplot", "url": "https://github.com/konqoro/gnuplot.nim", From e66fefdd571b5010e8dc0c83c33fe6736817d058 Mon Sep 17 00:00:00 2001 From: Federico Date: Fri, 11 May 2018 23:38:29 +0200 Subject: [PATCH 0658/1381] Adds binance library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index d986e96..9155fcd 100644 --- a/packages.json +++ b/packages.json @@ -9276,5 +9276,18 @@ "description": "OS Utils for Nim, simple tiny but useful procs for OS. Turn Display OFF and set Process Name.", "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-osutil" + }, + { + "name": "binance", + "url": "https://github.com/Imperator26/binance", + "method": "git", + "tags": [ + "library", + "api", + "binance" + ], + "description": "A Nim library to access the Binance API.", + "license": "Apache License 2.0", + "web": "https://github.com/Imperator26/binance" } ] From ab31c54345e3d26c5b795a6bfa13b75204d5985a Mon Sep 17 00:00:00 2001 From: Diego Guraieb Date: Sat, 12 May 2018 20:46:48 +0400 Subject: [PATCH 0659/1381] jdec module --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9155fcd..d1f3e77 100644 --- a/packages.json +++ b/packages.json @@ -9289,5 +9289,19 @@ "description": "A Nim library to access the Binance API.", "license": "Apache License 2.0", "web": "https://github.com/Imperator26/binance" + }, + { + "name": "jdec", + "tags": [ + "json", + "marshal", + "helper", + "utils" + ], + "method": "git", + "license": "MIT", + "web": "https://github.com/diegogub/jdec", + "url": "https://github.com/diegogub/jdec", + "description": "Flexible JSON manshal/unmarshal library for nim" } ] From b297ddb0bc45cb4571dff06cec282663d7151609 Mon Sep 17 00:00:00 2001 From: Dmitry Atamanov Date: Sun, 13 May 2018 01:42:16 +0300 Subject: [PATCH 0660/1381] Adds nimsnappyc (#734) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d1f3e77..6c34615 100644 --- a/packages.json +++ b/packages.json @@ -9303,5 +9303,19 @@ "web": "https://github.com/diegogub/jdec", "url": "https://github.com/diegogub/jdec", "description": "Flexible JSON manshal/unmarshal library for nim" + }, + { + "name": "nimsnappyc", + "url": "https://github.com/data-man/nimsnappyc", + "method": "git", + "tags": [ + "snappy", + "compression", + "wrapper", + "library" + ], + "description": "Wrapper for the Snappy-C compression library", + "license": "MIT", + "web": "https://github.com/data-man/nimsnappyc" } ] From b89698e11f1e021b20872bf840b9a7d7a67d4d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Sun, 13 May 2018 19:48:37 +0200 Subject: [PATCH 0661/1381] Add package websitecreator (#737) * Add websitecreator - website management tool * Added tag binary --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 6c34615..3687e9a 100644 --- a/packages.json +++ b/packages.json @@ -9317,5 +9317,19 @@ "description": "Wrapper for the Snappy-C compression library", "license": "MIT", "web": "https://github.com/data-man/nimsnappyc" + }, + { + "name": "websitecreator", + "url": "https://github.com/ThomasTJdev/nim_websitecreator", + "method": "git", + "tags": [ + "website", + "webpage", + "blog", + "binary" + ], + "description": "A website management tool. Run the file and access your webpage.", + "license": "GPLv3", + "web": "https://nimwc.org/" } ] From 9157320f5e6647e7be9805e69250d5368fdcfdfb Mon Sep 17 00:00:00 2001 From: Edgar Cabrera Date: Tue, 15 May 2018 12:33:53 -0500 Subject: [PATCH 0662/1381] Added package about --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3687e9a..82998f9 100644 --- a/packages.json +++ b/packages.json @@ -9331,5 +9331,17 @@ "description": "A website management tool. Run the file and access your webpage.", "license": "GPLv3", "web": "https://nimwc.org/" + }, + { + "name": "about", + "url": "https://github.com/aleandros/about", + "method": "git", + "tags": [ + "cli", + "tool" + ], + "description": "Executable for finding information about programs in PATH", + "license": "MIT", + "web": "https://github.com/aleandros/about" } ] From 52843dae98745620a8870d4357de059734d0c88a Mon Sep 17 00:00:00 2001 From: Torro Date: Wed, 16 May 2018 11:44:36 +0200 Subject: [PATCH 0663/1381] Added shaname. (#739) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 82998f9..80f98a4 100644 --- a/packages.json +++ b/packages.json @@ -9332,6 +9332,19 @@ "license": "GPLv3", "web": "https://nimwc.org/" }, + { + "name": "shaname", + "url": "https://github.com/Torro/nimble-packages?subdir=shaname", + "method": "git", + "tags": [ + "sha1", + "commandline", + "utilities" + ], + "description": "Rename files to their sha1sums", + "license": "BSD", + "web": "gttps://github.com/Torro/nimble-packages/tree/master/shaname" + }, { "name": "about", "url": "https://github.com/aleandros/about", From a9ae930297bfbbf0a2f813797404a576120fb135 Mon Sep 17 00:00:00 2001 From: Torro Date: Wed, 16 May 2018 12:02:32 +0200 Subject: [PATCH 0664/1381] Fixed web URL. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 80f98a4..fe4394a 100644 --- a/packages.json +++ b/packages.json @@ -9343,7 +9343,7 @@ ], "description": "Rename files to their sha1sums", "license": "BSD", - "web": "gttps://github.com/Torro/nimble-packages/tree/master/shaname" + "web": "https://github.com/Torro/nimble-packages/tree/master/shaname" }, { "name": "about", From cb07781b45b8edfb07165d338b2c2875dc166298 Mon Sep 17 00:00:00 2001 From: Jack VanDrunen Date: Fri, 18 May 2018 01:15:13 -0700 Subject: [PATCH 0665/1381] Added package findtests --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index fe4394a..716e53d 100644 --- a/packages.json +++ b/packages.json @@ -9356,5 +9356,21 @@ "description": "Executable for finding information about programs in PATH", "license": "MIT", "web": "https://github.com/aleandros/about" + }, + { + "name": "findtests", + "url": "https://github.com/jackvandrunen/findtests", + "method": "git", + "tags": [ + "test", + "tests", + "testing", + "unit test", + "unit tests", + "unit testing" + ], + "description": "A helper module for writing unit tests in Nim with nake or similar build system.", + "license": "ISC", + "web": "https://github.com/jackvandrunen/findtests" } ] From 274331e0f9927df5f5d7e2031540441203f3e0b6 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Fri, 18 May 2018 08:53:17 -0400 Subject: [PATCH 0666/1381] Update parsetoml url See https://github.com/NimParsers/parsetoml/issues/12. --- packages.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index fe4394a..75b9eb3 100644 --- a/packages.json +++ b/packages.json @@ -1993,14 +1993,15 @@ }, { "name": "parsetoml", - "url": "https://github.com/ziotom78/parsetoml.git", + "url": "https://github.com/NimParsers/parsetoml.git", "method": "git", "tags": [ - "library" + "library", + "parse" ], "description": "Library for parsing TOML files.", "license": "MIT", - "web": "https://github.com/ziotom78/parsetoml" + "web": "https://github.com/NimParsers/parsetoml" }, { "name": "compiler", From 0d7012c7e672454e1c4e9722a31398635abb742d Mon Sep 17 00:00:00 2001 From: Jack VanDrunen Date: Sat, 19 May 2018 16:14:38 -0700 Subject: [PATCH 0667/1381] Removed spaces from tags in findtests --- packages.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 28681a1..f44e534 100644 --- a/packages.json +++ b/packages.json @@ -9366,9 +9366,7 @@ "test", "tests", "testing", - "unit test", - "unit tests", - "unit testing" + "unit" ], "description": "A helper module for writing unit tests in Nim with nake or similar build system.", "license": "ISC", From a2c8487c36ce987033a8e757391d9d9e0e4419b7 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Sun, 20 May 2018 12:36:55 +0200 Subject: [PATCH 0668/1381] Add strslice package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 75b9eb3..6749928 100644 --- a/packages.json +++ b/packages.json @@ -1065,6 +1065,19 @@ "license": "MIT", "web": "https://github.com/PMunch/protobuf-nim" }, + { + "name": "strslice", + "url": "https://github.com/PMunch/strslice", + "method": "git", + "tags": [ + "optimization", + "strings", + "library" + ], + "description": "Simple implementation of string slices with some of the strutils ported or wrapped to work on them. String slices offer a performance enhancement when working with large amounts of slices from one base string", + "license": "MIT", + "web": "https://github.com/PMunch/strslice" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From e24597279bc5660b361bec49b2be6c2137edde49 Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Sun, 20 May 2018 17:29:29 -0500 Subject: [PATCH 0669/1381] Add package negamax --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f44e534..249e21b 100644 --- a/packages.json +++ b/packages.json @@ -9118,6 +9118,21 @@ "license": "MIT", "web": "https://github.com/JohnAD/turn_based_game/wiki" }, + { + "name": "negamax", + "url": "https://github.com/JohnAD/negamax", + "method": "git", + "tags": [ + "negamax", + "minimax", + "game", + "ai", + "turn-based" + ], + "description": "Negamax AI search-tree algorithm for two player games", + "license": "MIT", + "web": "https://github.com/JohnAD/negamax" + }, { "name": "translation", "url": "https://github.com/juancarlospaco/nim-tinyslation", From c8596b5996aa1f0f99943e7783d773b8a3cce1a1 Mon Sep 17 00:00:00 2001 From: citycide Date: Sun, 20 May 2018 23:07:39 -0500 Subject: [PATCH 0670/1381] Added package glob --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 249e21b..f22fd79 100644 --- a/packages.json +++ b/packages.json @@ -9386,5 +9386,21 @@ "description": "A helper module for writing unit tests in Nim with nake or similar build system.", "license": "ISC", "web": "https://github.com/jackvandrunen/findtests" + }, + { + "name": "glob", + "url": "https://github.com/citycide/glob", + "method": "git", + "tags": [ + "glob", + "pattern", + "match", + "walk", + "filesystem", + "pure" + ], + "description": "Pure library for matching file paths against Unix style glob patterns.", + "license": "MIT", + "web": "https://github.com/citycide/glob" } ] From 3d40819ad2037a830e9c440cf6a66fb3ea2c2eab Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 21 May 2018 16:33:38 -0700 Subject: [PATCH 0671/1381] Added package unicode_numbers (#748) --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c1661ad..5177e76 100644 --- a/packages.json +++ b/packages.json @@ -9074,7 +9074,7 @@ "pqcrypto", "signing" ], - "description": "SPHINCS⁺ stateless hash-based signature scheme", + "description": "SPHINCS\u207A stateless hash-based signature scheme", "license": "MIT", "web": "https://github.com/ehmry/nim-sphincs" }, @@ -9400,6 +9400,20 @@ "license": "ISC", "web": "https://github.com/jackvandrunen/findtests" }, + { + "name": "unicode_numbers", + "url": "https://github.com/Aearnus/unicode_numbers", + "method": "git", + "tags": [ + "library", + "string", + "format", + "unicode" + ], + "description": "Converts a number into a specially formatted Unicode string", + "license": "MIT", + "web": "https://github.com/Aearnus/unicode_numbers" + }, { "name": "glob", "url": "https://github.com/citycide/glob", From a2df4163ee8d488f072327343a15232d2fc8b009 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Tue, 22 May 2018 01:35:06 +0200 Subject: [PATCH 0672/1381] Added package packedjson (#749) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 5177e76..c353226 100644 --- a/packages.json +++ b/packages.json @@ -9400,6 +9400,17 @@ "license": "ISC", "web": "https://github.com/jackvandrunen/findtests" }, + { + "name": "packedjson", + "url": "https://github.com/Araq/packedjson", + "method": "git", + "tags": [ + "json" + ], + "description": "packedjson is an alternative Nim implementation for JSON. The JSON is essentially kept as a single string in order to save memory over a more traditional tree representation.", + "license": "MIT", + "web": "https://github.com/Araq/packedjson" + }, { "name": "unicode_numbers", "url": "https://github.com/Aearnus/unicode_numbers", From 5affb0bde2de7731c44df6befed72cb33f2de130 Mon Sep 17 00:00:00 2001 From: Andrea Ferretti Date: Wed, 23 May 2018 11:59:46 +0200 Subject: [PATCH 0673/1381] Added LDA (#750) * Added LDA * No spaces in tags --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c353226..93de087 100644 --- a/packages.json +++ b/packages.json @@ -9440,5 +9440,19 @@ "description": "Pure library for matching file paths against Unix style glob patterns.", "license": "MIT", "web": "https://github.com/citycide/glob" + }, + { + "name": "lda", + "url": "https://github.com/unicredit/lda", + "method": "git", + "tags": [ + "LDA", + "topic-modeling", + "text-clustering", + "NLP" + ], + "description": "Latent Dirichlet Allocation", + "license": "Apache License 2.0", + "web": "https://github.com/unicredit/lda" } ] From 2c6600efac444f4c1442a6965e518a148afa6d93 Mon Sep 17 00:00:00 2001 From: Xiao-Yong Jin Date: Wed, 23 May 2018 09:48:12 -0500 Subject: [PATCH 0674/1381] Added package mdevolve --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 93de087..2fabc11 100644 --- a/packages.json +++ b/packages.json @@ -9074,7 +9074,7 @@ "pqcrypto", "signing" ], - "description": "SPHINCS\u207A stateless hash-based signature scheme", + "description": "SPHINCS⁺ stateless hash-based signature scheme", "license": "MIT", "web": "https://github.com/ehmry/nim-sphincs" }, @@ -9454,5 +9454,19 @@ "description": "Latent Dirichlet Allocation", "license": "Apache License 2.0", "web": "https://github.com/unicredit/lda" + }, + { + "name": "mdevolve", + "url": "https://github.com/jxy/MDevolve", + "method": "git", + "tags": [ + "MD", + "integrator", + "numerical", + "evolution" + ], + "description": "Integrator framework for Molecular Dynamic evolutions", + "license": "MIT", + "web": "https://github.com/jxy/MDevolve" } ] From 084643665ae946f1cf3e5cd442b15d1a8f8b2c7f Mon Sep 17 00:00:00 2001 From: Dmitry Atamanov Date: Fri, 25 May 2018 15:15:39 +0300 Subject: [PATCH 0675/1381] Update nimsnappyc url (#752) * I hate git * Update nimsnappyc url --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 2fabc11..3b11e72 100644 --- a/packages.json +++ b/packages.json @@ -9335,7 +9335,7 @@ }, { "name": "nimsnappyc", - "url": "https://github.com/data-man/nimsnappyc", + "url": "https://github.com/NimCompression/nimsnappyc", "method": "git", "tags": [ "snappy", @@ -9345,7 +9345,7 @@ ], "description": "Wrapper for the Snappy-C compression library", "license": "MIT", - "web": "https://github.com/data-man/nimsnappyc" + "web": "https://github.com/NimCompression/nimsnappyc" }, { "name": "websitecreator", From 8e3695a8f7f33ea4208e85dd675e58ab7da96162 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Mon, 28 May 2018 13:17:03 +0300 Subject: [PATCH 0676/1381] Added eth_bloom --- packages.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 3b11e72..4092af1 100644 --- a/packages.json +++ b/packages.json @@ -844,8 +844,8 @@ "url": "https://github.com/boydgreenfield/nimrod-bloom", "method": "git", "tags": [ - "Bloom filter", - "Bloom", + "bloom-filter", + "bloom", "probabilistic", "data structure", "set membership", @@ -5911,6 +5911,20 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-ethash" }, + { + "name": "eth_bloom", + "url": "https://github.com/status-im/nim-eth-bloom", + "method": "git", + "tags": [ + "library", + "ethereum", + "bloom", + "bloom-filter" + ], + "description": "Ethereum bloom filter", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-eth-bloom" + }, { "name": "evmjit", "url": "https://github.com/status-im/nim-evmjit", From 5e6948e44558cc027719b695c78119a2ae25e34f Mon Sep 17 00:00:00 2001 From: Leonardo Cecchi Date: Tue, 29 May 2018 07:27:03 +0200 Subject: [PATCH 0677/1381] Added package db_clickhouse --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4092af1..3aca88e 100644 --- a/packages.json +++ b/packages.json @@ -9482,5 +9482,18 @@ "description": "Integrator framework for Molecular Dynamic evolutions", "license": "MIT", "web": "https://github.com/jxy/MDevolve" + }, + { + "name": "db_clickhouse", + "url": "https://github.com/leonardoce/nim-clickhouse", + "method": "git", + "tags": [ + "wrapper", + "database", + "clickhouse" + ], + "description": "ClickHouse Nim interface", + "license": "MIT", + "web": "https://github.com/leonardoce/nim-clickhouse" } ] From 0a1f5b012fb08c6825ed0b88533979e2f8f919bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Wed, 30 May 2018 14:18:30 +0200 Subject: [PATCH 0678/1381] Add sctp and sodium (#755) --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 3aca88e..a7264f3 100644 --- a/packages.json +++ b/packages.json @@ -9483,6 +9483,32 @@ "license": "MIT", "web": "https://github.com/jxy/MDevolve" }, + { + "name": "sctp", + "url": "https://github.com/metacontainer/sctp.nim", + "method": "git", + "tags": [ + "sctp", + "networking", + "userspace" + ], + "description": "Userspace SCTP bindings", + "license": "BSD", + "web": "https://github.com/metacontainer/sctp.nim" + }, + { + "name": "sodium", + "url": "https://github.com/zielmicha/libsodium.nim", + "method": "git", + "tags": [ + "crypto", + "security", + "sodium" + ], + "description": "High-level libsodium bindings", + "license": "MIT", + "web": "https://github.com/zielmicha/libsodium.nim" + }, { "name": "db_clickhouse", "url": "https://github.com/leonardoce/nim-clickhouse", From c06d4421ce90a41c3d4456cdab11c2cd3cdce53a Mon Sep 17 00:00:00 2001 From: nitely Date: Wed, 30 May 2018 13:20:07 -0300 Subject: [PATCH 0679/1381] Added package hpack --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a7264f3..4c38e05 100644 --- a/packages.json +++ b/packages.json @@ -9521,5 +9521,17 @@ "description": "ClickHouse Nim interface", "license": "MIT", "web": "https://github.com/leonardoce/nim-clickhouse" + }, + { + "name": "hpack", + "url": "https://github.com/nitely/nim-hpack", + "method": "git", + "tags": [ + "http2", + "hpack" + ], + "description": "HPACK (Header Compression for HTTP/2)", + "license": "MIT", + "web": "https://github.com/nitely/nim-hpack" } ] From bb1b43a652591e9bc6ea2d87bb8623fe75b1deee Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Wed, 30 May 2018 16:54:07 -0500 Subject: [PATCH 0680/1381] Added webterminal package webterminal is a very VERY simple HTML5 Javascript library that let's a nim app do simply text in/out in a tty fashion. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4c38e05..c19c68d 100644 --- a/packages.json +++ b/packages.json @@ -9522,6 +9522,19 @@ "license": "MIT", "web": "https://github.com/leonardoce/nim-clickhouse" }, + { + "name": "webterminal", + "url": "https://github.com/JohnAD/webterminal", + "method": "git", + "tags": [ + "javascript", + "terminal", + "tty" + ], + "description": "Very simple browser Javascript TTY web terminal", + "license": "MIT", + "web": "https://github.com/JohnAD/webterminal" + }, { "name": "hpack", "url": "https://github.com/nitely/nim-hpack", From f469650f6dcd512c3ac552e333f432d927f058de Mon Sep 17 00:00:00 2001 From: Jeff Ciesielski Date: Wed, 6 Jun 2018 11:43:23 -0400 Subject: [PATCH 0681/1381] Add COBS package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index c19c68d..f3bf91c 100644 --- a/packages.json +++ b/packages.json @@ -9546,5 +9546,20 @@ "description": "HPACK (Header Compression for HTTP/2)", "license": "MIT", "web": "https://github.com/nitely/nim-hpack" + }, + { + "name": "cobs", + "url": "https://github.com/keyme/nim_cobs", + "method": "git", + "tags": [ + "serialization", + "encoding", + "wireline", + "framing", + "cobs" + ], + "description": "Consistent Overhead Byte Stuffing for Nim", + "license": "MIT", + "web": "https://github.com/keyme/nim_cobs" } ] From d11f30b89ae79ed878acba8a2be5a1f2e8c6d6ed Mon Sep 17 00:00:00 2001 From: Jeff Ciesielski Date: Wed, 6 Jun 2018 15:44:15 -0400 Subject: [PATCH 0682/1381] Add bitvec library --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f3bf91c..fdc0925 100644 --- a/packages.json +++ b/packages.json @@ -9561,5 +9561,18 @@ "description": "Consistent Overhead Byte Stuffing for Nim", "license": "MIT", "web": "https://github.com/keyme/nim_cobs" + }, + { + "name": "bitvec", + "url": "https://github.com/keyme/nim_bitvec", + "method": "git", + "tags": [ + "serialization", + "encoding", + "wireline" + ], + "description": "Extensible bit vector integer encoding library", + "license": "MIT", + "web": "https://github.com/keyme/nim_bitvec" } ] From 1df32fe3b500dcd1c66c75a6b6e3909d48e17006 Mon Sep 17 00:00:00 2001 From: Dmitriy Fomichev Date: Thu, 7 Jun 2018 23:19:45 +0300 Subject: [PATCH 0683/1381] The NESM package has been moved to gitlab Since the documentation can be generated automatically during testing jobs on gitlab, the documentation on github won't be updated anymore. The github repository will be left as a mirror though. --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index fdc0925..f09a3be 100644 --- a/packages.json +++ b/packages.json @@ -6254,7 +6254,7 @@ }, { "name": "nesm", - "url": "https://github.com/xomachine/NESM.git", + "url": "https://gitlab.com/xomachine/NESM.git", "method": "git", "tags": [ "metaprogramming", @@ -6264,7 +6264,7 @@ ], "description": "A macro for generating [de]serializers for given objects", "license": "MIT", - "web": "https://xomachine.github.io/NESM/" + "web": "https://xomachine.gitlab.io/NESM/" }, { "name": "sdnotify", From 3bb6036030a6479b6b01d7d41da04e307ec43f85 Mon Sep 17 00:00:00 2001 From: magick93 Date: Mon, 11 Jun 2018 00:59:47 +1200 Subject: [PATCH 0684/1381] Add package nimsvg (#761) * Added package nimsvg * Added tag --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index f09a3be..a589db8 100644 --- a/packages.json +++ b/packages.json @@ -9574,5 +9574,16 @@ "description": "Extensible bit vector integer encoding library", "license": "MIT", "web": "https://github.com/keyme/nim_bitvec" + }, + { + "name": "nimsvg", + "url": "https://github.com/bluenote10/NimSvg", + "method": "git", + "tags": [ + "svg" + ], + "description": "Nim-based DSL allowing to generate SVG files and GIF animations.", + "license": "MIT", + "web": "https://github.com/bluenote10/NimSvg" } ] From fb5139019dc33bdeefac7908102e485f05126b09 Mon Sep 17 00:00:00 2001 From: captainbland Date: Sun, 10 Jun 2018 22:30:32 +0100 Subject: [PATCH 0685/1381] Add nim-validation package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a589db8..4f298bd 100644 --- a/packages.json +++ b/packages.json @@ -9585,5 +9585,17 @@ "description": "Nim-based DSL allowing to generate SVG files and GIF animations.", "license": "MIT", "web": "https://github.com/bluenote10/NimSvg" + }, + { + "name": "validation", + "url": "https://github.com/captainbland/nim-validation", + "method": "git", + "tags": [ + "validation", + "library" + ], + "description": "Nim object validation using type field pragmas", + "license": "GPLv3", + "web": "https://github.com/captainbland/nim-validation" } ] From c89d45ecb01ff73e2870b58321654c075f0b6eda Mon Sep 17 00:00:00 2001 From: captainbland Date: Sun, 10 Jun 2018 22:31:34 +0100 Subject: [PATCH 0686/1381] Add validation package --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 4f298bd..7f2ffab 100644 --- a/packages.json +++ b/packages.json @@ -9586,7 +9586,7 @@ "license": "MIT", "web": "https://github.com/bluenote10/NimSvg" }, - { + { "name": "validation", "url": "https://github.com/captainbland/nim-validation", "method": "git", From 5c856e72b46a28044ee76a6f0a82182a2913a14a Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 11 Jun 2018 10:17:04 -0700 Subject: [PATCH 0687/1381] Added package nimgraphviz --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index a589db8..ef66733 100644 --- a/packages.json +++ b/packages.json @@ -9585,5 +9585,20 @@ "description": "Nim-based DSL allowing to generate SVG files and GIF animations.", "license": "MIT", "web": "https://github.com/bluenote10/NimSvg" + }, + { + "name": "nimgraphviz", + "url": "https://github.com/QuinnFreedman/nimgraphviz", + "method": "git", + "tags": [ + "graph", + "viz", + "graphviz", + "dot", + "pygraphviz" + ], + "description": "Nim bindings for the GraphViz tool and the DOT graph language", + "license": "MIT", + "web": "https://github.com/QuinnFreedman/nimgraphviz" } ] From 3f8d221e55b25c791aeaea2d887975f12a3b7f10 Mon Sep 17 00:00:00 2001 From: Peter Munch-Ellingsen Date: Wed, 13 Jun 2018 14:29:40 +0200 Subject: [PATCH 0688/1381] Add jsonschema package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ef66733..4c5a47c 100644 --- a/packages.json +++ b/packages.json @@ -1078,6 +1078,20 @@ "license": "MIT", "web": "https://github.com/PMunch/strslice" }, + { + "name": "jsonschema", + "url": "https://github.com/PMunch/jsonschema", + "method": "git", + "tags": [ + "json", + "schema", + "library", + "validation" + ], + "description": "JSON schema validation and creation.", + "license": "MIT", + "web": "https://github.com/PMunch/jsonschema" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 8bbadd3a5cf0aa04bdf184571d3c052e74df8079 Mon Sep 17 00:00:00 2001 From: Anirudh Date: Thu, 14 Jun 2018 13:01:34 +0530 Subject: [PATCH 0689/1381] Add fab package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4c5a47c..dbe88da 100644 --- a/packages.json +++ b/packages.json @@ -9614,5 +9614,20 @@ "description": "Nim bindings for the GraphViz tool and the DOT graph language", "license": "MIT", "web": "https://github.com/QuinnFreedman/nimgraphviz" + }, + { + "name": "fab", + "url": "https://github.com/icyphox/fab", + "method": "git", + "tags": [ + "colors", + "terminal", + "formatting", + "text", + "fun" + ], + "description": "Print fabulously in your terminal", + "license": "MIT", + "web": "https://github.com/icyphox/fab" } ] From b873a66d502e7a7409a4af897b861ea3bb026bd8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 15 Jun 2018 18:21:47 +0100 Subject: [PATCH 0690/1381] Add suggestions around packages quality --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index d2fc9ff..a32bdea 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,12 @@ While we really appreciate your contribution, please follow the requirements: ot * The package should build correctly with the latest Nim release * The package should not contain files without a license or in breach of 3rd parties licensing * Non-mature packages should be flagged as such, especially if they perform security-critical tasks (e.g. encryption) +* Tiny libraries should be avoided where possible +* Avoid having many dependencies. Use "when defined(...)" to enable optional features. * If abandoning a package, please tag it as "abandoned" +* The package name should be unique and specific. Avoid overly generic names e.g. "math", "http" +* Provide a contact email address. +* Optionally try to support older Nim releases (6 months to 1 year) * Optionally GPG-sign your releases * Optionally follow [SemVer](http://semver.org) From 0001bdb4134fe256782d26bef168a0a7779e16e3 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sat, 16 Jun 2018 22:04:43 +0300 Subject: [PATCH 0691/1381] publish more Status packages --- packages.json | 51 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 48 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index dbe88da..da6894e 100644 --- a/packages.json +++ b/packages.json @@ -5995,8 +5995,8 @@ "web": "https://github.com/status-im/nim-secp256k1" }, { - "name": "ethereum_trie", - "url": "https://github.com/status-im/nim-trie", + "name": "eth_trie", + "url": "https://github.com/status-im/nim-eth-trie", "method": "git", "tags": [ "library", @@ -6006,7 +6006,52 @@ ], "description": "Merkle Patricia Tries as specified by Ethereum", "license": "Apache License 2.0", - "web": "https://github.com/status-im/nim-trie" + "web": "https://github.com/status-im/nim-eth-trie" + }, + { + "name": "eth_p2p", + "url": "https://github.com/status-im/nim-eth-p2p", + "method": "git", + "tags": [ + "library", + "ethereum", + "p2p", + "devp2p", + "rplx", + "networking", + "whisper", + "swarm" + ], + "description": "Implementation of the Ethereum suite of P2P protocols", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-eth-p2p" + }, + { + "name": "eth_keyfile", + "url": "https://github.com/status-im/nim-eth-keyfile", + "method": "git", + "tags": [ + "library", + "ethereum", + "keyfile", + "wallet" + ], + "description": "Library for handling Ethereum private keys and wallets", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-eth-keyfile" + }, + { + "name": "byteutils", + "url": "https://github.com/status-im/nim-byteutils", + "method": "git", + "tags": [ + "library", + "blobs", + "hex-dump" + ], + "description": "Useful utilities for manipulating and visualizing byte blobs", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-byteutils" }, { "name": "ttmath", From 602bf911936f132250e81dd5145bae5dae437f49 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 21 Jun 2018 22:24:53 +0100 Subject: [PATCH 0692/1381] Remove deleted morpheus package --- packages.json | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/packages.json b/packages.json index e486a46..dc011a2 100644 --- a/packages.json +++ b/packages.json @@ -9081,18 +9081,6 @@ "license": "MIT", "web": "https://github.com/6A/Keystone.nim" }, - { - "name": "morpheus", - "url": "https://github.com/notTito/morpheus", - "method": "git", - "tags": [ - "matrix", - "linear-algebra" - ], - "description": "Nim Matrix module", - "license": "MIT", - "web": "https://github.com/notTito/morpheus" - }, { "name": "units", "url": "https://github.com/Udiknedormin/NimUnits", From 12281d7c9e5c85ccfdfe25dccd9c693c5f75ef90 Mon Sep 17 00:00:00 2001 From: Vindaar Date: Fri, 22 Jun 2018 23:14:01 +0200 Subject: [PATCH 0693/1381] Add package `mpfit` (#767) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index dc011a2..7827194 100644 --- a/packages.json +++ b/packages.json @@ -8960,6 +8960,24 @@ "license": "MIT", "web": "https://github.com/Vindaar/nimhdf5" }, + { + "name": "mpfit", + "url": "https://github.com/Vindaar/nim-mpfit", + "method": "git", + "tags": [ + "library", + "wrapper", + "binding", + "nonlinear", + "least-squares", + "fitting", + "levenberg-marquardt", + "regression" + ], + "description": "A wrapper for the cMPFIT non-linear least squares fitting library", + "license": "MIT", + "web": "https://github.com/Vindaar/nim-mpfit" + }, { "name": "itertools", "url": "https://github.com/narimiran/itertools", From d772a23dec6e00b15c84b7414904ed8e2674673c Mon Sep 17 00:00:00 2001 From: Joey Date: Sat, 23 Jun 2018 07:20:14 +0900 Subject: [PATCH 0694/1381] Update packages.json with nim-extensions (#768) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7827194..f5856d0 100644 --- a/packages.json +++ b/packages.json @@ -28,6 +28,19 @@ "license": "WTFPL", "web": "https://github.com/watzon/github-api-nim" }, + { + "name": "extensions", + "url": "https://github.com/jyapayne/nim-extensions", + "method": "git", + "tags": [ + "library", + "extensions", + "addons" + ], + "description": "A library that will add useful tools to Nim's arsenal.", + "license": "MIT", + "web": "https://github.com/jyapayne/nim-extensions" + }, { "name": "nimates", "url": "https://github.com/jamesalbert/nimates", From e49507bc679a4bbf7a9c66aa7de0313ab9adc82c Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 23 Jun 2018 12:39:17 +0100 Subject: [PATCH 0695/1381] Change nimbox url to my fork (#771) --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index f5856d0..cbde432 100644 --- a/packages.json +++ b/packages.json @@ -5814,7 +5814,7 @@ }, { "name": "nimbox", - "url": "https://notabug.org/vktec/nimbox.git", + "url": "https://github.com/dom96/nimbox", "method": "git", "tags": [ "library", @@ -5827,7 +5827,7 @@ ], "description": "A Rustbox-inspired termbox wrapper", "license": "MIT", - "web": "https://notabug.org/vktec/nimbox" + "web": "https://github.com/dom96/nimbox" }, { "name": "psutil", From 87a60df837a7a835312182a18d4fb640dccdacd4 Mon Sep 17 00:00:00 2001 From: ephja Date: Sat, 23 Jun 2018 14:03:45 +0200 Subject: [PATCH 0696/1381] rename nim-glfw to glfw (#773) --- packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages.json b/packages.json index cbde432..578d54d 100644 --- a/packages.json +++ b/packages.json @@ -306,6 +306,10 @@ }, { "name": "nim-glfw", + "alias": "glfw" + }, + { + "name": "glfw", "url": "https://github.com/ephja/nim-glfw", "method": "git", "tags": [ From b8c113e80668808e15f8410d21b488a7767935df Mon Sep 17 00:00:00 2001 From: Joey Date: Tue, 26 Jun 2018 00:36:10 +0900 Subject: [PATCH 0697/1381] Update packages.json with libnx (#769) * Update packages.json with libnx * Remove spaces --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 578d54d..729704d 100644 --- a/packages.json +++ b/packages.json @@ -404,6 +404,20 @@ "license": "BSD", "web": "https://github.com/nim-lang/nimble" }, + { + "name": "libnx", + "url": "https://github.com/jyapayne/nim-libnx", + "method": "git", + "tags": [ + "switch", + "nintendo", + "libnx", + "nx" + ], + "description": "A port of libnx to Nim", + "license": "The Unlicense", + "web": "https://github.com/jyapayne/nim-libnx" + }, { "name": "aporia", "url": "https://github.com/nim-lang/Aporia", From 986308d3f3b3ef0c5a146393060e6daa89bef38e Mon Sep 17 00:00:00 2001 From: Joey Date: Wed, 27 Jun 2018 21:12:59 +0900 Subject: [PATCH 0698/1381] Update packages.json with switch build --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 729704d..e48a425 100644 --- a/packages.json +++ b/packages.json @@ -418,6 +418,20 @@ "license": "The Unlicense", "web": "https://github.com/jyapayne/nim-libnx" }, + { + "name": "switch-build", + "url": "https://github.com/jyapayne/switch-build", + "method": "git", + "tags": [ + "switch", + "nintendo", + "build", + "builder" + ], + "description": "An easy way to build homebrew files for the Nintendo Switch", + "license": "MIT", + "web": "https://github.com/jyapayne/switch-build" + }, { "name": "aporia", "url": "https://github.com/nim-lang/Aporia", From fd4df8e83e93ebacd98f397532eefb703595b1ba Mon Sep 17 00:00:00 2001 From: Joey Date: Wed, 27 Jun 2018 22:37:01 +0900 Subject: [PATCH 0699/1381] Remove dash in switch-build -> switch_build --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index e48a425..f246c50 100644 --- a/packages.json +++ b/packages.json @@ -419,7 +419,7 @@ "web": "https://github.com/jyapayne/nim-libnx" }, { - "name": "switch-build", + "name": "switch_build", "url": "https://github.com/jyapayne/switch-build", "method": "git", "tags": [ From e587963a2d41354b230321de06c7008a597df9ab Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 27 Jun 2018 23:02:59 +0100 Subject: [PATCH 0700/1381] Remove fractions package User's account is gone. --- packages.json | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/packages.json b/packages.json index 729704d..fba5179 100644 --- a/packages.json +++ b/packages.json @@ -5778,20 +5778,6 @@ "license": "MIT", "web": "https://github.com/nim-lang/ui" }, - { - "name": "fractions", - "url": "https://github.com/konqoro/fractions", - "method": "git", - "tags": [ - "library", - "rationals", - "arithmetic", - "tuple" - ], - "description": "Implements rational number arithmetic", - "license": "MIT", - "web": "https://github.com/konqoro/fractions" - }, { "name": "mmgeoip", "url": "https://github.com/FedericoCeratto/nim-mmgeoip", From 1bf9a67ebfa1e60d9809f0fb74b31eab91597732 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Thu, 28 Jun 2018 12:58:38 +0100 Subject: [PATCH 0701/1381] Switch gnuplot link back to original --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index fba5179..90e226a 100644 --- a/packages.json +++ b/packages.json @@ -6398,7 +6398,7 @@ }, { "name": "gnuplot", - "url": "https://github.com/konqoro/gnuplot.nim", + "url": "https://github.com/dvolk/gnuplot.nim", "method": "git", "tags": [ "plot", @@ -6407,7 +6407,7 @@ ], "description": "Nim interface to gnuplot", "license": "MIT", - "web": "https://github.com/konqoro/gnuplot.nim" + "web": "https://github.com/dvolk/gnuplot.nim" }, { "name": "ustring", From 890da06ed28623db1efba097cf71abe1785da212 Mon Sep 17 00:00:00 2001 From: Jeff Ciesielski Date: Thu, 28 Jun 2018 09:21:14 -0400 Subject: [PATCH 0702/1381] Add intel hex library (#775) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 90e226a..24f2d42 100644 --- a/packages.json +++ b/packages.json @@ -9709,5 +9709,18 @@ "description": "Print fabulously in your terminal", "license": "MIT", "web": "https://github.com/icyphox/fab" + }, + { + "name": "intel_hex", + "url": "https://github.com/keyme/nim_intel_hex", + "method": "git", + "tags": [ + "utils", + "parsing", + "hex" + ], + "description": "Intel hex file utility library", + "license": "MIT", + "web": "https://github.com/keyme/nim_intel_hex" } ] From 78e45f0d5bbe2e822c28294a8a1711d2a55ce36c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Fri, 29 Jun 2018 13:25:55 +0200 Subject: [PATCH 0703/1381] Added Nim Home Assistant (#774) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 24f2d42..f1383ed 100644 --- a/packages.json +++ b/packages.json @@ -9722,5 +9722,19 @@ "description": "Intel hex file utility library", "license": "MIT", "web": "https://github.com/keyme/nim_intel_hex" + }, + { + "name": "nimha", + "url": "https://github.com/ThomasTJdev/nim_homeassistant", + "method": "git", + "tags": [ + "smarthome", + "automation", + "mqtt", + "xiaomi" + ], + "description": "Nim Home Assistant (NimHA) is a hub for combining multiple home automation devices and automating jobs", + "license": "GPLv3", + "web": "https://github.com/ThomasTJdev/nim_homeassistant" } ] From 99706c2119cb1d783a8a8f66c928830a36e30eda Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Sun, 1 Jul 2018 14:36:55 +0200 Subject: [PATCH 0704/1381] Renamed websitecreator to nimwc --- packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages.json b/packages.json index f1383ed..5444f18 100644 --- a/packages.json +++ b/packages.json @@ -9445,6 +9445,10 @@ }, { "name": "websitecreator", + "alias": "nimwc" + }, + { + "name": "nimwc", "url": "https://github.com/ThomasTJdev/nim_websitecreator", "method": "git", "tags": [ From 525d4a6ab517c852d9d98f524d5420d4e35d2cad Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Mon, 2 Jul 2018 20:58:12 +0200 Subject: [PATCH 0705/1381] add nlopt library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index f1383ed..1dfba26 100644 --- a/packages.json +++ b/packages.json @@ -8995,6 +8995,20 @@ "license": "MIT", "web": "https://github.com/Vindaar/nim-mpfit" }, + { + "name": "nlopt", + "url": "https://github.com/Vindaar/nimnlopt", + "method": "git", + "tags": [ + "library", + "wrapper", + "binding", + "nonlinear-optimization", + ], + "description": "A wrapper for the non-linear optimization C library Nlopt", + "license": "MIT", + "web": "https://github.com/Vindaar/nimnlopt" + }, { "name": "itertools", "url": "https://github.com/narimiran/itertools", From 07b493f06604596bd9dc865b6befabac038f6f8a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 4 Jul 2018 10:45:26 +0100 Subject: [PATCH 0706/1381] Soften scanner and update to Nim v0.18.0 --- .travis.yml | 14 ++++++++------ package_scanner.nim | 3 +-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index d4e2673..4c84749 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,18 +4,20 @@ dist: trusty language: c +cache: + directories: + - "$HOME/.choosenim" + install: + - export CHOOSENIM_CHOOSE_VERSION="0.18.0" - | - wget http://nim-lang.org/download/nim-0.13.0.tar.xz - tar xf nim-0.13.0.tar.xz - cd nim-0.13.0 - sh build.sh - cd .. + curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh + sh init.sh -y +- export PATH=$HOME/.nimble/bin:$PATH before_script: - set -e - set -x - - export PATH=`pwd`/nim-0.13.0/bin:$PATH script: - nim c -d:ssl -r package_scanner.nim && node ./validate_json.js diff --git a/package_scanner.nim b/package_scanner.nim index 828bcc9..0a8a572 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -63,9 +63,8 @@ proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = try: discard getContent(url, timeout=10000) except HttpRequestError, TimeoutError: - echo "E: ", name, ": unable to fetch repository ", url, " ", + echo "W: ", name, ": unable to fetch repo ", url, " ", getCurrentExceptionMsg() - result = false except AssertionError: echo "W: ", name, ": httpclient failed ", url, " ", getCurrentExceptionMsg() From 032d9bb10dc9fa563ff41f984b41b20e6b0b9ed6 Mon Sep 17 00:00:00 2001 From: genotrance Date: Wed, 4 Jul 2018 05:19:27 -0500 Subject: [PATCH 0707/1381] Add recent packages (#772) --- packages.json | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/packages.json b/packages.json index e4e6b3c..87d8b91 100644 --- a/packages.json +++ b/packages.json @@ -9742,6 +9742,65 @@ "license": "MIT", "web": "https://github.com/icyphox/fab" }, + { + "name": "nim7z", + "url": "https://github.com/genotrance/nim7z", + "method": "git", + "tags": [ + "7zip", + "7z", + "extract", + "archive" + ], + "description": "7z extraction for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nim7z" + }, + { + "name": "nimarchive", + "url": "https://github.com/genotrance/nimarchive", + "method": "git", + "tags": [ + "7z", + "zip", + "tar", + "rar", + "gz", + "libarchive", + "compress", + "extract", + "archive" + ], + "description": "libarchive wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimarchive" + }, + { + "name": "nimpcre", + "url": "https://github.com/genotrance/nimpcre", + "method": "git", + "tags": [ + "pcre", + "regex" + ], + "description": "PCRE wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimpcre" + }, + { + "name": "nimdeps", + "url": "https://github.com/genotrance/nimdeps", + "method": "git", + "tags": [ + "dependency", + "bundle", + "installer", + "package" + ], + "description": "Nim library to bundle dependency files into executable", + "license": "MIT", + "web": "https://github.com/genotrance/nimdeps" + }, { "name": "intel_hex", "url": "https://github.com/keyme/nim_intel_hex", From 60f8b6af8b313032e9248a3a3cc9ba4f66f747d8 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Wed, 4 Jul 2018 07:20:21 -0300 Subject: [PATCH 0708/1381] Added package kdialog (#779) --- packages.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/packages.json b/packages.json index 87d8b91..6956618 100644 --- a/packages.json +++ b/packages.json @@ -9727,6 +9727,37 @@ "license": "MIT", "web": "https://github.com/QuinnFreedman/nimgraphviz" }, + { + "name": "fab", + "url": "https://github.com/icyphox/fab", + "method": "git", + "tags": [ + "colors", + "terminal", + "formatting", + "text", + "fun" + ], + "description": "Print fabulously in your terminal", + "license": "MIT", + "web": "https://github.com/icyphox/fab" + }, + { + "name": "kdialog", + "url": "https://github.com/juancarlospaco/nim-kdialog", + "method": "git", + "tags": [ + "kdialog", + "qt5", + "kde", + "gui", + "easy", + "qt" + ], + "description": "KDialog Qt5 Wrapper, easy API, KISS design", + "license": "LGPLv3", + "web": "https://github.com/juancarlospaco/nim-kdialog" + }, { "name": "fab", "url": "https://github.com/icyphox/fab", From a3e5ffda90d58abe71422ab86bd7599d210beabb Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 4 Jul 2018 22:20:54 +0100 Subject: [PATCH 0709/1381] Fixes .travis.yml format. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4c84749..69c3f7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ install: - | curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh sh init.sh -y -- export PATH=$HOME/.nimble/bin:$PATH + - export PATH=$HOME/.nimble/bin:$PATH before_script: - set -e From fa903b1160eb75b92d527d7db496559ed941a0ce Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 4 Jul 2018 22:32:10 +0100 Subject: [PATCH 0710/1381] Remove duplicate fab package. --- packages.json | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/packages.json b/packages.json index 6956618..8864037 100644 --- a/packages.json +++ b/packages.json @@ -9758,21 +9758,6 @@ "license": "LGPLv3", "web": "https://github.com/juancarlospaco/nim-kdialog" }, - { - "name": "fab", - "url": "https://github.com/icyphox/fab", - "method": "git", - "tags": [ - "colors", - "terminal", - "formatting", - "text", - "fun" - ], - "description": "Print fabulously in your terminal", - "license": "MIT", - "web": "https://github.com/icyphox/fab" - }, { "name": "nim7z", "url": "https://github.com/genotrance/nim7z", From 4f180f3a7b93ddaf60b55f4eb2107548001382e6 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 6 Jul 2018 00:06:16 +0100 Subject: [PATCH 0711/1381] Fix JSON format --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 8864037..4fdaee5 100644 --- a/packages.json +++ b/packages.json @@ -9017,7 +9017,7 @@ "library", "wrapper", "binding", - "nonlinear-optimization", + "nonlinear-optimization" ], "description": "A wrapper for the non-linear optimization C library Nlopt", "license": "MIT", From d85d78c0a8ece7e19e94a7b6b5992561ef2031ef Mon Sep 17 00:00:00 2001 From: John Novak Date: Fri, 6 Jul 2018 14:32:38 +1000 Subject: [PATCH 0712/1381] Added package fmod --- packages.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 8864037..c8a24a5 100644 --- a/packages.json +++ b/packages.json @@ -9017,7 +9017,7 @@ "library", "wrapper", "binding", - "nonlinear-optimization", + "nonlinear-optimization" ], "description": "A wrapper for the non-linear optimization C library Nlopt", "license": "MIT", @@ -9843,5 +9843,20 @@ "description": "Nim Home Assistant (NimHA) is a hub for combining multiple home automation devices and automating jobs", "license": "GPLv3", "web": "https://github.com/ThomasTJdev/nim_homeassistant" + }, + { + "name": "fmod", + "url": "https://github.com/johnnovak/nim-fmod", + "method": "git", + "tags": [ + "library", + "fmod", + "audio", + "game", + "sound" + ], + "description": "Nim wrapper for the FMOD Low Level C API", + "license": "MIT", + "web": "https://github.com/johnnovak/nim-fmod" } ] From 722876c6b89d40224c73eeccd148fc9c664d996e Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Sat, 7 Jul 2018 20:57:34 -0500 Subject: [PATCH 0713/1381] Add 'ur' library --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index c8a24a5..e2bd69c 100644 --- a/packages.json +++ b/packages.json @@ -9858,5 +9858,20 @@ "description": "Nim wrapper for the FMOD Low Level C API", "license": "MIT", "web": "https://github.com/johnnovak/nim-fmod" + }, + { + "name": "ur", + "url": "https://github.com/JohnAD/ur", + "method": "git", + "tags": [ + "library", + "universal", + "result", + "return" + ], + "description": "A Universal Result macro/object that normalizes the information returned from a procedure", + "license": "MIT", + "web": "https://github.com/JohnAD/ur", + "doc": "https://github.com/JohnAD/ur/blob/master/docs/ur.rst" } ] From d75de5470391038136631a4d621ce84c9f8846ad Mon Sep 17 00:00:00 2001 From: Leonardo Mariscal <7671915+cavariux@users.noreply.github.com> Date: Sun, 8 Jul 2018 11:21:07 -0500 Subject: [PATCH 0714/1381] Added package figures (#787) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e2bd69c..1c0f0f1 100644 --- a/packages.json +++ b/packages.json @@ -9859,6 +9859,19 @@ "license": "MIT", "web": "https://github.com/johnnovak/nim-fmod" }, + { + "name": "figures", + "url": "https://github.com/cavariux/figures", + "method": "git", + "tags": [ + "unicode", + "cli", + "figures" + ], + "description": "unicode symbols", + "license": "MIT", + "web": "https://github.com/cavariux/figures" + }, { "name": "ur", "url": "https://github.com/JohnAD/ur", From c4f2a21f0368d44df370605d40d64c6244af9aa9 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 8 Jul 2018 21:05:45 +0100 Subject: [PATCH 0715/1381] Add vulnerability management, bump SemVer version --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a32bdea..d889e63 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ While we really appreciate your contribution, please follow the requirements: ot * The package should build correctly with the latest Nim release * The package should not contain files without a license or in breach of 3rd parties licensing * Non-mature packages should be flagged as such, especially if they perform security-critical tasks (e.g. encryption) +* If a vulnerability is found, make a patch release against the latest stable release (or more) that fixes the issue without introducing any other change. * Tiny libraries should be avoided where possible * Avoid having many dependencies. Use "when defined(...)" to enable optional features. * If abandoning a package, please tag it as "abandoned" @@ -44,7 +45,7 @@ While we really appreciate your contribution, please follow the requirements: ot * Provide a contact email address. * Optionally try to support older Nim releases (6 months to 1 year) * Optionally GPG-sign your releases -* Optionally follow [SemVer](http://semver.org) +* Optionally follow [SemVer 2](http://semver.org) Your packages may be removed if the url stops working. It goes without saying that your pull request will not be accepted unless you fill out all of the From 5addc09b9b80e684b2e26364dd09de435aed67be Mon Sep 17 00:00:00 2001 From: Joshua Cearley Date: Tue, 10 Jul 2018 04:30:38 -0500 Subject: [PATCH 0716/1381] added blosc wrapper --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1c0f0f1..183c6eb 100644 --- a/packages.json +++ b/packages.json @@ -9886,5 +9886,18 @@ "license": "MIT", "web": "https://github.com/JohnAD/ur", "doc": "https://github.com/JohnAD/ur/blob/master/docs/ur.rst" + }, + { + "name": "blosc", + "url": "https://github.com/Skrylar/nblosc", + "method": "git", + "tags": [ + "blosc", + "wrapper", + "compression" + ], + "description": "Bit Shuffling Block Compressor (C-Blosc)", + "license": "BSD", + "web": "https://github.com/Skrylar/nblosc" } ] From f8f6d90179164be282b021cfba6e543288328579 Mon Sep 17 00:00:00 2001 From: Alexander Johnson Date: Wed, 11 Jul 2018 12:00:23 -0700 Subject: [PATCH 0717/1381] Added package nim_cexc --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 183c6eb..c7f5189 100644 --- a/packages.json +++ b/packages.json @@ -9899,5 +9899,19 @@ "description": "Bit Shuffling Block Compressor (C-Blosc)", "license": "BSD", "web": "https://github.com/Skrylar/nblosc" + }, + { + "name": "nim_cexc", + "url": "https://github.com/metasyn/nim-cexc-splunk", + "method": "git", + "tags": [ + "splunk", + "command", + "cexc", + "chunked" + ], + "description": "A simple chunked external protocol interface for Splunk custom search commands.", + "license": "Apache2", + "web": "https://github.com/metasyn/nim-cexc-splunk" } ] From bdb155fd68f4079ad3569c1ec368ad5ff05dcbca Mon Sep 17 00:00:00 2001 From: Skrylar Date: Thu, 12 Jul 2018 05:43:30 -0500 Subject: [PATCH 0718/1381] its FLTK time (#792) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c7f5189..cea679c 100644 --- a/packages.json +++ b/packages.json @@ -9900,6 +9900,20 @@ "license": "BSD", "web": "https://github.com/Skrylar/nblosc" }, + { + "name": "fltk", + "url": "https://github.com/Skrylar/nfltk", + "method": "git", + "tags": [ + "gui", + "fltk", + "wrapper", + "c++" + ], + "description": "The Fast-Light Tool Kit", + "license": "LGPL", + "web": "https://github.com/Skrylar/nfltk" + }, { "name": "nim_cexc", "url": "https://github.com/metasyn/nim-cexc-splunk", From 7650020a8838438c7a7f44eaecb4e850c211b03f Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Fri, 13 Jul 2018 00:44:43 -0500 Subject: [PATCH 0719/1381] Added package nimclipboard --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index cea679c..89ca743 100644 --- a/packages.json +++ b/packages.json @@ -9927,5 +9927,21 @@ "description": "A simple chunked external protocol interface for Splunk custom search commands.", "license": "Apache2", "web": "https://github.com/metasyn/nim-cexc-splunk" + }, + { + "name": "nimclipboard", + "url": "https://github.com/genotrance/nimclipboard", + "method": "git", + "tags": [ + "clipboard", + "wrapper", + "clip", + "copy", + "paste", + "nimgen" + ], + "description": "Nim wrapper for libclipboard", + "license": "MIT", + "web": "https://github.com/genotrance/nimclipboard" } ] From 7a609cfad234e76c6d9dec251aa724472cb58eea Mon Sep 17 00:00:00 2001 From: CodeDoes Date: Sat, 14 Jul 2018 05:12:01 +0200 Subject: [PATCH 0720/1381] Added package nimspice --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 89ca743..697b2a6 100644 --- a/packages.json +++ b/packages.json @@ -9943,5 +9943,19 @@ "description": "Nim wrapper for libclipboard", "license": "MIT", "web": "https://github.com/genotrance/nimclipboard" + }, + { + "name": "nimspice", + "url": "https://github.com/CodeDoes/nimspice", + "method": "git", + "tags": [ + "macro", + "template", + "class", + "collection" + ], + "description": "A bunch of macros. sugar if you would", + "license": "MIT", + "web": "https://github.com/CodeDoes/nimspice" } ] From bc2a0ea30a3926d532a677e6eaaa9041e945dd0e Mon Sep 17 00:00:00 2001 From: Luke Parker <25259837+kayabaNerve@users.noreply.github.com> Date: Sat, 14 Jul 2018 08:15:37 -0500 Subject: [PATCH 0721/1381] Add the imath BN package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 697b2a6..9c04787 100644 --- a/packages.json +++ b/packages.json @@ -9957,5 +9957,17 @@ "description": "A bunch of macros. sugar if you would", "license": "MIT", "web": "https://github.com/CodeDoes/nimspice" + }, + { + "name": "BN", + "url": "https://github.com/kayabaNerve/BN", + "method": "git", + "tags": [ + "bignumber", + "multiprecision", + "imath" + ], + "description": "A Nim Wrapper of the imath BigNumber library.", + "license": "MIT" } ] From 0bfa0fbd796df102cd14f119fa4a7face358f5f1 Mon Sep 17 00:00:00 2001 From: Skrylar Date: Sat, 14 Jul 2018 17:14:35 -0500 Subject: [PATCH 0722/1381] more animation packages (#795) * its FLTK time * add skrylar's interpolation --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 9c04787..56c0f8a 100644 --- a/packages.json +++ b/packages.json @@ -9944,6 +9944,18 @@ "license": "MIT", "web": "https://github.com/genotrance/nimclipboard" }, + { + "name": "skinterpolate", + "url": "https://github.com/Skrylar/skInterpolate", + "method": "git", + "tags": [ + "interpolation", + "animation" + ], + "description": "Interpolation routines for data and animation.", + "license": "MIT", + "web": "https://github.com/Skrylar/skInterpolate" + }, { "name": "nimspice", "url": "https://github.com/CodeDoes/nimspice", From f13afbeae4b98ee3629b15df216af66794d23d8e Mon Sep 17 00:00:00 2001 From: Jonathan Badger Date: Mon, 16 Jul 2018 16:05:21 -0400 Subject: [PATCH 0723/1381] Added package nimbioseq --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 56c0f8a..bd43812 100644 --- a/packages.json +++ b/packages.json @@ -9981,5 +9981,18 @@ ], "description": "A Nim Wrapper of the imath BigNumber library.", "license": "MIT" + }, + { + "name": "nimbioseq", + "url": "https://github.com/jhbadger/nimbioseq", + "method": "git", + "tags": [ + "bioinformatics", + "fasta", + "fastq" + ], + "description": "Nim Library for sequence (protein/nucleotide) bioinformatics", + "license": "BSD-3", + "web": "https://github.com/jhbadger/nimbioseq" } ] From 8779ab7becf38f2952ce1cb87c2f2ed874eeab36 Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Tue, 17 Jul 2018 18:08:50 +0300 Subject: [PATCH 0724/1381] Org zero-functional --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index bd43812..ad177af 100644 --- a/packages.json +++ b/packages.json @@ -8086,7 +8086,7 @@ }, { "name": "zero_functional", - "url": "https://github.com/alehander42/zero-functional", + "url": "https://github.com/zero-functional/zero-functional", "method": "git", "tags": [ "functional", @@ -8096,7 +8096,7 @@ ], "description": "A library providing zero-cost chaining for functional abstractions in Nim", "license": "MIT", - "web": "https://github.com/alehander42/zero-functional" + "web": "https://github.com/zero-functional/zero-functional" }, { "name": "ormin", From 160edef0864ce249b0e739e98cc7c42fa6f5e859 Mon Sep 17 00:00:00 2001 From: Zach Smith Date: Tue, 17 Jul 2018 13:16:06 -0400 Subject: [PATCH 0725/1381] Update packages.json Point to a different repo for `syphus`. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ad177af..b8a7b22 100644 --- a/packages.json +++ b/packages.json @@ -7728,7 +7728,7 @@ }, { "name": "syphus", - "url": "https://github.com/makingspace/syphus-nim", + "url": "https://github.com/makingspace/syphus", "method": "git", "tags": [ "optimization", From 29748c49092fcd6e89074cca1ee50412dcaf117f Mon Sep 17 00:00:00 2001 From: Huy Doan Date: Wed, 18 Jul 2018 15:22:27 +0700 Subject: [PATCH 0726/1381] Added package subhook --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index b8a7b22..a9ec1f5 100644 --- a/packages.json +++ b/packages.json @@ -9994,5 +9994,23 @@ "description": "Nim Library for sequence (protein/nucleotide) bioinformatics", "license": "BSD-3", "web": "https://github.com/jhbadger/nimbioseq" + }, + { + "name": "subhook", + "url": "https://github.com/ba0f3/subhook.nim", + "method": "git", + "tags": [ + "hook", + "hooking", + "subhook", + "x86", + "windows", + "linux", + "unix", + "" + ], + "description": "subhook wrapper", + "license": "BSD2", + "web": "https://github.com/ba0f3/subhook.nim" } ] From d175172e3e24590d960d291c04c307d299dbb56f Mon Sep 17 00:00:00 2001 From: root Date: Thu, 19 Jul 2018 00:31:48 +0700 Subject: [PATCH 0727/1381] Added package timecop --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a9ec1f5..558da9a 100644 --- a/packages.json +++ b/packages.json @@ -10012,5 +10012,18 @@ "description": "subhook wrapper", "license": "BSD2", "web": "https://github.com/ba0f3/subhook.nim" + }, + { + "name": "timecop", + "url": "https://github.com/ba0f3/timecop.nim", + "method": "git", + "tags": [ + "time", + "travel", + "timecop" + ], + "description": "Time travelling for Nim", + "license": "MIT", + "web": "https://github.com/ba0f3/timecop.nim" } ] From 9226e8478a8af90620de988130e1f03f067d2314 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 20 Jul 2018 10:34:47 -0300 Subject: [PATCH 0728/1381] Added package openexchangerates --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 558da9a..c4c827d 100644 --- a/packages.json +++ b/packages.json @@ -10025,5 +10025,23 @@ "description": "Time travelling for Nim", "license": "MIT", "web": "https://github.com/ba0f3/timecop.nim" + }, + { + "name": "openexchangerates", + "url": "https://github.com/juancarlospaco/nim-openexchangerates", + "method": "git", + "tags": [ + "money", + "exchange", + "openexchangerates", + "bitcoin", + "gold", + "dollar", + "euro", + "prices" + ], + "description": "OpenExchangeRates API Client for Nim. Works with/without SSL. Partially works with/without Free API Key.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-openexchangerates" } ] From 729b2cb002be0672568a6e1acb43e2e1c64ac795 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Fri, 20 Jul 2018 19:35:39 +0300 Subject: [PATCH 0729/1381] add json_rpc --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 558da9a..e082aee 100644 --- a/packages.json +++ b/packages.json @@ -5915,6 +5915,22 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-ranges" }, + { + "name": "json_rpc", + "url": "https://github.com/status-im/nim-json-rpc", + "method": "git", + "tags": [ + "library", + "json-rpc", + "server", + "client", + "rpc", + "json" + ], + "description": "Nim library for implementing JSON-RPC clients and servers", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-json-rpc" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", From bfd1fdd813c14474993d71bbe1f7e188b176839e Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 23 Jul 2018 14:07:52 +0200 Subject: [PATCH 0730/1381] Added package clr --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 61f7453..cd3052b 100644 --- a/packages.json +++ b/packages.json @@ -10059,5 +10059,20 @@ "description": "OpenExchangeRates API Client for Nim. Works with/without SSL. Partially works with/without Free API Key.", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-openexchangerates" + }, + { + "name": "clr", + "url": "https://github.com/Calinou/clr", + "method": "git", + "tags": [ + "commandline", + "color", + "rgb", + "hsl", + "hsv" + ], + "description": "Get information about colors and convert them in the command line", + "license": "MIT", + "web": "https://github.com/Calinou/clr" } ] From 0c24a412d059b8c559689e8c357462cf8d2af0f7 Mon Sep 17 00:00:00 2001 From: Euan T Date: Wed, 25 Jul 2018 20:37:40 +0100 Subject: [PATCH 0731/1381] Add spdx_licenses package --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index cd3052b..1542854 100644 --- a/packages.json +++ b/packages.json @@ -10074,5 +10074,17 @@ "description": "Get information about colors and convert them in the command line", "license": "MIT", "web": "https://github.com/Calinou/clr" + }, + { + "name": "spdx_licenses", + "url": "https://github.com/euantorano/spdx_licenses.nim", + "method": "git", + "tags": [ + "spdx", + "license" + ], + "description": "A library to retrieve the list of commonly used licenses from the SPDX License List.", + "license": "BSD3", + "web": "https://github.com/euantorano/spdx_licenses.nim" } ] From 5219f74d225911ccb360304dec768004bd88755f Mon Sep 17 00:00:00 2001 From: Guillaume Bareigts Date: Thu, 26 Jul 2018 08:44:35 +0200 Subject: [PATCH 0732/1381] Added package polypbren --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index cd3052b..81871ef 100644 --- a/packages.json +++ b/packages.json @@ -10074,5 +10074,17 @@ "description": "Get information about colors and convert them in the command line", "license": "MIT", "web": "https://github.com/Calinou/clr" + }, + { + "name": "polypbren", + "url": "https://github.com/guibar64/polypbren", + "method": "git", + "tags": [ + "science", + "equation" + ], + "description": "Renormalization of colloidal charges of polydipserse dispersions using the Poisson-Boltzmann equation", + "license": "MIT", + "web": "https://github.com/guibar64/polypbren" } ] From c599dabbda2568aa2bc3ee4412a0411b6dfcf966 Mon Sep 17 00:00:00 2001 From: manguluka Date: Sat, 28 Jul 2018 04:29:08 -0700 Subject: [PATCH 0733/1381] Added package duktape (#807) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index dcccf23..3047994 100644 --- a/packages.json +++ b/packages.json @@ -10075,6 +10075,21 @@ "license": "MIT", "web": "https://github.com/Calinou/clr" }, + { + "name": "duktape", + "url": "https://github.com/manguluka/duktape-nim", + "method": "git", + "tags": [ + "js", + "javascript", + "scripting", + "language", + "interpreter" + ], + "description": "wrapper for the Duktape embeddable Javascript engine", + "license": "MIT", + "web": "https://github.com/manguluka/duktape-nim" + }, { "name": "polypbren", "url": "https://github.com/guibar64/polypbren", From f463ef08e851359cdf69db87131de64b9459788a Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Mon, 30 Jul 2018 22:23:28 +0100 Subject: [PATCH 0734/1381] Adds texttospeech package --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 3047994..562dc4d 100644 --- a/packages.json +++ b/packages.json @@ -10113,5 +10113,20 @@ "description": "A library to retrieve the list of commonly used licenses from the SPDX License List.", "license": "BSD3", "web": "https://github.com/euantorano/spdx_licenses.nim" + }, + { + "name": "texttospeech", + "url": "https://github.com/dom96/texttospeech", + "method": "git", + "tags": [ + "tts", + "text-to-speech", + "google-cloud", + "gcloud", + "api" + ], + "description": "A client for the Google Cloud Text to Speech API.", + "license": "MIT", + "web": "https://github.com/dom96/texttospeech" } ] From 72e4f892b6cbf50385121fb27ffc5890ec7e4ccd Mon Sep 17 00:00:00 2001 From: Luke Parker <25259837+kayabaNerve@users.noreply.github.com> Date: Thu, 2 Aug 2018 21:09:53 -0500 Subject: [PATCH 0735/1381] Update the BN repo's URL. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 562dc4d..413e9d3 100644 --- a/packages.json +++ b/packages.json @@ -9988,7 +9988,7 @@ }, { "name": "BN", - "url": "https://github.com/kayabaNerve/BN", + "url": "https://github.com/EmberCrypto/BN", "method": "git", "tags": [ "bignumber", From 59278450e75c9e3cf35203bb4aa5735e41f7bf57 Mon Sep 17 00:00:00 2001 From: skyvault Date: Sat, 4 Aug 2018 09:19:51 +0000 Subject: [PATCH 0736/1381] Added package nim_tiled --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 413e9d3..41d95e5 100644 --- a/packages.json +++ b/packages.json @@ -10128,5 +10128,19 @@ "description": "A client for the Google Cloud Text to Speech API.", "license": "MIT", "web": "https://github.com/dom96/texttospeech" + }, + { + "name": "nim_tiled", + "url": "https://github.com/SkyVault/nim-tiled", + "method": "git", + "tags": [ + "tiled", + "gamedev", + "tmx", + "indie" + ], + "description": "Tiled map loader for the Nim programming language", + "license": "MIT", + "web": "https://github.com/SkyVault/nim-tiled" } ] From cd369e681ac5f85f3bfd3dbba9daa13d626f3cf0 Mon Sep 17 00:00:00 2001 From: Giovanni Date: Mon, 6 Aug 2018 18:51:42 +0900 Subject: [PATCH 0737/1381] Added package fragments --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 41d95e5..a926fe3 100644 --- a/packages.json +++ b/packages.json @@ -10142,5 +10142,23 @@ "description": "Tiled map loader for the Nim programming language", "license": "MIT", "web": "https://github.com/SkyVault/nim-tiled" + }, + { + "name": "fragments", + "url": "https://github.com/fragcolor-xyz/fragments", + "method": "git", + "tags": [ + "ffi", + "math", + "threading", + "dsl", + "memory", + "serialization", + "cpp", + "utilities" + ], + "description": "Our very personal collection of utilities", + "license": "MIT", + "web": "https://github.com/fragcolor-xyz/fragments" } ] From 62ae4eed2aba364ba86ae3f2f3f7a6ba2681e418 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Mon, 6 Aug 2018 10:07:15 -0300 Subject: [PATCH 0738/1381] Added package nim_telegram_bot --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index a926fe3..4eca2bd 100644 --- a/packages.json +++ b/packages.json @@ -10160,5 +10160,21 @@ "description": "Our very personal collection of utilities", "license": "MIT", "web": "https://github.com/fragcolor-xyz/fragments" + }, + { + "name": "nim_telegram_bot", + "url": "https://github.com/juancarlospaco/nim-telegram-bot", + "method": "git", + "tags": [ + "telegram", + "bot", + "telebot", + "async", + "multipurpose", + "chat" + ], + "description": "Generic Configurable Telegram Bot for Nim, with builtin basic functionality and Plugins", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-telegram-bot" } ] From f924fb7b2c3e366299496dfde90a76b960c009d4 Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Wed, 8 Aug 2018 09:46:20 +0200 Subject: [PATCH 0739/1381] Added xiaomi --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4eca2bd..25a0df6 100644 --- a/packages.json +++ b/packages.json @@ -10176,5 +10176,17 @@ "description": "Generic Configurable Telegram Bot for Nim, with builtin basic functionality and Plugins", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-telegram-bot" + }, + { + "name": "xiaomi", + "url": "https://github.com/ThomasTJdev/nim_xiaomi.git", + "method": "git", + "tags": [ + "xiaomi", + "iot" + ], + "description": "Read and write to Xiaomi IOT devices.", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_xiaomi" } ] From 7577810638d7fbfcb058fd99d6601e175af27cfc Mon Sep 17 00:00:00 2001 From: emekoi Date: Wed, 8 Aug 2018 16:38:04 -0500 Subject: [PATCH 0740/1381] Added package vecio --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 25a0df6..8962beb 100644 --- a/packages.json +++ b/packages.json @@ -10188,5 +10188,23 @@ "description": "Read and write to Xiaomi IOT devices.", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_xiaomi" + }, + { + "name": "vecio", + "url": "https://github.com/emekoi/vecio.nim", + "method": "git", + "tags": [ + "writev", + "readv", + "scatter", + "gather", + "vectored", + "vector", + "io", + "networking" + ], + "description": "vectored io for nim", + "license": "MIT", + "web": "https://github.com/emekoi/vecio.nim" } ] From 63ec3fca558c88e37ac90807f37cc2aedb3c395f Mon Sep 17 00:00:00 2001 From: ReneSac Date: Fri, 10 Aug 2018 20:34:03 -0300 Subject: [PATCH 0741/1381] Added package c_alikes --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 8962beb..312ec23 100644 --- a/packages.json +++ b/packages.json @@ -10206,5 +10206,21 @@ "description": "vectored io for nim", "license": "MIT", "web": "https://github.com/emekoi/vecio.nim" + }, + { + "name": "c_alikes", + "url": "https://github.com/ReneSac/c_alikes", + "method": "git", + "tags": [ + "library", + "bitwise", + "bitops", + "pointers", + "shallowCopy", + "C" + ], + "description": "Operators, commands and functions more c-like, plus a few other utilities", + "license": "MIT", + "web": "https://github.com/ReneSac/c_alikes" } ] From e95c925d95e1de853a802b54c7c3f7ac02b0f224 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 13 Aug 2018 15:43:41 -0300 Subject: [PATCH 0742/1381] Added package espeak --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 312ec23..101cb8a 100644 --- a/packages.json +++ b/packages.json @@ -10222,5 +10222,18 @@ "description": "Operators, commands and functions more c-like, plus a few other utilities", "license": "MIT", "web": "https://github.com/ReneSac/c_alikes" + }, + { + "name": "espeak", + "url": "https://github.com/juancarlospaco/nim-espeak", + "method": "git", + "tags": [ + "espeak", + "voice", + "texttospeech" + ], + "description": "Nim Espeak NG wrapper, for super easy Voice and Text-To-Speech", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-espeak" } ] From 0f3e0573f5b3689eaddfcd26bea34cb8483504d2 Mon Sep 17 00:00:00 2001 From: Tellurium52_teruruN <38907008+mzteruru52@users.noreply.github.com> Date: Tue, 14 Aug 2018 19:09:08 +0900 Subject: [PATCH 0743/1381] Update packages.json (#820) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 101cb8a..64125ef 100644 --- a/packages.json +++ b/packages.json @@ -10207,6 +10207,17 @@ "license": "MIT", "web": "https://github.com/emekoi/vecio.nim" }, + { + "name": "nmiline", + "url": "https://github.com/mzteruru52/NmiLine", + "method": "git", + "tags": [ + "graph" + ], + "description": "Plotting tool using NiGui", + "license": "MIT", + "web": "https://github.com/mzteruru52/NmiLine" + }, { "name": "c_alikes", "url": "https://github.com/ReneSac/c_alikes", From bd1a17e984c91f1b9d4ad828c0377feddd71ba7c Mon Sep 17 00:00:00 2001 From: treeform Date: Tue, 14 Aug 2018 03:10:34 -0700 Subject: [PATCH 0744/1381] update (#826) --- packages.json | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/packages.json b/packages.json index 64125ef..7114807 100644 --- a/packages.json +++ b/packages.json @@ -10246,5 +10246,56 @@ "description": "Nim Espeak NG wrapper, for super easy Voice and Text-To-Speech", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-espeak" + }, + { + "name": "print", + "url": "https://github.com/treeform/print.git", + "method": "git", + "tags": [ + "pretty" + ], + "description": "Print is a set of pretty print macros, useful for print-debugging.", + "license": "MIT", + "web": "https://github.com/treeform/print" + }, + { + "name": "vmath", + "url": "https://github.com/treeform/vmath.git", + "method": "git", + "tags": [ + "math", + "graphics", + "2d", + "3d" + ], + "description": "Collection of math routines for 2d and 3d graphics.", + "license": "MIT", + "web": "https://github.com/treeform/vmath" + }, + { + "name": "flippy", + "url": "https://github.com/treeform/flippy.git", + "method": "git", + "tags": [ + "image", + "graphics", + "2d" + ], + "description": "Flippy is a simple 2d image and drawing library.", + "license": "MIT", + "web": "https://github.com/treeform/flippy" + }, + { + "name": "typography", + "url": "https://github.com/treeform/typography.git", + "method": "git", + "tags": [ + "font", + "text", + "2d" + ], + "description": "Fonts, Typesetting and Rasterization.", + "license": "MIT", + "web": "https://github.com/treeform/typography" } ] From ddc84add2f8d3df4a5d3b8059ba35838226fd460 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Tue, 14 Aug 2018 07:12:09 -0300 Subject: [PATCH 0745/1381] Added package webp (#829) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 7114807..44a8e29 100644 --- a/packages.json +++ b/packages.json @@ -10247,6 +10247,17 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-espeak" }, + { + "name": "webp", + "url": "https://github.com/juancarlospaco/nim-webp", + "method": "git", + "tags": [ + "webp" + ], + "description": "WebP Tools wrapper for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-webp" + }, { "name": "print", "url": "https://github.com/treeform/print.git", From b7368164591ffc35304a856d699dce0d4288821d Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Tue, 14 Aug 2018 17:15:19 +0700 Subject: [PATCH 0746/1381] Added package uibuilder (#828) --- packages.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/packages.json b/packages.json index 44a8e29..ddf9ac3 100644 --- a/packages.json +++ b/packages.json @@ -10247,6 +10247,31 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-espeak" }, + { + "name": "uibuilder", + "url": "https://github.com/ba0f3/uibuilder.nim", + "method": "git", + "tags": [ + "ui", + "builder", + "libui", + "designer", + "gtk", + "gnome", + "glade", + "interface", + "gui", + "linux", + "windows", + "osx", + "mac", + "native", + "generator" + ], + "description": "UI building with Gnome's Glade", + "license": "MIT", + "web": "https://github.com/ba0f3/uibuilder.nim" + }, { "name": "webp", "url": "https://github.com/juancarlospaco/nim-webp", From 94d025c143e4a91575d5f5b9722e181a4cdac81a Mon Sep 17 00:00:00 2001 From: oskca Date: Tue, 14 Aug 2018 18:18:01 +0800 Subject: [PATCH 0747/1381] Added package wstp (#830) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ddf9ac3..7d445d2 100644 --- a/packages.json +++ b/packages.json @@ -10247,6 +10247,20 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-espeak" }, + { + "name": "wstp", + "url": "https://github.com/oskca/nim-wstp", + "method": "git", + "tags": [ + "wolfram", + "mathematica", + "bindings", + "wstp" + ], + "description": "Nim bindings for WSTP", + "license": "MIT", + "web": "https://github.com/oskca/nim-wstp" + }, { "name": "uibuilder", "url": "https://github.com/ba0f3/uibuilder.nim", From 46445c2307818e45f650289eef3bce9c0adb5d32 Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Wed, 15 Aug 2018 18:20:22 +0200 Subject: [PATCH 0748/1381] Added nimblegui --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7d445d2..ee4e8a6 100644 --- a/packages.json +++ b/packages.json @@ -10347,5 +10347,18 @@ "description": "Fonts, Typesetting and Rasterization.", "license": "MIT", "web": "https://github.com/treeform/typography" + }, + { + "name": "nimblegui", + "url": "https://github.com/ThomasTJdev/nim_nimble_gui", + "method": "git", + "tags": [ + "nimble", + "gui", + "packages" + ], + "description": "A simple GUI front for Nimble.", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_nimble_gui" } ] From d5f873a91586af368e64136829a97a964c72ba95 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Wed, 15 Aug 2018 18:14:40 -0300 Subject: [PATCH 0749/1381] Added package xdo (#832) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index ee4e8a6..fcc029e 100644 --- a/packages.json +++ b/packages.json @@ -10348,6 +10348,23 @@ "license": "MIT", "web": "https://github.com/treeform/typography" }, + { + "name": "xdo", + "url": "https://github.com/juancarlospaco/nim-xdo", + "method": "git", + "tags": [ + "automation", + "linux", + "gui", + "keyboard", + "mouse", + "typing", + "clicker" + ], + "description": "Nim GUI Automation Linux, simulate user interaction, mouse and keyboard.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-xdo" + }, { "name": "nimblegui", "url": "https://github.com/ThomasTJdev/nim_nimble_gui", From 76ecde78ce6d86757e71bc8ed16f3a775f1fd698 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 16 Aug 2018 09:12:15 +0700 Subject: [PATCH 0750/1381] Added package xml --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index fcc029e..70c988b 100644 --- a/packages.json +++ b/packages.json @@ -10377,5 +10377,22 @@ "description": "A simple GUI front for Nimble.", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_nimble_gui" + }, + { + "name": "xml", + "url": "https://github.com/ba0f3/xml.nim", + "method": "git", + "tags": [ + "xml", + "parser", + "compile", + "tokenizer", + "nim", + "html", + "cdata" + ], + "description": "Pure Nim XML parser", + "license": "MIT", + "web": "https://github.com/ba0f3/xml.nim" } ] From 3d65accf90d1de6c07aa4901443d0fbc47532bf3 Mon Sep 17 00:00:00 2001 From: ReneSac Date: Fri, 17 Aug 2018 07:14:33 -0300 Subject: [PATCH 0751/1381] Added package memviews (#825) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 70c988b..326d635 100644 --- a/packages.json +++ b/packages.json @@ -10234,6 +10234,22 @@ "license": "MIT", "web": "https://github.com/ReneSac/c_alikes" }, + { + "name": "memviews", + "url": "https://github.com/ReneSac/memviews", + "method": "git", + "tags": [ + "library", + "slice", + "slicing", + "shallow", + "array", + "vector" + ], + "description": "Unsafe in-place slicing", + "license": "MIT", + "web": "https://github.com/ReneSac/memviews" + }, { "name": "espeak", "url": "https://github.com/juancarlospaco/nim-espeak", From 3298232482586bd96719f9ba562aa47b2f95991b Mon Sep 17 00:00:00 2001 From: Ruslan Prokopchuk Date: Sun, 19 Aug 2018 09:04:53 +1000 Subject: [PATCH 0752/1381] Added package soundio --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 326d635..e182596 100644 --- a/packages.json +++ b/packages.json @@ -10410,5 +10410,21 @@ "description": "Pure Nim XML parser", "license": "MIT", "web": "https://github.com/ba0f3/xml.nim" + }, + { + "name": "soundio", + "url": "https://github.com/ul/soundio", + "method": "git", + "tags": [ + "library", + "wrapper", + "binding", + "audio", + "sound", + "media", + "io" + ], + "description": "Bindings for libsoundio", + "license": "MIT" } ] From ec89412a53ab3f85fac1be8e2404219e96614af5 Mon Sep 17 00:00:00 2001 From: treeform Date: Mon, 20 Aug 2018 19:06:13 -0700 Subject: [PATCH 0753/1381] Add Miniz library. --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e182596..f46460f 100644 --- a/packages.json +++ b/packages.json @@ -10426,5 +10426,18 @@ ], "description": "Bindings for libsoundio", "license": "MIT" + }, + { + "name": "miniz", + "url": "https://github.com/treeform/miniz", + "method": "git", + "tags": [ + "zlib", + "zip", + "wrapper", + "compression" + ], + "description": "Bindings for Miniz lib.", + "license": "MIT" } ] From f55cd5422dc1b98ed4fe01ade2210a73ecb6b320 Mon Sep 17 00:00:00 2001 From: muxueqz Date: Wed, 22 Aug 2018 09:15:49 +0000 Subject: [PATCH 0754/1381] Added package nim_cjson --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index f46460f..8b4634d 100644 --- a/packages.json +++ b/packages.json @@ -10439,5 +10439,17 @@ ], "description": "Bindings for Miniz lib.", "license": "MIT" + }, + { + "name": "nim_cjson", + "url": "https://github.com/muxueqz/nim_cjson", + "method": "git", + "tags": [ + "cjson", + "json" + ], + "description": "cjson wrapper for Nim", + "license": "MIT", + "web": "https://github.com/muxueqz/nim_cjson" } ] From 0f619315b019cf3b14a19e4c573bab7957ed063d Mon Sep 17 00:00:00 2001 From: Ryan Cotter Date: Fri, 24 Aug 2018 04:49:05 +0800 Subject: [PATCH 0755/1381] Add package nimobserver (#837) * Added package nimobserver * Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8b4634d..0d45d43 100644 --- a/packages.json +++ b/packages.json @@ -10451,5 +10451,18 @@ "description": "cjson wrapper for Nim", "license": "MIT", "web": "https://github.com/muxueqz/nim_cjson" + }, + { + "name": "nimobserver", + "url": "https://github.com/Tangdongle/nimobserver", + "method": "git", + "tags": [ + "observer", + "patterns", + "library" + ], + "description": "An implementation of the observer pattern", + "license": "MIT", + "web": "https://github.com/Tangdongle/nimobserver" } ] From 3f8935d70d9346079a603a5bba04a9397c37edf1 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sat, 25 Aug 2018 16:39:54 -0300 Subject: [PATCH 0756/1381] Added package overpass (#838) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 0d45d43..fe0baac 100644 --- a/packages.json +++ b/packages.json @@ -10464,5 +10464,19 @@ "description": "An implementation of the observer pattern", "license": "MIT", "web": "https://github.com/Tangdongle/nimobserver" + }, + { + "name": "overpass", + "url": "https://github.com/juancarlospaco/nim-overpass", + "method": "git", + "tags": [ + "openstreetmap", + "overpass", + "multisync", + "async" + ], + "description": "OpenStreetMap Overpass API Lib", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-overpass" } ] From 4dc73a156cdd1c6db95809ff7b7a1ef648697c44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Nihlg=C3=A5rd?= Date: Sun, 26 Aug 2018 17:46:28 +0200 Subject: [PATCH 0757/1381] Update packages.json (#840) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fe0baac..82e2704 100644 --- a/packages.json +++ b/packages.json @@ -10465,6 +10465,19 @@ "license": "MIT", "web": "https://github.com/Tangdongle/nimobserver" }, + { + "name": "systimes", + "url": "https://github.com/GULPF/systimes", + "method": "git", + "tags": [ + "time", + "timezone", + "datetime" + ], + "description": "An alternative DateTime implementation", + "license": "MIT", + "web": "https://github.com/GULPF/systimes" + }, { "name": "overpass", "url": "https://github.com/juancarlospaco/nim-overpass", From ef839d0c4b8464ae80747ae79c34c171f8af194d Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sun, 26 Aug 2018 12:52:54 -0300 Subject: [PATCH 0758/1381] Added package nominatim (#839) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 82e2704..0e8aa93 100644 --- a/packages.json +++ b/packages.json @@ -10465,6 +10465,20 @@ "license": "MIT", "web": "https://github.com/Tangdongle/nimobserver" }, + { + "name": "nominatim", + "url": "https://github.com/juancarlospaco/nim-nominatim", + "method": "git", + "tags": [ + "openstreetmap", + "nominatim", + "multisync", + "async" + ], + "description": "OpenStreetMap Nominatim API Lib for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-nominatim" + }, { "name": "systimes", "url": "https://github.com/GULPF/systimes", From 80bfc1b82d3b2e83dc2bd7082229ed9e85eca1d7 Mon Sep 17 00:00:00 2001 From: Bung <535670947@qq.com> Date: Mon, 27 Aug 2018 01:59:33 +0800 Subject: [PATCH 0759/1381] Add package daemonim (#842) * Added package daemonim * Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 0e8aa93..f18b92e 100644 --- a/packages.json +++ b/packages.json @@ -10505,5 +10505,17 @@ "description": "OpenStreetMap Overpass API Lib", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-overpass" + }, + { + "name": "daemonim", + "url": "https://github.com/bung87/daemon", + "method": "git", + "tags": [ + "unix", + "library" + ], + "description": "daemonizer for Unix, Linux and OS X", + "license": "MIT", + "web": "https://github.com/bung87/daemon" } ] From 894267579a3e6f898b693cbb2a1a40ab91179018 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 27 Aug 2018 14:13:49 +0200 Subject: [PATCH 0760/1381] Remove package monero --- packages.json | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages.json b/packages.json index c310557..85b550d 100644 --- a/packages.json +++ b/packages.json @@ -7467,19 +7467,6 @@ "license": "BSD", "web": "https://github.com/Skrylar/rfc3339" }, - { - "name": "monero", - "url": "https://github.com/ehmry/nim-monero", - "method": "git", - "tags": [ - "monero", - "cryptonote", - "vanity" - ], - "description": "Libraries and utilites related to Monero, a CryptoNote cryptocurrency.", - "license": "MIT", - "web": "https://github.com/ehmry/nim-monero" - }, { "name": "db_presto", "url": "https://github.com/Bennyelg/nimPresto", From a3153c8771bb24bfcf0272c1fc2fc4968334244d Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 27 Aug 2018 10:25:33 -0300 Subject: [PATCH 0761/1381] Added package openstreetmap (#843) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f18b92e..385d2ba 100644 --- a/packages.json +++ b/packages.json @@ -10506,6 +10506,21 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-overpass" }, + { + "name": "openstreetmap", + "url": "https://github.com/juancarlospaco/nim-openstreetmap", + "method": "git", + "tags": [ + "openstreetmap", + "multisync", + "async", + "geo", + "map" + ], + "description": "OpenStreetMap API Lib for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-openstreetmap" + }, { "name": "daemonim", "url": "https://github.com/bung87/daemon", From bc55ce19c1d9accd22742e4e229dd1d3051e226c Mon Sep 17 00:00:00 2001 From: Bung <535670947@qq.com> Date: Tue, 28 Aug 2018 21:28:53 +0800 Subject: [PATCH 0762/1381] Add package finalseg (#845) * Added package finalseg * Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 385d2ba..7de016b 100644 --- a/packages.json +++ b/packages.json @@ -10532,5 +10532,18 @@ "description": "daemonizer for Unix, Linux and OS X", "license": "MIT", "web": "https://github.com/bung87/daemon" + }, + { + "name": "finalseg", + "url": "https://github.com/bung87/finalseg", + "method": "git", + "tags": [ + "library", + "chinese", + "words" + ], + "description": "jieba's finalseg port to nim", + "license": "MIT", + "web": "https://github.com/bung87/finalseg" } ] From ebbaf60c28fc6d7064451aa414e3e12ff36963d8 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 31 Aug 2018 16:36:54 -0300 Subject: [PATCH 0763/1381] Added package openweathermap (#847) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 220dada..600ef84 100644 --- a/packages.json +++ b/packages.json @@ -10520,6 +10520,21 @@ "license": "MIT", "web": "https://github.com/bung87/daemon" }, + { + "name": "openweathermap", + "url": "https://github.com/juancarlospaco/nim-openweathermap", + "method": "git", + "tags": [ + "OpenWeatherMap", + "weather", + "CreativeCommons", + "OpenData", + "multisync" + ], + "description": "OpenWeatherMap API Lib for Nim, Free world wide Creative Commons & Open Data Licensed Weather data", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-openweathermap" + }, { "name": "finalseg", "url": "https://github.com/bung87/finalseg", From 9c8944301f1a76d05d51e3c40f0b5e39de52ac6b Mon Sep 17 00:00:00 2001 From: fragcolor-xyz-bot <42759250+fragcolor-xyz-bot@users.noreply.github.com> Date: Sat, 1 Sep 2018 04:50:33 +0900 Subject: [PATCH 0764/1381] Added package nimtorch (#846) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 600ef84..4c43312 100644 --- a/packages.json +++ b/packages.json @@ -10520,6 +10520,24 @@ "license": "MIT", "web": "https://github.com/bung87/daemon" }, + { + "name": "nimtorch", + "url": "https://github.com/fragcolor-xyz/nimtorch", + "method": "git", + "tags": [ + "machine-learning", + "nn", + "neural", + "networks", + "cuda", + "wasm", + "pytorch", + "torch" + ], + "description": "A nim flavor of pytorch", + "license": "MIT", + "web": "https://github.com/fragcolor-xyz/nimtorch" + }, { "name": "openweathermap", "url": "https://github.com/juancarlospaco/nim-openweathermap", From 02ecacf6fb0d782aa3385d5f41fcdf156565107f Mon Sep 17 00:00:00 2001 From: treeform Date: Fri, 31 Aug 2018 23:38:26 -0700 Subject: [PATCH 0765/1381] Add openAL package. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4c43312..996954a 100644 --- a/packages.json +++ b/packages.json @@ -10565,5 +10565,17 @@ "description": "jieba's finalseg port to nim", "license": "MIT", "web": "https://github.com/bung87/finalseg" + }, + { + "name": "openal", + "url": "https://github.com/treeform/openal", + "method": "git", + "tags": [ + "sound", + "OpenAL", + "wrapper" + ], + "description": "An OpenAL wrapper.", + "license": "MIT" } ] From 21ea79499bf827fbe8d27203aabb01d82aeae37d Mon Sep 17 00:00:00 2001 From: Luke Parker <25259837+kayabaNerve@users.noreply.github.com> Date: Sun, 2 Sep 2018 14:05:38 -0500 Subject: [PATCH 0766/1381] Add ec_events. (#850) * Add events. * Rename events to ec_events. * Remove extra comma. --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 996954a..4b8675a 100644 --- a/packages.json +++ b/packages.json @@ -10577,5 +10577,16 @@ ], "description": "An OpenAL wrapper.", "license": "MIT" + }, + { + "name": "ec_events", + "url": "https://github.com/EmberCrypto/ec_events", + "method": "git", + "tags": [ + "events", + "emitter" + ], + "description": "Event Based Programming for Nim.", + "license": "MIT" } ] From 505cc1fed4c515e96dde032766e791665b198e91 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Thu, 6 Sep 2018 16:53:05 -0600 Subject: [PATCH 0767/1381] add genoiser --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4b8675a..5d5fc05 100644 --- a/packages.json +++ b/packages.json @@ -7767,6 +7767,19 @@ "license": "Apache License 2.0", "web": "https://github.com/edubart/arraymancer-vision" }, + { + "name": "genoiser", + "url": "https://github.com/brentp/genoiser", + "method": "git", + "tags": [ + "bam", + "cram", + "vcf", + "genomics" + ], + "description": "functions to tracks for genomics data files", + "license": "MIT" + }, { "name": "hts", "url": "https://github.com/brentp/hts-nim", From f65b3ee7a8e880f5a61fde168e9811b4d0af7241 Mon Sep 17 00:00:00 2001 From: Ward Date: Sat, 8 Sep 2018 21:58:07 +0800 Subject: [PATCH 0768/1381] Update packages.json (#851) * Update packages.json * Update packages.json --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 5d5fc05..a1f050e 100644 --- a/packages.json +++ b/packages.json @@ -10601,5 +10601,20 @@ ], "description": "Event Based Programming for Nim.", "license": "MIT" + }, + { + "name": "wNim", + "url": "https://github.com/khchen/wNim", + "method": "git", + "tags": [ + "library", + "windows", + "gui", + "ui" + ], + "description": "Nim's Windows GUI Framework.", + "license": "MIT", + "web": "https://github.com/khchen/wNim", + "doc": "https://khchen.github.io/wNim/wNim.html" } ] From 3b40d902f893687d31d07aa681e849591f1b981e Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Mon, 10 Sep 2018 13:35:18 +0200 Subject: [PATCH 0769/1381] Added package redisparser --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index a1f050e..c9a1af4 100644 --- a/packages.json +++ b/packages.json @@ -10616,5 +10616,19 @@ "license": "MIT", "web": "https://github.com/khchen/wNim", "doc": "https://khchen.github.io/wNim/wNim.html" + }, + { + "name": "redisparser", + "url": "https://github.com/xmonader/nim-redisparser", + "method": "git", + "tags": [ + "redis", + "resp", + "parser", + "protocol" + ], + "description": "RESP(REdis Serialization Protocol) Serialization for Nim", + "license": "Apache2", + "web": "https://github.com/xmonader/nim-redisparser" } ] From 2e7a8fb50bee24db38374b9d9726f583ebd2fbef Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Tue, 11 Sep 2018 10:21:45 +0200 Subject: [PATCH 0770/1381] Added package redisclient --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c9a1af4..c716d1e 100644 --- a/packages.json +++ b/packages.json @@ -10630,5 +10630,19 @@ "description": "RESP(REdis Serialization Protocol) Serialization for Nim", "license": "Apache2", "web": "https://github.com/xmonader/nim-redisparser" + }, + { + "name": "redisclient", + "url": "https://github.com/xmonader/nim-redisclient", + "method": "git", + "tags": [ + "redis", + "client", + "protocol", + "resp" + ], + "description": "Redis client for Nim", + "license": "Apache2", + "web": "https://github.com/xmonader/nim-redisclient" } ] From 6752c75d52702b119193a6ead37f7191dcf282f2 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Thu, 13 Sep 2018 15:43:33 -0300 Subject: [PATCH 0771/1381] Added package hackpad --- packages.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages.json b/packages.json index c716d1e..94da0d1 100644 --- a/packages.json +++ b/packages.json @@ -10644,5 +10644,25 @@ "description": "Redis client for Nim", "license": "Apache2", "web": "https://github.com/xmonader/nim-redisclient" + }, + { + "name": "hackpad", + "url": "https://github.com/juancarlospaco/nim-hackpad", + "method": "git", + "tags": [ + "web", + "jester", + "lan", + "wifi", + "hackathon", + "hackatton", + "pastebin", + "crosscompilation", + "teaching", + "zip" + ], + "description": "Hackathon Web Scratchpad for teaching Nim on events using Wifi with limited or no Internet", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-hackpad" } ] From 541a0043672cecc054c8d34220593aa4e6893c4e Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sat, 15 Sep 2018 17:26:10 +0300 Subject: [PATCH 0772/1381] Add asyncdispatch2 and eth_common --- packages.json | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 94da0d1..b670ab9 100644 --- a/packages.json +++ b/packages.json @@ -3630,7 +3630,7 @@ "tags": [ "event", "future", - "asyncdispath" + "asyncdispatch" ], "description": "Asynchronous event loop for progaming with MVC", "license": "MIT", @@ -5931,6 +5931,25 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-json-rpc" }, + { + "name": "asyncdispatch2", + "url": "https://github.com/status-im/nim-asyncdispatch2", + "method": "git", + "tags": [ + "library", + "networking", + "async", + "asynchronous", + "eventloop", + "timers", + "sendfile", + "tcp", + "udp" + ], + "description": "Experimental fork of Nim's asyncdispatch", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-asyncdispatch2" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", @@ -5957,6 +5976,18 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth-keys" }, + { + "name": "eth_common", + "url": "https://github.com/status-im/nim-eth-common", + "method": "git", + "tags": [ + "library", + "ethereum" + ], + "description": "Definitions of various data structures used in the Ethereum eco-system", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-eth-common" + }, { "name": "ethash", "url": "https://github.com/status-im/nim-ethash", From 450cd238b13c19fa8df45e61faf1409f88e48cc5 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sat, 15 Sep 2018 17:34:58 +0300 Subject: [PATCH 0773/1381] add httputils --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b670ab9..aff13e3 100644 --- a/packages.json +++ b/packages.json @@ -6046,6 +6046,19 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-keccak-tiny" }, + { + "name": "httputils", + "url": "https://github.com/status-im/nim-http-utils", + "method": "git", + "tags": [ + "http", + "parsers", + "protocols" + ], + "description": "Common utilities for implementing HTTP servers", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-http-utils" + }, { "name": "rocksdb", "url": "https://github.com/status-im/nim-rocksdb", From 86963834d15c60f6cbec118eb6a9a6c1049c826f Mon Sep 17 00:00:00 2001 From: M4RC3L0 Date: Mon, 17 Sep 2018 19:19:19 +0100 Subject: [PATCH 0774/1381] Added package redux_nim --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index aff13e3..934b5b5 100644 --- a/packages.json +++ b/packages.json @@ -10708,5 +10708,17 @@ "description": "Hackathon Web Scratchpad for teaching Nim on events using Wifi with limited or no Internet", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-hackpad" + }, + { + "name": "redux_nim", + "url": "https://github.com/M4RC3L05/redux-nim", + "method": "git", + "tags": [ + "", + "" + ], + "description": "Redux Implementation in nim", + "license": "MIT", + "web": "https://github.com/M4RC3L05/redux-nim" } ] From 7859be4c807e8e36ea66a144496187ac018b3740 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Tue, 18 Sep 2018 09:47:24 -0300 Subject: [PATCH 0775/1381] Added package calibre --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 934b5b5..1162b27 100644 --- a/packages.json +++ b/packages.json @@ -10720,5 +10720,18 @@ "description": "Redux Implementation in nim", "license": "MIT", "web": "https://github.com/M4RC3L05/redux-nim" + }, + { + "name": "calibre", + "url": "https://github.com/juancarlospaco/nim-calibre", + "method": "git", + "tags": [ + "calibre", + "ebook", + "database" + ], + "description": "Calibre Database Lib for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-calibre" } ] From ac971e0d2c231a21b00f3490976ea91f8baef952 Mon Sep 17 00:00:00 2001 From: Adrian Veith Date: Wed, 19 Sep 2018 17:27:52 +0200 Subject: [PATCH 0776/1381] Added package nimcb --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1162b27..c2b387a 100644 --- a/packages.json +++ b/packages.json @@ -10733,5 +10733,17 @@ "description": "Calibre Database Lib for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-calibre" + }, + { + "name": "nimcb", + "url": "https://github.com/AdrianV/nimcb", + "method": "git", + "tags": [ + "c++-builder", + "msbuild" + ], + "description": "Integrate nim projects in the C++Builder build process", + "license": "MIT", + "web": "https://github.com/AdrianV/nimcb" } ] From 9b5fd257bd6935197367f132096a1691e28568d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Nowak?= Date: Thu, 20 Sep 2018 00:22:46 +0200 Subject: [PATCH 0777/1381] Added package simpledecimal (#860) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1162b27..379dcc9 100644 --- a/packages.json +++ b/packages.json @@ -10721,6 +10721,18 @@ "license": "MIT", "web": "https://github.com/M4RC3L05/redux-nim" }, + { + "name": "simpledecimal", + "url": "https://github.com/pigmej/nim-simple-decimal", + "method": "git", + "tags": [ + "decimal", + "library" + ], + "description": "A simple decimal library", + "license": "MIT", + "web": "https://github.com/pigmej/nim-simple-decimal" + }, { "name": "calibre", "url": "https://github.com/juancarlospaco/nim-calibre", From af7ffda6c5444822b3b8d1ad2fb9cc7fe61f2fca Mon Sep 17 00:00:00 2001 From: Eli Date: Thu, 20 Sep 2018 23:23:14 -0400 Subject: [PATCH 0778/1381] Add finals packges --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index 5a96d1d..1500d82 100644 --- a/packages.json +++ b/packages.json @@ -10757,5 +10757,14 @@ "description": "Integrate nim projects in the C++Builder build process", "license": "MIT", "web": "https://github.com/AdrianV/nimcb" + }, + { + "name": "finals", + "url": "https://github.com/quelklef/nim-finals", + "method": "git", + "tags": ["types"], + "description": "Transparently declare single-set attributes on types.", + "license": "MIT", + "web": "https://github.com/Quelklef/nim-finals" } ] From 203ce2f00e5f414ec51872ea80e7379f9c690414 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sat, 22 Sep 2018 06:40:59 -0300 Subject: [PATCH 0779/1381] Fix psutil (#861) * Fix psutil, point to new maintained fork, original author credits remain, an explanation is also added, if original author ever comes back feel free to revert back. * Sync with Master, Fix URL --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 1500d82..183c9f4 100644 --- a/packages.json +++ b/packages.json @@ -5849,7 +5849,7 @@ }, { "name": "psutil", - "url": "https://github.com/johnscillieri/psutil-nim", + "url": "https://github.com/juancarlospaco/psutil-nim", "method": "git", "tags": [ "psutil", @@ -5859,7 +5859,7 @@ "disk", "cpu" ], - "description": "psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network)", + "description": "psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network). Since 2018 maintained by Juan Carlos because was abandoned.", "license": "BSD", "web": "https://github.com/johnscillieri/psutil-nim" }, From a9b81b6a793da495efa6b4764dff3903e5177405 Mon Sep 17 00:00:00 2001 From: Lee Braiden Date: Sat, 22 Sep 2018 18:10:38 +0100 Subject: [PATCH 0780/1381] Add nimrun package --- packages.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/packages.json b/packages.json index 183c9f4..4e2e5cd 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,26 @@ [ + { + "name": "nimrun", + "url": "https://github.com/lee-b/nimrun", + "method": "git", + "tags": [ + "shebang", + "unix", + "linux", + "bsd", + "mac", + "shell", + "script", + "nimble", + "nimcr", + "compile", + "run", + "standalone" + ], + "description": "Shebang frontend for running nim code as scripts. Does not require .nim extensions.", + "license": "MIT", + "web": "https://github.com/lee-b/nimrun" + }, { "name": "sequtils2", "url": "https://github.com/Michedev/sequtils2", From be9160b4a593bcb8ed06a57deb16935178f0b37f Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Sun, 23 Sep 2018 08:57:49 -0300 Subject: [PATCH 0781/1381] Added package tinyfiledialogs --- packages.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 183c9f4..51bb0db 100644 --- a/packages.json +++ b/packages.json @@ -10762,9 +10762,29 @@ "name": "finals", "url": "https://github.com/quelklef/nim-finals", "method": "git", - "tags": ["types"], + "tags": [ + "types" + ], "description": "Transparently declare single-set attributes on types.", "license": "MIT", "web": "https://github.com/Quelklef/nim-finals" + }, + { + "name": "tinyfiledialogs", + "url": "https://github.com/juancarlospaco/nim-tinyfiledialogs", + "method": "git", + "tags": [ + "gui", + "wrapper", + "gtk", + "qt", + "linux", + "windows", + "mac", + "osx" + ], + "description": "TinyFileDialogs for Nim.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-tinyfiledialogs" } ] From 4c5ff2e959fcc2aa74feeaa18e281324067d1637 Mon Sep 17 00:00:00 2001 From: Yoshihiro Tanaka Date: Mon, 24 Sep 2018 10:00:41 +0900 Subject: [PATCH 0782/1381] Add spotify --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 26b2677..e7d4b62 100644 --- a/packages.json +++ b/packages.json @@ -10808,5 +10808,16 @@ "description": "TinyFileDialogs for Nim.", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-tinyfiledialogs" + }, + { + "name": "spotify", + "url": "https://github.com/CORDEA/spotify", + "method": "git", + "tags": [ + "spotify" + ], + "description": "A Nim wrapper for the Spotify Web API", + "license": "Apache License 2.0", + "web": "https://github.com/CORDEA/spotify" } ] From 45563c34efb9ecb4694515d90a4f5613d792e6cd Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Tue, 25 Sep 2018 10:22:58 -0300 Subject: [PATCH 0783/1381] Added package printdebug (#867) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 26b2677..b288464 100644 --- a/packages.json +++ b/packages.json @@ -10791,6 +10791,20 @@ "license": "MIT", "web": "https://github.com/Quelklef/nim-finals" }, + { + "name": "printdebug", + "url": "https://github.com/juancarlospaco/nim-printdebug", + "method": "git", + "tags": [ + "debug", + "print", + "helper", + "util" + ], + "description": "Print Debug for Nim, tiny 3 lines Lib, C Target", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-printdebug" + }, { "name": "tinyfiledialogs", "url": "https://github.com/juancarlospaco/nim-tinyfiledialogs", From faa38dc6f8a64779fab10bfd1fe79e9ab0f4c4ef Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 25 Sep 2018 22:44:17 +0700 Subject: [PATCH 0784/1381] add nim-noise package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 26b2677..454a870 100644 --- a/packages.json +++ b/packages.json @@ -10808,5 +10808,18 @@ "description": "TinyFileDialogs for Nim.", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-tinyfiledialogs" + }, + { + "name": "noise", + "url": "https://github.com/jangko/nim-noise", + "method": "git", + "tags": [ + "linenoise", + "commandline", + "repl" + ], + "description": "Nim implementation of linenoise command line editor", + "license": "MIT", + "web": "https://github.com/jangko/nim-noise" } ] From bb0b9ce135eeac46d39d11e18790e0994ee1917d Mon Sep 17 00:00:00 2001 From: Giovanni Petrantoni Date: Sat, 29 Sep 2018 23:00:22 -0700 Subject: [PATCH 0785/1381] Add torch package variation to nimtorch (#866) * Add torch package variation to nimtorch * fix torch entry --- packages.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages.json b/packages.json index 194920c..64d5b41 100644 --- a/packages.json +++ b/packages.json @@ -10601,6 +10601,10 @@ }, { "name": "nimtorch", + "alias": "torch" + }, + { + "name": "torch", "url": "https://github.com/fragcolor-xyz/nimtorch", "method": "git", "tags": [ From bab520bb74e9032eba8a8335b223d81ccf613181 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Mon, 1 Oct 2018 05:51:03 +0200 Subject: [PATCH 0786/1381] Add package criterion (#871) * Added package criterion * Update packages.json --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 64d5b41..50db6a5 100644 --- a/packages.json +++ b/packages.json @@ -10850,5 +10850,16 @@ "description": "Nim implementation of linenoise command line editor", "license": "MIT", "web": "https://github.com/jangko/nim-noise" + }, + { + "name": "criterion", + "url": "https://github.com/LemonBoy/criterion.nim", + "method": "git", + "tags": [ + "benchmark" + ], + "description": "Statistic-driven microbenchmark framework", + "license": "MIT", + "web": "https://github.com/LemonBoy/criterion.nim" } ] From 71f44f12b8b07ab7eedf69e0e44491d1b38ef0fd Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Mon, 1 Oct 2018 10:52:58 +0700 Subject: [PATCH 0787/1381] Add package proxyproto (#873) * Added package proxyproto * Update packages.json --- packages.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/packages.json b/packages.json index 50db6a5..2185813 100644 --- a/packages.json +++ b/packages.json @@ -10851,6 +10851,31 @@ "license": "MIT", "web": "https://github.com/jangko/nim-noise" }, + { + "name": "proxyproto", + "url": "https://github.com/ba0f3/libproxy.nim", + "method": "git", + "tags": [ + "proxy", + "protocol", + "proxy-protocol", + "haproxy", + "tcp", + "ipv6", + "ipv4", + "linux", + "unix", + "hook", + "load-balancer", + "socket", + "udp", + "ipv6-support", + "preload" + ], + "description": "PROXY Protocol enabler for aged programs", + "license": "MIT", + "web": "https://github.com/ba0f3/libproxy.nim" + }, { "name": "criterion", "url": "https://github.com/LemonBoy/criterion.nim", From 354bb9a55b7b9c32ba0fb5678991c15293714a6e Mon Sep 17 00:00:00 2001 From: Albert Safin Date: Mon, 1 Oct 2018 11:15:05 +0700 Subject: [PATCH 0788/1381] Add package ndb --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 2185813..a8d91da 100644 --- a/packages.json +++ b/packages.json @@ -10886,5 +10886,20 @@ "description": "Statistic-driven microbenchmark framework", "license": "MIT", "web": "https://github.com/LemonBoy/criterion.nim" + }, + { + "name": "ndb", + "url": "https://github.com/xzfc/ndb.nim", + "method": "git", + "tags": [ + "binding", + "database", + "db", + "library", + "sqlite" + ], + "description": "A db_sqlite fork with a proper typing", + "license": "MIT", + "web": "https://github.com/xzfc/ndb.nim" } ] From 0bf059d9d2ddd8cd6c676b09b7666c5f8603cb14 Mon Sep 17 00:00:00 2001 From: Anirudh Date: Tue, 2 Oct 2018 09:08:45 +0530 Subject: [PATCH 0789/1381] Add nanoid package (#875) * Add nanoid * Fix bad JSON --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index a8d91da..23626f2 100644 --- a/packages.json +++ b/packages.json @@ -10887,6 +10887,17 @@ "license": "MIT", "web": "https://github.com/LemonBoy/criterion.nim" }, + { + "name": "nanoid", + "url": "https://github.com/icyphox/nanoid.nim", + "method": "git", + "tags": [ + "nanoid", "random", "generator" + ], + "description": "The Nim implementation of NanoID", + "license": "MIT", + "web": "https://github.com/icyphox/nanoid.nim" + }, { "name": "ndb", "url": "https://github.com/xzfc/ndb.nim", From d81f6547370241c42a66af97bf333c38c61dc03d Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Tue, 2 Oct 2018 14:46:30 +0200 Subject: [PATCH 0790/1381] Added package dtoa --- packages.json | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 23626f2..975a01f 100644 --- a/packages.json +++ b/packages.json @@ -10892,7 +10892,9 @@ "url": "https://github.com/icyphox/nanoid.nim", "method": "git", "tags": [ - "nanoid", "random", "generator" + "nanoid", + "random", + "generator" ], "description": "The Nim implementation of NanoID", "license": "MIT", @@ -10912,5 +10914,23 @@ "description": "A db_sqlite fork with a proper typing", "license": "MIT", "web": "https://github.com/xzfc/ndb.nim" + }, + { + "name": "dtoa", + "url": "https://github.com/LemonBoy/dtoa.nim", + "method": "git", + "tags": [ + "algorithms", + "serialization", + "fast", + "grisu", + "dtoa", + "double", + "float", + "string" + ], + "description": "Port of Milo Yip's fast dtoa() implementation", + "license": "MIT", + "web": "https://github.com/LemonBoy/dtoa.nim" } ] From 65bc32cd166851f04ee10d2145d6037ab6325f17 Mon Sep 17 00:00:00 2001 From: genotrance Date: Wed, 3 Oct 2018 23:12:35 -0500 Subject: [PATCH 0791/1381] Added package nimmonocypher (#877) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 975a01f..502c004 100644 --- a/packages.json +++ b/packages.json @@ -10915,6 +10915,22 @@ "license": "MIT", "web": "https://github.com/xzfc/ndb.nim" }, + { + "name": "nimmonocypher", + "url": "https://github.com/genotrance/nimmonocypher", + "method": "git", + "tags": [ + "monocypher", + "crypto", + "crypt", + "hash", + "sha512", + "wrapper" + ], + "description": "monocypher wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimmonocypher" + }, { "name": "dtoa", "url": "https://github.com/LemonBoy/dtoa.nim", From 32985af367f63dacd3c278b721fb9c0a9f207281 Mon Sep 17 00:00:00 2001 From: Luca Guzzon Date: Fri, 5 Oct 2018 05:35:25 +0200 Subject: [PATCH 0792/1381] Repository relocation (#880) --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 502c004..f2c665d 100644 --- a/packages.json +++ b/packages.json @@ -8143,14 +8143,14 @@ }, { "name": "simpleAST", - "url": "https://github.com/lguzzon/simpleAST", + "url": "https://github.com/lguzzon-NIM/simpleAST", "method": "git", "tags": [ "ast" ], "description": "Simple AST in NIM", "license": "MIT", - "web": "https://github.com/lguzzon/simpleAST" + "web": "https://github.com/lguzzon-NIM/simpleAST" }, { "name": "timerpool", From 87ee4c56d760a2072411aea31bdd0a2928b3156c Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Thu, 4 Oct 2018 21:39:34 -0600 Subject: [PATCH 0793/1381] Added package github_release (#878) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f2c665d..693c1b8 100644 --- a/packages.json +++ b/packages.json @@ -10915,6 +10915,21 @@ "license": "MIT", "web": "https://github.com/xzfc/ndb.nim" }, + { + "name": "github_release", + "url": "https://github.com/kdheepak/github-release", + "method": "git", + "tags": [ + "github", + "release", + "upload", + "create", + "delete" + ], + "description": "github-release package", + "license": "MIT", + "web": "https://github.com/kdheepak/github-release" + }, { "name": "nimmonocypher", "url": "https://github.com/genotrance/nimmonocypher", From 6d810ba02fc57275d610c711766175c9c9228938 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Fri, 5 Oct 2018 15:33:53 -0500 Subject: [PATCH 0794/1381] Added package nimtess2 --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 693c1b8..cf94d39 100644 --- a/packages.json +++ b/packages.json @@ -10963,5 +10963,19 @@ "description": "Port of Milo Yip's fast dtoa() implementation", "license": "MIT", "web": "https://github.com/LemonBoy/dtoa.nim" + }, + { + "name": "nimtess2", + "url": "https://github.com/genotrance/nimtess2", + "method": "git", + "tags": [ + "glu", + "tesselator", + "libtess2", + "opengl" + ], + "description": "Nim wrapper for libtess2", + "license": "MIT", + "web": "https://github.com/genotrance/nimtess2" } ] From 40da43570e335d5c00e34807c9328df790fe51f7 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Sun, 7 Oct 2018 15:52:30 -0400 Subject: [PATCH 0795/1381] Added package ntangle (#882) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index cf94d39..087324b 100644 --- a/packages.json +++ b/packages.json @@ -10964,6 +10964,21 @@ "license": "MIT", "web": "https://github.com/LemonBoy/dtoa.nim" }, + { + "name": "ntangle", + "url": "https://github.com/OrgTangle/ntangle", + "method": "git", + "tags": [ + "literate-programming", + "org-mode", + "org", + "tangling", + "emacs" + ], + "description": "Command-line utility for Tangling of Org mode documents", + "license": "MIT", + "web": "https://github.com/OrgTangle/ntangle" + }, { "name": "nimtess2", "url": "https://github.com/genotrance/nimtess2", From e34027e77501dd2dd893342f3a5444e89f5345a4 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 9 Oct 2018 22:09:18 +0700 Subject: [PATCH 0796/1381] Added package sequoia --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 087324b..45fee4b 100644 --- a/packages.json +++ b/packages.json @@ -10992,5 +10992,19 @@ "description": "Nim wrapper for libtess2", "license": "MIT", "web": "https://github.com/genotrance/nimtess2" + }, + { + "name": "sequoia", + "url": "https://github.com/ba0f3/sequoia.nim", + "method": "git", + "tags": [ + "sequoia", + "pgp", + "openpgp", + "wrapper" + ], + "description": "Sequoia PGP wrapper for Nim", + "license": "GPLv3", + "web": "https://github.com/ba0f3/sequoia.nim" } ] From 8922834496b229dddaf5e1e61bc2359e5ea3a164 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Tue, 9 Oct 2018 15:10:15 -0400 Subject: [PATCH 0797/1381] Remove the unnecessary "nim" tags Ref: https://github.com/nim-lang/packages/issues/399#issuecomment-243021190 --- packages.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages.json b/packages.json index 45fee4b..28daf8a 100644 --- a/packages.json +++ b/packages.json @@ -9021,7 +9021,6 @@ "tags": [ "Excel", "wrapper", - "nim", "xlsx" ], "description": "libxslxwriter wrapper for Nim", @@ -10469,7 +10468,6 @@ "parser", "compile", "tokenizer", - "nim", "html", "cdata" ], From 154665cbf99caf52dbb97133596843449be9ba30 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Tue, 9 Oct 2018 15:00:37 -0400 Subject: [PATCH 0798/1381] Add the xmldom and xmldomparser packages from graveyard --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index 45fee4b..411c1ba 100644 --- a/packages.json +++ b/packages.json @@ -11006,5 +11006,32 @@ "description": "Sequoia PGP wrapper for Nim", "license": "GPLv3", "web": "https://github.com/ba0f3/sequoia.nim" + }, + { + "name": "xmldom", + "url": "https://github.com/nim-lang/graveyard?subdir=xmldom", + "method": "git", + "tags": [ + "graveyard", + "xml", + "dom" + ], + "description": "Implementation of XML DOM Level 2 Core specification (http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html)", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/xmldom" + }, + { + "name": "xmldomparser", + "url": "https://github.com/nim-lang/graveyard?subdir=xmldomparser", + "method": "git", + "tags": [ + "graveyard", + "xml", + "dom", + "parser" + ], + "description": "Parses an XML Document into a XML DOM Document representation.", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/xmldomparser" } ] From 761ef622e36c247ebd009ae3109829390caa82c2 Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Thu, 11 Oct 2018 21:09:18 +0200 Subject: [PATCH 0799/1381] Added package witai (#887) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 4378da0..f9ae103 100644 --- a/packages.json +++ b/packages.json @@ -11005,6 +11005,22 @@ "license": "GPLv3", "web": "https://github.com/ba0f3/sequoia.nim" }, + { + "name": "witai", + "url": "https://github.com/xmonader/witai-nim", + "method": "git", + "tags": [ + "witai", + "wit.ai", + "client", + "speech", + "freetext", + "voice" + ], + "description": "wit.ai client", + "license": "MIT", + "web": "https://github.com/xmonader/witai-nim" + }, { "name": "xmldom", "url": "https://github.com/nim-lang/graveyard?subdir=xmldom", From 53721b3504aae3c751ce8cf58c94fb848eb6416d Mon Sep 17 00:00:00 2001 From: Jabba Laci Date: Thu, 11 Oct 2018 21:10:22 +0200 Subject: [PATCH 0800/1381] Added package pykot (#888) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f9ae103..2d96c6b 100644 --- a/packages.json +++ b/packages.json @@ -11005,6 +11005,19 @@ "license": "GPLv3", "web": "https://github.com/ba0f3/sequoia.nim" }, + { + "name": "pykot", + "url": "https://github.com/jabbalaci/nimpykot", + "method": "git", + "tags": [ + "library", + "python", + "kotlin" + ], + "description": "Porting some Python / Kotlin features to Nim", + "license": "MIT", + "web": "https://github.com/jabbalaci/nimpykot" + }, { "name": "witai", "url": "https://github.com/xmonader/witai-nim", From 35be6017f4326e0554bd0091c031eb613b694d2f Mon Sep 17 00:00:00 2001 From: Andrew Burns Date: Fri, 12 Oct 2018 11:37:47 -0700 Subject: [PATCH 0801/1381] Added package asciigraph --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 2d96c6b..829e7d0 100644 --- a/packages.json +++ b/packages.json @@ -11060,5 +11060,19 @@ "description": "Parses an XML Document into a XML DOM Document representation.", "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/xmldomparser" + }, + { + "name": "asciigraph", + "url": "https://github.com/KeepCoolWithCoolidge/asciigraph", + "method": "git", + "tags": [ + "graph", + "plot", + "terminal", + "io" + ], + "description": "Console ascii line charts in pure nim", + "license": "MIT", + "web": "https://github.com/KeepCoolWithCoolidge/asciigraph" } ] From 254f57abcc7c69c0b263672764a18d7d736675a4 Mon Sep 17 00:00:00 2001 From: Steve Johnson Date: Sat, 13 Oct 2018 22:16:51 -0700 Subject: [PATCH 0802/1381] Added package rexpaint --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 829e7d0..be9d326 100644 --- a/packages.json +++ b/packages.json @@ -11074,5 +11074,18 @@ "description": "Console ascii line charts in pure nim", "license": "MIT", "web": "https://github.com/KeepCoolWithCoolidge/asciigraph" + }, + { + "name": "rexpaint", + "url": "https://github.com/irskep/rexpaint_nim", + "method": "git", + "tags": [ + "rexpaint", + "roguelike", + "xp" + ], + "description": "REXPaint .xp parser", + "license": "MIT", + "web": "https://github.com/irskep/rexpaint_nim" } ] From 67d25cbeee4e9464456d945cb1e3b0b65ae08b84 Mon Sep 17 00:00:00 2001 From: Steve Johnson Date: Sat, 13 Oct 2018 22:49:16 -0700 Subject: [PATCH 0803/1381] Added package bearlibterminal --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 829e7d0..eb0a115 100644 --- a/packages.json +++ b/packages.json @@ -11074,5 +11074,20 @@ "description": "Console ascii line charts in pure nim", "license": "MIT", "web": "https://github.com/KeepCoolWithCoolidge/asciigraph" + }, + { + "name": "bearlibterminal", + "url": "https://github.com/irskep/BearLibTerminal-Nim", + "method": "git", + "tags": [ + "roguelike", + "bearlibterminal", + "tcod", + "libtcod", + "tdl" + ], + "description": "Wrapper for the C[++] library BearLibTerminal", + "license": "MIT", + "web": "https://github.com/irskep/BearLibTerminal-Nim" } ] From c84de2bcf40ec03b053ebaf79d2d342a83f6b031 Mon Sep 17 00:00:00 2001 From: Steve Landey Date: Sat, 13 Oct 2018 22:49:53 -0700 Subject: [PATCH 0804/1381] Tweak to tag list --- packages.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages.json b/packages.json index eb0a115..042096d 100644 --- a/packages.json +++ b/packages.json @@ -11081,6 +11081,7 @@ "method": "git", "tags": [ "roguelike", + "terminal", "bearlibterminal", "tcod", "libtcod", From ab231e8333fc10ab0e1ca6b648870896a6f25817 Mon Sep 17 00:00:00 2001 From: skilchen Date: Mon, 15 Oct 2018 21:40:26 +0200 Subject: [PATCH 0805/1381] unpublish nimcalcal, calendar --- packages.json | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/packages.json b/packages.json index fe4d371..da082f6 100644 --- a/packages.json +++ b/packages.json @@ -7344,18 +7344,6 @@ "license": "MIT", "web": "https://github.com/trustable-code/NiGui" }, - { - "name": "nimcalcal", - "url": "https://github.com/skilchen/nimcalcal", - "method": "git", - "tags": [ - "calendar", - "library" - ], - "description": "nimcalcal - PyCalCal translated to Nim, Calendrical Calculations from Reingold/Dershowitz", - "license": "MIT", - "web": "http://www3.cs.stonybrook.edu/~algorith/implement/reingold/implement.shtml" - }, { "name": "currying", "url": "https://github.com/t8m8/currying", @@ -7541,19 +7529,6 @@ "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_slacklib" }, - { - "name": "calendar", - "url": "https://github.com/skilchen/calendar", - "method": "git", - "tags": [ - "calendar", - "dates", - "library" - ], - "description": "calendar.py from Pythons stdlib translated to Nim", - "license": "MIT", - "web": "https://docs.python.org/2/library/calendar.html" - }, { "name": "wiringPiNim", "url": "https://github.com/ThomasTJdev/nim_wiringPiNim", From 4707b6059da02ecbd9e0017f972ac1d738927b0f Mon Sep 17 00:00:00 2001 From: Huy Doan Date: Tue, 16 Oct 2018 13:23:58 +0700 Subject: [PATCH 0806/1381] Added package ngxcmod --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fe4d371..cd7e689 100644 --- a/packages.json +++ b/packages.json @@ -11103,5 +11103,19 @@ "description": "REXPaint .xp parser", "license": "MIT", "web": "https://github.com/irskep/rexpaint_nim" + }, + { + "name": "ngxcmod", + "url": "https://github.com/ba0f3/ngxcmod.nim", + "method": "git", + "tags": [ + "nginx", + "module", + "nginx-c-function", + "wrapper" + ], + "description": "High level wrapper for build nginx module w/ nginx-c-function", + "license": "MIT", + "web": "https://github.com/ba0f3/ngxcmod.nim" } ] From 31745725369353b5e3e38d7f9afdec275975f6a2 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 16 Oct 2018 03:17:07 +0300 Subject: [PATCH 0807/1381] Add package_visible_types --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fe4d371..70e688b 100644 --- a/packages.json +++ b/packages.json @@ -5925,6 +5925,19 @@ "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-etcd-client" }, + { + "name": "package_visible_types", + "url": "https://github.com/zah/nim-package-visible-types", + "method": "git", + "tags": [ + "library", + "packages", + "visibility" + ], + "description": "A hacky helper lib for authoring Nim packages with package-level visiblity", + "license": "MIT", + "web": "https://github.com/zah/nim-package-visible-types" + }, { "name": "ranges", "url": "https://github.com/status-im/nim-ranges", From 9f6d852d5f1bd4cd017111a29759d18945f1ad66 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Wed, 17 Oct 2018 15:28:32 -0300 Subject: [PATCH 0808/1381] Added package usagov --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 2d99d1d..2e49d80 100644 --- a/packages.json +++ b/packages.json @@ -11130,5 +11130,17 @@ "description": "High level wrapper for build nginx module w/ nginx-c-function", "license": "MIT", "web": "https://github.com/ba0f3/ngxcmod.nim" + }, + { + "name": "usagov", + "url": "https://github.com/juancarlospaco/nim-usagov", + "method": "git", + "tags": [ + "gov", + "opendata" + ], + "description": "USA Code.Gov MultiSync API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-usagov" } ] From a1857ce9ced0689c69e15f00be86c67a3fc8ceba Mon Sep 17 00:00:00 2001 From: Jabba Laci Date: Wed, 17 Oct 2018 21:38:39 +0200 Subject: [PATCH 0809/1381] Added package rodcli (#898) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 2d99d1d..859d3ad 100644 --- a/packages.json +++ b/packages.json @@ -11117,6 +11117,23 @@ "license": "MIT", "web": "https://github.com/irskep/rexpaint_nim" }, + { + "name": "rodcli", + "url": "https://github.com/jabbalaci/NimCliHelper", + "method": "git", + "tags": [ + "cli", + "compile", + "run", + "command-line", + "init", + "project", + "skeleton" + ], + "description": "making Nim development easier in the command-line", + "license": "MIT", + "web": "https://github.com/jabbalaci/NimCliHelper" + }, { "name": "ngxcmod", "url": "https://github.com/ba0f3/ngxcmod.nim", From e15115d7d5018021eb794020308097ed2231fe76 Mon Sep 17 00:00:00 2001 From: Soasme Date: Sat, 20 Oct 2018 06:32:02 +1300 Subject: [PATCH 0810/1381] Added package markdown (#899) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 0bbaafc..235cbb1 100644 --- a/packages.json +++ b/packages.json @@ -11134,5 +11134,19 @@ "description": "USA Code.Gov MultiSync API Client for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-usagov" + }, + { + "name": "markdown", + "url": "https://github.com/soasme/nim-markdown", + "method": "git", + "tags": [ + "markdown", + "md", + "docs", + "html" + ], + "description": "A Beautiful Markdown Parser in the Nim World.", + "license": "MIT", + "web": "https://github.com/soasme/nim-markdown" } ] From f846a89f843e73116040a856a90e4db4e9c36705 Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Sat, 20 Oct 2018 21:34:50 +0200 Subject: [PATCH 0811/1381] Add nimtomd --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 235cbb1..f3e15fc 100644 --- a/packages.json +++ b/packages.json @@ -11148,5 +11148,17 @@ "description": "A Beautiful Markdown Parser in the Nim World.", "license": "MIT", "web": "https://github.com/soasme/nim-markdown" + }, + { + "name": "nimtomd", + "url": "https://github.com/ThomasTJdev/nimtomd", + "method": "git", + "tags": [ + "markdown", + "md" + ], + "description": "Convert a Nim file or string to Markdown", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nimtomd" } ] From f685da1e2195482a570d6cae3ccdee8e115ba180 Mon Sep 17 00:00:00 2001 From: h3rald Date: Sun, 21 Oct 2018 15:17:09 +0200 Subject: [PATCH 0812/1381] Added package nifty --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index f3e15fc..e232b13 100644 --- a/packages.json +++ b/packages.json @@ -11160,5 +11160,17 @@ "description": "Convert a Nim file or string to Markdown", "license": "MIT", "web": "https://github.com/ThomasTJdev/nimtomd" + }, + { + "name": "nifty", + "url": "https://github.com/h3rald/nifty", + "method": "git", + "tags": [ + "package-manager", + "script-runner" + ], + "description": "A decentralized (pseudo) package manager and script runner.", + "license": "MIT", + "web": "https://github.com/h3rald/nifty" } ] From f3695d6daa176b8e30429b00b00cbe1db50df2c9 Mon Sep 17 00:00:00 2001 From: Jabba Laci Date: Tue, 23 Oct 2018 18:35:04 +0200 Subject: [PATCH 0813/1381] Added package urlshortener --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index e232b13..45e5d77 100644 --- a/packages.json +++ b/packages.json @@ -11172,5 +11172,22 @@ "description": "A decentralized (pseudo) package manager and script runner.", "license": "MIT", "web": "https://github.com/h3rald/nifty" + }, + { + "name": "urlshortener", + "url": "https://github.com/jabbalaci/UrlShortener", + "method": "git", + "tags": [ + "url", + "shorten", + "shortener", + "bitly", + "cli", + "shrink", + "shrinker" + ], + "description": "A URL shortener cli app. using bit.ly", + "license": "MIT", + "web": "https://github.com/jabbalaci/UrlShortener" } ] From 6416e16578f5da662e1f3b6ba35baa8b3eae8706 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Thu, 25 Oct 2018 10:26:34 -0300 Subject: [PATCH 0814/1381] Added package georefar --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 45e5d77..40fe4b4 100644 --- a/packages.json +++ b/packages.json @@ -11189,5 +11189,21 @@ "description": "A URL shortener cli app. using bit.ly", "license": "MIT", "web": "https://github.com/jabbalaci/UrlShortener" + }, + { + "name": "georefar", + "url": "https://github.com/juancarlospaco/nim-georefar", + "method": "git", + "tags": [ + "geo", + "openstreetmap", + "async", + "multisync", + "opendata", + "gov" + ], + "description": "GeoRef Argentina Government MultiSync API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-georefar" } ] From 317ded1dd43ad8b89f28056229c142b247471458 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 26 Oct 2018 19:19:04 -0300 Subject: [PATCH 0815/1381] Added package crosscompile (#893) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 40fe4b4..1259490 100644 --- a/packages.json +++ b/packages.json @@ -11092,6 +11092,18 @@ "license": "MIT", "web": "https://github.com/irskep/rexpaint_nim" }, + { + "name": "crosscompile", + "url": "https://github.com/juancarlospaco/nim-crosscompile", + "method": "git", + "tags": [ + "crosscompile", + "compile" + ], + "description": "Crosscompile Nim source code into multiple targets on Linux with this proc.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-crosscompile" + }, { "name": "rodcli", "url": "https://github.com/jabbalaci/NimCliHelper", From ecc06f7acc6c71a64809954d04017980d5df7979 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 27 Oct 2018 10:53:14 +0100 Subject: [PATCH 0816/1381] Adds sugerror. (Merges #902 manually). --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1259490..fb7b565 100644 --- a/packages.json +++ b/packages.json @@ -11217,5 +11217,17 @@ "description": "GeoRef Argentina Government MultiSync API Client for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-georefar" + }, + { + "name": "sugerror", + "url": "https://github.com/quelklef/nim-sugerror", + "method": "git", + "tags": [ + "errors", + "expr" + ], + "description": "Terse and composable error handling.", + "license": "MIT", + "web": "https://github.com/quelklef/nim-sugerror" } ] From 5525a50a74ae788ad27d8cac9eefe5421d436e51 Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Sat, 27 Oct 2018 14:26:22 +0200 Subject: [PATCH 0817/1381] Add sermon --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fb7b565..4a6d4d2 100644 --- a/packages.json +++ b/packages.json @@ -11229,5 +11229,19 @@ "description": "Terse and composable error handling.", "license": "MIT", "web": "https://github.com/quelklef/nim-sugerror" + }, + { + "name": "sermon", + "url": "https://github.com/ThomasTJdev/nim_sermon", + "method": "git", + "tags": [ + "monitor", + "storage", + "memory", + "process" + ], + "description": "Monitor the state and memory of processes and URL response.", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_sermon" } ] From 9591bc1654d7939031dad99838ecd763a004ff90 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sat, 27 Oct 2018 19:00:46 +0200 Subject: [PATCH 0818/1381] Add nim-prompt; Normalize several tags to a single "command-line" tag --- packages.json | 45 ++++++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/packages.json b/packages.json index 4a6d4d2..5da1b3c 100644 --- a/packages.json +++ b/packages.json @@ -94,12 +94,12 @@ "method": "git", "tags": [ "library", - "commandline", + "command-line", "arguments", "switches", "parsing" ], - "description": "Provides a complex commandline parser", + "description": "Provides a complex command-line parser", "license": "MIT", "web": "https://github.com/Xe/argument_parser" }, @@ -109,7 +109,7 @@ "method": "git", "tags": [ "library", - "commandline", + "command-line", "sound", "recycle", "os" @@ -879,7 +879,7 @@ "method": "git", "tags": [ "library", - "commandline", + "command-line", "arguments", "switches", "parsing", @@ -930,7 +930,7 @@ "tags": [ "rmdir", "awesome", - "commandline" + "command-line" ], "description": "Command to remove acceptably empty directories.", "license": "MIT", @@ -1426,7 +1426,7 @@ "url": "https://github.com/Araq/gh_nimrod_doc_pages", "method": "git", "tags": [ - "commandline", + "command-line", "web", "automation", "documentation" @@ -2126,7 +2126,7 @@ "url": "https://github.com/docopt/docopt.nim", "method": "git", "tags": [ - "commandline", + "command-line", "arguments", "parsing", "library" @@ -2802,9 +2802,10 @@ "method": "git", "tags": [ "linenoise", + "readline", "library", "wrapper", - "commandline" + "command-line" ], "description": "Wrapper for linenoise, a free, self-contained alternative to GNU readline.", "license": "BSD", @@ -3423,7 +3424,7 @@ "url": "https://github.com/Xe/vardene", "method": "git", "tags": [ - "command line", + "command-line", "tool", "compiler" ], @@ -4327,7 +4328,7 @@ "method": "git", "tags": [ "library", - "commandline", + "command-line", "arguments", "switches", "parsing", @@ -5860,7 +5861,7 @@ "library", "wrapper", "termbox", - "commandline", + "command-line", "ui", "tui", "gui" @@ -6471,7 +6472,7 @@ "method": "git", "tags": [ "cmd", - "command", + "command-line", "prompt", "interactive" ], @@ -9564,7 +9565,7 @@ "method": "git", "tags": [ "sha1", - "commandline", + "command-line", "utilities" ], "description": "Rename files to their sha1sums", @@ -10118,7 +10119,7 @@ "url": "https://github.com/Calinou/clr", "method": "git", "tags": [ - "commandline", + "command-line", "color", "rgb", "hsl", @@ -10830,13 +10831,27 @@ "method": "git", "tags": [ "linenoise", - "commandline", + "readline", + "command-line", "repl" ], "description": "Nim implementation of linenoise command line editor", "license": "MIT", "web": "https://github.com/jangko/nim-noise" }, + { + "name": "prompt", + "url": "https://github.com/surf1nb1rd/nim-prompt", + "method": "git", + "tags": [ + "command-line", + "readline", + "repl" + ], + "description": "Feature-rich readline replacement", + "license": "BSD2", + "web": "https://github.com/surf1nb1rd/nim-prompt" + }, { "name": "proxyproto", "url": "https://github.com/ba0f3/libproxy.nim", From 50675d3c049b758edc92438f44305e3d4662f116 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 29 Oct 2018 19:16:19 -0300 Subject: [PATCH 0819/1381] Added package usigar (#907) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 5da1b3c..d13769c 100644 --- a/packages.json +++ b/packages.json @@ -11217,6 +11217,21 @@ "license": "MIT", "web": "https://github.com/jabbalaci/UrlShortener" }, + { + "name": "usigar", + "url": "https://github.com/juancarlospaco/nim-usigar", + "method": "git", + "tags": [ + "geo", + "opendata", + "openstreemap", + "multisync", + "async" + ], + "description": "USIG Argentina Government MultiSync API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-usigar" + }, { "name": "georefar", "url": "https://github.com/juancarlospaco/nim-georefar", From 17d35624b83ddd620402b264bcec10ea9f53f860 Mon Sep 17 00:00:00 2001 From: Wolfgang Schuster Date: Wed, 31 Oct 2018 15:10:41 -0600 Subject: [PATCH 0820/1381] Add package arksys (#913) * Added package arksys * Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d13769c..0be1cd9 100644 --- a/packages.json +++ b/packages.json @@ -11273,5 +11273,17 @@ "description": "Monitor the state and memory of processes and URL response.", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_sermon" + }, + { + "name": "arksys", + "url": "https://github.com/wolfadex/arksys", + "method": "git", + "tags": [ + "ECS", + "library" + ], + "description": "An entity component system package", + "license": "MIT", + "web": "https://github.com/wolfadex/arksys" } ] From 416b3933fba1877105263ef2da5db44051c136de Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 31 Oct 2018 21:19:04 +0000 Subject: [PATCH 0821/1381] Merges #904 manually. --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 0be1cd9..54a3aa2 100644 --- a/packages.json +++ b/packages.json @@ -11285,5 +11285,19 @@ "description": "An entity component system package", "license": "MIT", "web": "https://github.com/wolfadex/arksys" + }, + { + "name": "coco", + "url": "https://github.com/samuelroy/coco", + "method": "git", + "tags": [ + "code", + "coverage", + "test" + ], + "description": "Code coverage CLI + library for Nim using LCOV", + "license": "MIT", + "web": "https://github.com/samuelroy/coco", + "doc": "https://samuelroy.github.io/coco/" } ] From 264b8cf97cc7bd354a7679ac7eff0487c70f5403 Mon Sep 17 00:00:00 2001 From: Benjamin Frady Date: Wed, 31 Oct 2018 19:10:45 -0400 Subject: [PATCH 0822/1381] adding nimetry module --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 54a3aa2..312f06e 100644 --- a/packages.json +++ b/packages.json @@ -11299,5 +11299,19 @@ "license": "MIT", "web": "https://github.com/samuelroy/coco", "doc": "https://samuelroy.github.io/coco/" + }, + { + "name": "nimetry", + "url": "https://github.com/ijneb/nimetry", + "method": "git", + "tags": [ + "plot", + "graph", + "chart" + ], + "description": "Plotting module in pure nim", + "license": "CC0", + "web": "https://github.com/ijneb/nimetry", + "doc": "https://ijneb.github.io/nimetry" } ] From 923ac6ffb66872575c225b49b58258e0b58b41c8 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 1 Nov 2018 16:59:43 -0300 Subject: [PATCH 0823/1381] Cleanout, No new package (#914) * Clean out packages.json, no new packages added. * Clean out packages.json, no new packages added. --- packages.json | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) diff --git a/packages.json b/packages.json index 54a3aa2..163e2cd 100644 --- a/packages.json +++ b/packages.json @@ -116,7 +116,7 @@ ], "description": "Too awesome procs to be included in nimrod.os module", "license": "MIT", - "web": "http://github.com/Araq/genieos/" + "web": "https://github.com/Araq/genieos/" }, { "name": "jester", @@ -437,7 +437,7 @@ "nx" ], "description": "A port of libnx to Nim", - "license": "The Unlicense", + "license": "Unlicense", "web": "https://github.com/jyapayne/nim-libnx" }, { @@ -773,7 +773,7 @@ ], "description": "Cover Art Archive API wrapper", "license": "MIT", - "web": "http://github.com/achesak/nim-coverartarchive" + "web": "https://github.com/achesak/nim-coverartarchive" }, { "name": "nim-ogg", @@ -1856,7 +1856,7 @@ "openssl" ], "description": "Wrapper for OpenSSL's EVP interface", - "license": "OpenSSL License and SSLeay License", + "license": "OpenSSL and SSLeay", "web": "https://github.com/cowboy-coders/nim-openssl-evp" }, { @@ -3419,19 +3419,6 @@ "license": "MIT", "web": "https://github.com/tulayang/httpform" }, - { - "name": "vardene", - "url": "https://github.com/Xe/vardene", - "method": "git", - "tags": [ - "command-line", - "tool", - "compiler" - ], - "description": "A simple tool to manage multiple installs of Nim.", - "license": "MIT", - "web": "https://christine.website/projects/Vardene" - }, { "name": "quadtree", "url": "https://github.com/Nycto/QuadtreeNim", @@ -4702,7 +4689,7 @@ "timer" ], "description": "Micro benchmarking tool to measure speed of code, with the goal of optimizing it.", - "license": "Apache License, Version 2.0", + "license": "Apache Version 2.0", "web": "https://github.com/ivankoster/nimbench" }, { @@ -6105,7 +6092,7 @@ "database" ], "description": "A wrapper for Facebook's RocksDB, an embeddable, persistent key-value store for fast storage", - "license": "Apache License 2.0 or GPLv2", + "license": "Apache 2.0 or GPLv2", "web": "https://github.com/status-im/nim-rocksdb" }, { @@ -6253,7 +6240,7 @@ "wrapper" ], "description": "A wrapper for stb_image and stb_image_write.", - "license": "Unlicense (Public Domain)", + "license": "Unlicense", "web": "https://gitlab.com/define-private-public/stb_image-Nim" }, { @@ -6822,7 +6809,7 @@ "font" ], "description": "Low level wrapper for the fontconfig library.", - "license": "Fontconfig License", + "license": "Fontconfig", "web": "https://github.com/Parashurama/fontconfig" }, { @@ -9158,7 +9145,7 @@ "variadic" ], "description": "Loop efficiently over a variadic number of containers", - "license": "MIT or Apache License 2.0", + "license": "MIT or Apache 2.0", "web": "https://github.com/numforge/loopfusion" }, { @@ -10076,8 +10063,7 @@ "x86", "windows", "linux", - "unix", - "" + "unix" ], "description": "subhook wrapper", "license": "BSD2", @@ -10727,8 +10713,7 @@ "url": "https://github.com/M4RC3L05/redux-nim", "method": "git", "tags": [ - "", - "" + "redux" ], "description": "Redux Implementation in nim", "license": "MIT", From 61ddc93db8bb3e5c9579ab8206f1fae6334e265e Mon Sep 17 00:00:00 2001 From: andri lim Date: Fri, 2 Nov 2018 22:12:01 +0700 Subject: [PATCH 0824/1381] add snappy package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 796f984..f462c6a 100644 --- a/packages.json +++ b/packages.json @@ -11298,5 +11298,18 @@ "license": "CC0", "web": "https://github.com/ijneb/nimetry", "doc": "https://ijneb.github.io/nimetry" + }, + { + "name": "snappy", + "url": "https://github.com/jangko/snappy", + "method": "git", + "tags": [ + "compression", + "snappy", + "lzw" + ], + "description": "Nim implementation of Snappy compression algorithm", + "license": "MIT", + "web": "https://github.com/jangko/snappy" } ] From 7d762dd4d935aa68332ded696df10f8cea600c83 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Sat, 3 Nov 2018 18:41:21 -0300 Subject: [PATCH 0825/1381] Added package osrm --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index f462c6a..b22bc95 100644 --- a/packages.json +++ b/packages.json @@ -11311,5 +11311,22 @@ "description": "Nim implementation of Snappy compression algorithm", "license": "MIT", "web": "https://github.com/jangko/snappy" + }, + { + "name": "osrm", + "url": "https://github.com/juancarlospaco/nim-osrm", + "method": "git", + "tags": [ + "openstreetmap", + "geo", + "gis", + "opendata", + "routing", + "async", + "multisync" + ], + "description": "Open Source Routing Machine for OpenStreetMap API Lib and App", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-osrm" } ] From e7d1778811cce23225efc8298e72ee829df4e937 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Mon, 5 Nov 2018 14:35:55 -0300 Subject: [PATCH 0826/1381] Added package css_html_minify --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b22bc95..6974a7d 100644 --- a/packages.json +++ b/packages.json @@ -11328,5 +11328,18 @@ "description": "Open Source Routing Machine for OpenStreetMap API Lib and App", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-osrm" + }, + { + "name": "css_html_minify", + "url": "https://github.com/juancarlospaco/nim-css-html-minify", + "method": "git", + "tags": [ + "css", + "html", + "minify" + ], + "description": "HTML & CSS Minify Lib & App based on Regexes & parallel MultiReplaces", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-css-html-minify" } ] From 251adb925f1acbdc9b1397c4d0a843daa1765bd7 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 5 Nov 2018 17:33:52 -0300 Subject: [PATCH 0827/1381] Add package seriesdetiempoar (#908) * Added package seriesdetiempoar * Update packages.json --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index b22bc95..ff7f815 100644 --- a/packages.json +++ b/packages.json @@ -11202,6 +11202,20 @@ "license": "MIT", "web": "https://github.com/jabbalaci/UrlShortener" }, + { + "name": "seriesdetiempoar", + "url": "https://github.com/juancarlospaco/nim-seriesdetiempoar", + "method": "git", + "tags": [ + "async", + "multisync", + "gov", + "opendata" + ], + "description": "Series de Tiempo de Argentina Government MultiSync API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-seriesdetiempoar" + }, { "name": "usigar", "url": "https://github.com/juancarlospaco/nim-usigar", From 29c3804ea3278d8832e23e21326ad29545f142a2 Mon Sep 17 00:00:00 2001 From: Kobi Date: Mon, 5 Nov 2018 22:37:06 +0200 Subject: [PATCH 0828/1381] Add package vmvc (#911) * Added package vmvc * added url and web for vmvc * a more fitting description * Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 0405e37..f85f863 100644 --- a/packages.json +++ b/packages.json @@ -11273,6 +11273,18 @@ "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_sermon" }, + { + "name": "vmvc", + "url": "https://github.com/kobi2187/vmvc", + "method": "git", + "tags": [ + "vmvc", + "dci" + ], + "description": "a skeleton/structure for a variation on the mvc pattern, similar to dci. For command line and gui programs. it's a middle ground between rapid application development and handling software complexity.", + "license": "MIT", + "web": "https://github.com/kobi2187/vmvc" + }, { "name": "arksys", "url": "https://github.com/wolfadex/arksys", From ebe1becd6f49d2c13cdbe467f81cb59746e35ba0 Mon Sep 17 00:00:00 2001 From: Leonardo Mariscal Date: Tue, 6 Nov 2018 13:46:20 -0600 Subject: [PATCH 0829/1381] Changed links to proper repos and tags --- packages.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages.json b/packages.json index f85f863..61779aa 100644 --- a/packages.json +++ b/packages.json @@ -8913,19 +8913,19 @@ }, { "name": "nimgl", - "url": "https://github.com/cavariux/nimgl", + "url": "https://github.com/lmariscal/nimgl", "method": "git", "tags": [ "glfw", - "glew", - "math", + "imgui", "opengl", "bindings", - "gl" + "gl", + "graphics" ], "description": "Nim Game Library", "license": "MIT", - "web": "https://github.com/cavariux/nimgl" + "web": "https://github.com/lmariscal/nimgl" }, { "name": "inim", @@ -9918,7 +9918,7 @@ }, { "name": "figures", - "url": "https://github.com/cavariux/figures", + "url": "https://github.com/lmariscal/figures", "method": "git", "tags": [ "unicode", @@ -9927,7 +9927,7 @@ ], "description": "unicode symbols", "license": "MIT", - "web": "https://github.com/cavariux/figures" + "web": "https://github.com/lmariscal/figures" }, { "name": "ur", From 5c61f51e7bba5ad7f46e776c3b90ad7dfa7fcdea Mon Sep 17 00:00:00 2001 From: Anirudh Date: Wed, 7 Nov 2018 02:58:43 +0530 Subject: [PATCH 0830/1381] Add crap package (#924) * Add crap package * Add missing square brace --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index f85f863..7df656f 100644 --- a/packages.json +++ b/packages.json @@ -11367,5 +11367,19 @@ "description": "HTML & CSS Minify Lib & App based on Regexes & parallel MultiReplaces", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-css-html-minify" + }, + { + "name": "crap", + "url": "https://github.com/icyphox/crap", + "method": "git", + "tags": [ + "rm", + "delete", + "trash", + "files" + ], + "description": "`rm` files without fear", + "license": "MIT", + "web": "https://github.com/icyphox/crap" } ] From a4d77b3e986d7d5aef6c55dd599472e70419b0c3 Mon Sep 17 00:00:00 2001 From: Benjamin Frady Date: Wed, 7 Nov 2018 11:33:59 -0500 Subject: [PATCH 0831/1381] Add algebra parser & evaluator --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9485971..7187f19 100644 --- a/packages.json +++ b/packages.json @@ -11381,5 +11381,19 @@ "description": "`rm` files without fear", "license": "MIT", "web": "https://github.com/icyphox/crap" + }, + { + "name": "algebra", + "url": "https://github.com/ijneb/nim-algebra", + "method": "git", + "tags": [ + "algebra", + "parse", + "evaluate", + "mathematics" + ], + "description": "Algebraic expression parser and evaluator", + "license": "CC0", + "web": "https://github.com/ijneb/nim-algebra" } ] From d20881d3d9dd042d233e61ea31717ccf789f3e88 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Fri, 9 Nov 2018 16:39:05 -0600 Subject: [PATCH 0832/1381] Add package result (#889) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 7187f19..2b3940c 100644 --- a/packages.json +++ b/packages.json @@ -11049,6 +11049,20 @@ "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/xmldomparser" }, + { + "name": "result", + "url": "https://github.com/arnetheduck/nim-result", + "method": "git", + "tags": [ + "library", + "result", + "errors", + "functional" + ], + "description": "Friendly, exception-free value-or-error returns, similar to Option[T]", + "license": "MIT", + "web": "https://github.com/arnetheduck/nim-result" + }, { "name": "asciigraph", "url": "https://github.com/KeepCoolWithCoolidge/asciigraph", From 99a682543e0f75ce2a5bea4e6b5f92d6a63d9ef2 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Sat, 10 Nov 2018 05:51:59 -0700 Subject: [PATCH 0833/1381] add falas (#912) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 2b3940c..bef1c86 100644 --- a/packages.json +++ b/packages.json @@ -7838,6 +7838,20 @@ "license": "MIT", "web": "https://brentp.github.io/hts-nim/" }, + { + "name": "falas", + "url": "https://github.com/brentp/falas", + "method": "git", + "tags": [ + "assembly", + "dna", + "sequence", + "genomics" + ], + "description": "fragment-aware assembler for short reads", + "license": "MIT", + "web": "https://brentp.github.io/falas/falas.html" + }, { "name": "kmer", "url": "https://github.com/brentp/nim-kmer", From 6142b058b9f38930aad343e4b3e9e2c95c3d27be Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sun, 11 Nov 2018 14:16:44 +0200 Subject: [PATCH 0834/1381] Add Status's serialization libraries --- packages.json | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bef1c86..13c238f 100644 --- a/packages.json +++ b/packages.json @@ -5973,6 +5973,31 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-asyncdispatch2" }, + { + "name": "serialization", + "url": "https://github.com/status-im/nim-serialization", + "method": "git", + "tags": [ + "library", + "serialization" + ], + "description": "A modern and extensible serialization framework for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-serialization" + }, + { + "name": "json_serialization", + "url": "https://github.com/status-im/nim-json-serialization", + "method": "git", + "tags": [ + "library", + "json", + "serialization" + ], + "description": "Flexible JSON serialization not relying on run-time type information", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-json-serialization" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", @@ -5980,7 +6005,8 @@ "tags": [ "library", "ethereum", - "rlp" + "rlp", + "serialization" ], "description": "RLP serialization library for Nim", "license": "Apache License 2.0", From 8ad6243e0d0c8693332016e64c02f7b7fc51fe89 Mon Sep 17 00:00:00 2001 From: Anirudh Date: Wed, 14 Nov 2018 00:20:55 +0530 Subject: [PATCH 0835/1381] Added package nicy --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 13c238f..8014290 100644 --- a/packages.json +++ b/packages.json @@ -11449,5 +11449,19 @@ "description": "Algebraic expression parser and evaluator", "license": "CC0", "web": "https://github.com/ijneb/nim-algebra" + }, + { + "name": "nicy", + "url": "https://github.com/icyphox/nicy", + "method": "git", + "tags": [ + "zsh", + "shell", + "prompt", + "git" + ], + "description": "A nice and icy ZSH prompt in Nim", + "license": "MIT", + "web": "https://github.com/icyphox/nicy" } ] From 0addabba6b2893f66231c22226ea886e0dcfc5af Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Thu, 15 Nov 2018 23:22:06 +0200 Subject: [PATCH 0836/1381] Added package loadenv (#921) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8014290..ba3791d 100644 --- a/packages.json +++ b/packages.json @@ -11392,6 +11392,19 @@ "license": "MIT", "web": "https://github.com/jangko/snappy" }, + { + "name": "loadenv", + "url": "https://github.com/xmonader/nim-loadenv", + "method": "git", + "tags": [ + "environment", + "variables", + "env" + ], + "description": "load .env variables", + "license": "MIT", + "web": "https://github.com/xmonader/nim-loadenv" + }, { "name": "osrm", "url": "https://github.com/juancarlospaco/nim-osrm", From e9dfc93c5e0a5ae2b6b37fca245d78114ba2f3b6 Mon Sep 17 00:00:00 2001 From: Michael Krauter Date: Fri, 16 Nov 2018 22:48:27 +0100 Subject: [PATCH 0837/1381] sharedmempool added (#922) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index ba3791d..4fbbb2f 100644 --- a/packages.json +++ b/packages.json @@ -11422,6 +11422,19 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-osrm" }, + { + "name": "sharedmempool", + "url": "https://github.com/mikra01/sharedmempool", + "method": "git", + "tags": [ + "pool", + "memory", + "thread" + ], + "description": "threadsafe memory pool ", + "license": "MIT", + "web": "https://github.com/mikra01/sharedmempool" + }, { "name": "css_html_minify", "url": "https://github.com/juancarlospaco/nim-css-html-minify", From e16ebf7bb8450fbf173e7afc1e3604b182157732 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama <45118249+gmshiba@users.noreply.github.com> Date: Sun, 18 Nov 2018 06:15:04 +0900 Subject: [PATCH 0838/1381] Add package replim (#931) * Added package replim * Update packages.json --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4fbbb2f..ae32400 100644 --- a/packages.json +++ b/packages.json @@ -11489,5 +11489,18 @@ "description": "A nice and icy ZSH prompt in Nim", "license": "MIT", "web": "https://github.com/icyphox/nicy" + }, + { + "name": "replim", + "url": "https://github.com/gmshiba/replim", + "method": "git", + "tags": [ + "repl", + "binary", + "program" + ], + "description": "most quick REPL of nim", + "license": "MIT", + "web": "https://github.com/gmshiba/replim" } ] From 7115565530f4ae2a1ab3ee754618e50335d8cdbf Mon Sep 17 00:00:00 2001 From: Yoshihiro Tanaka Date: Sun, 18 Nov 2018 15:39:27 +0900 Subject: [PATCH 0839/1381] Add backoff --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ae32400..511b1f0 100644 --- a/packages.json +++ b/packages.json @@ -11502,5 +11502,17 @@ "description": "most quick REPL of nim", "license": "MIT", "web": "https://github.com/gmshiba/replim" + }, + { + "name": "backoff", + "url": "https://github.com/CORDEA/backoff", + "method": "git", + "tags": [ + "exponential-backoff", + "backoff" + ], + "description": "Implementation of exponential backoff for nim", + "license": "Apache License 2.0", + "web": "https://github.com/CORDEA/backoff" } ] From 7a33b40539968ec5af6e4430dc49ac7a49509698 Mon Sep 17 00:00:00 2001 From: xmonader Date: Mon, 19 Nov 2018 23:04:54 +0200 Subject: [PATCH 0840/1381] Added package asciitables --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 511b1f0..6257412 100644 --- a/packages.json +++ b/packages.json @@ -11514,5 +11514,19 @@ "description": "Implementation of exponential backoff for nim", "license": "Apache License 2.0", "web": "https://github.com/CORDEA/backoff" + }, + { + "name": "asciitables", + "url": "https://github.com/xmonader/nim-asciitables", + "method": "git", + "tags": [ + "ascii", + "terminal", + "tables", + "cli" + ], + "description": "terminal ascii tables for nim", + "license": "BSD-3-Clause", + "web": "https://github.com/xmonader/nim-asciitables" } ] From e115d21af1ffe7320f14ef1e3ea4def48cc2f6bb Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Tue, 20 Nov 2018 13:34:24 +0200 Subject: [PATCH 0841/1381] Add gara lib --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 6257412..713c5d1 100644 --- a/packages.json +++ b/packages.json @@ -11528,5 +11528,17 @@ "description": "terminal ascii tables for nim", "license": "BSD-3-Clause", "web": "https://github.com/xmonader/nim-asciitables" + }, + { + "name": "gara", + "url": "https://github.com/alehander42/gara", + "method": "git", + "tags": [ + "nim", + "pattern" + ], + "description": "A pattern matching library", + "license": "MIT", + "web": "https://github.com/alehander42/gara" } ] From 03b78246c1606aab0edf3c1cb978f87bf4e5daef Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 21 Nov 2018 15:30:46 +0200 Subject: [PATCH 0842/1381] add confutils --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 6257412..bb15489 100644 --- a/packages.json +++ b/packages.json @@ -5998,6 +5998,18 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-json-serialization" }, + { + "name": "confutils", + "url": "https://github.com/status-im/nim-confutils", + "method": "git", + "tags": [ + "library", + "configuration" + ], + "description": "Simplified handling of command line options and config files", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-confutils" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", From a4b1fabaa6d805cbcf17faa029f6ff4415ec5fb7 Mon Sep 17 00:00:00 2001 From: Chihiro Hasegawa Date: Thu, 22 Nov 2018 08:06:25 +0900 Subject: [PATCH 0843/1381] Added package nish (#934) --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index a22e1af..459cec7 100644 --- a/packages.json +++ b/packages.json @@ -9307,7 +9307,7 @@ "pqcrypto", "signing" ], - "description": "SPHINCS⁺ stateless hash-based signature scheme", + "description": "SPHINCS\u207A stateless hash-based signature scheme", "license": "MIT", "web": "https://github.com/ehmry/nim-sphincs" }, @@ -11515,6 +11515,18 @@ "license": "MIT", "web": "https://github.com/gmshiba/replim" }, + { + "name": "nish", + "url": "https://github.com/owlinux1000/nish", + "method": "git", + "tags": [ + "nish", + "shell" + ], + "description": "A Toy Shell Application", + "license": "MIT", + "web": "https://github.com/owlinux1000/nish" + }, { "name": "backoff", "url": "https://github.com/CORDEA/backoff", From 952d060762c935b93cea9c4193a6c09dd42e48bc Mon Sep 17 00:00:00 2001 From: treeform Date: Fri, 23 Nov 2018 14:35:10 -0800 Subject: [PATCH 0844/1381] Adding pg and ws libraries (#938) --- packages.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/packages.json b/packages.json index 459cec7..7505ee4 100644 --- a/packages.json +++ b/packages.json @@ -11564,5 +11564,28 @@ "description": "A pattern matching library", "license": "MIT", "web": "https://github.com/alehander42/gara" + }, + { + "name": "ws", + "url": "https://github.com/treeform/ws", + "method": "git", + "tags": [ + "websocket" + ], + "description": "Simple WebSocket library for nim.", + "license": "MIT", + "web": "https://github.com/treeform/ws" + }, + { + "name": "pg", + "url": "https://github.com/treeform/pg", + "method": "git", + "tags": [ + "postgresql", + "db" + ], + "description": "Very simple PostgreSQL async api for nim.", + "license": "MIT", + "web": "https://github.com/treeform/pg" } ] From 06d399d75edf44b5326a10b818841003e643de85 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 23 Nov 2018 19:38:44 -0300 Subject: [PATCH 0845/1381] Added package open_elevation (#937) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 7505ee4..99b2522 100644 --- a/packages.json +++ b/packages.json @@ -11553,6 +11553,21 @@ "license": "BSD-3-Clause", "web": "https://github.com/xmonader/nim-asciitables" }, + { + "name": "open_elevation", + "url": "https://github.com/juancarlospaco/nim-open-elevation", + "method": "git", + "tags": [ + "openstreetmap", + "geo", + "elevation", + "multisync", + "async" + ], + "description": "OpenStreetMap Elevation API MultiSync Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-open-elevation" + }, { "name": "gara", "url": "https://github.com/alehander42/gara", From c66eff46e318dc8a6cc6ff13472995319193865d Mon Sep 17 00:00:00 2001 From: Matt Haggard Date: Fri, 23 Nov 2018 15:40:26 -0700 Subject: [PATCH 0846/1381] Add argparse (#915) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 99b2522..84b9435 100644 --- a/packages.json +++ b/packages.json @@ -11213,6 +11213,19 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-usagov" }, + { + "name": "argparse", + "url": "https://github.com/iffy/nim-argparse", + "method": "git", + "tags": [ + "cli", + "argparse", + "optparse" + ], + "description": "WIP strongly-typed argument parser with sub command support", + "license": "MIT", + "doc": "https://www.iffycan.com/nim-argparse/argparse.html" + }, { "name": "markdown", "url": "https://github.com/soasme/nim-markdown", From 8549d54087933a7658dbd4dfe2ab311fce42f691 Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Sun, 25 Nov 2018 13:53:00 -0500 Subject: [PATCH 0847/1381] Added niledb. --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 84b9435..3ebca0a 100644 --- a/packages.json +++ b/packages.json @@ -11615,5 +11615,16 @@ "description": "Very simple PostgreSQL async api for nim.", "license": "MIT", "web": "https://github.com/treeform/pg" + }, + { + "name": "niledb", + "url": "https://github.com/JeffersonLab/niledb.git", + "method": "git", + "tags": [ + "db" + ], + "description": "Key/Value storage into a fast file-hash", + "license": "MIT", + "web": "https://github.com/JeffersonLab/niledb.git" } ] From cc3b1f3634eeb16bb61128f603dcdd5fd49290ef Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 26 Nov 2018 15:04:55 +0100 Subject: [PATCH 0848/1381] Added package haraka (#941) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3ebca0a..906b3f7 100644 --- a/packages.json +++ b/packages.json @@ -11626,5 +11626,17 @@ "description": "Key/Value storage into a fast file-hash", "license": "MIT", "web": "https://github.com/JeffersonLab/niledb.git" + }, + { + "name": "haraka", + "url": "https://github.com/ehmry/nim-haraka", + "method": "git", + "tags": [ + "hash", + "haraka" + ], + "description": "Haraka v2 short-input hash function", + "license": "MIT", + "web": "https://github.com/ehmry/nim-haraka" } ] From 4d03a3d0d46df671597320b3921e1d6ff0865689 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 26 Nov 2018 15:33:32 +0100 Subject: [PATCH 0849/1381] Added package siphash (#940) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 906b3f7..709f024 100644 --- a/packages.json +++ b/packages.json @@ -11627,6 +11627,18 @@ "license": "MIT", "web": "https://github.com/JeffersonLab/niledb.git" }, + { + "name": "siphash", + "url": "https://github.com/ehmry/nim-siphash", + "method": "git", + "tags": [ + "hash", + "siphash" + ], + "description": "SipHash, a pseudorandom function optimized for short messages.", + "license": "GPLv3", + "web": "https://github.com/ehmry/nim-siphash" + }, { "name": "haraka", "url": "https://github.com/ehmry/nim-haraka", From 3c32b40fdc1e8b7feee0b643fbe1ac5611e8cc0a Mon Sep 17 00:00:00 2001 From: "Shuu.N" Date: Tue, 27 Nov 2018 01:45:59 +0900 Subject: [PATCH 0850/1381] Added package moe (#946) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 709f024..7b24d9f 100644 --- a/packages.json +++ b/packages.json @@ -11650,5 +11650,20 @@ "description": "Haraka v2 short-input hash function", "license": "MIT", "web": "https://github.com/ehmry/nim-haraka" + }, + { + "name": "moe", + "url": "https://github.com/fox0430/moe", + "method": "git", + "tags": [ + "console", + "command-line", + "editor", + "text", + "cli" + ], + "description": "A command lined based text editor", + "license": "GPLv3", + "web": "https://github.com/fox0430/moe" } ] From 6a9466883524fc342639e7a83e0bd279b2d6c963 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 26 Nov 2018 17:57:00 +0100 Subject: [PATCH 0851/1381] Added package genode (#942) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 7b24d9f..8b1535b 100644 --- a/packages.json +++ b/packages.json @@ -11651,6 +11651,18 @@ "license": "MIT", "web": "https://github.com/ehmry/nim-haraka" }, + { + "name": "genode", + "url": "https://github.com/ehmry/nim-genode", + "method": "git", + "tags": [ + "genode", + "system" + ], + "description": "System libraries for the Genode Operating System Framework", + "license": "AGPLv3", + "web": "https://github.com/ehmry/nim-genode" + }, { "name": "moe", "url": "https://github.com/fox0430/moe", From 944385a80c74f7e64cf6092dc563396cae0090fa Mon Sep 17 00:00:00 2001 From: Zachary Carter Date: Tue, 27 Nov 2018 02:33:55 -0500 Subject: [PATCH 0852/1381] Add bgfxdotnim (#943) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 8b1535b..e71744b 100644 --- a/packages.json +++ b/packages.json @@ -11616,6 +11616,22 @@ "license": "MIT", "web": "https://github.com/treeform/pg" }, + { + "name": "bgfxdotnim", + "url": "https://github.com/zacharycarter/bgfx.nim", + "method": "git", + "tags": [ + "bgfx", + "3d", + "vulkan", + "opengl", + "metal", + "directx" + ], + "description": "bindings to bgfx c99 api", + "license": "MIT", + "web": "https://github.com/zacharycarter/bgfx.nim" + }, { "name": "niledb", "url": "https://github.com/JeffersonLab/niledb.git", From 72bc9046c69faa879a678834e311cd140d8fe345 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Tue, 27 Nov 2018 04:43:32 -0300 Subject: [PATCH 0853/1381] Add Gatabase (#947) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e71744b..dd9862a 100644 --- a/packages.json +++ b/packages.json @@ -11693,5 +11693,19 @@ "description": "A command lined based text editor", "license": "GPLv3", "web": "https://github.com/fox0430/moe" + }, + { + "name": "gatabase", + "url": "https://github.com/juancarlospaco/nim-gatabase", + "method": "git", + "tags": [ + "database", + "orm", + "postgres", + "sql" + ], + "description": "Postgres Database ORM for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-gatabase" } ] From 7d0783bfbc64c6d746cb82670e010c72162afe78 Mon Sep 17 00:00:00 2001 From: Michael Hart Date: Fri, 30 Nov 2018 03:07:07 -0500 Subject: [PATCH 0854/1381] Added package awslambda (#949) --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index dd9862a..4480117 100644 --- a/packages.json +++ b/packages.json @@ -9307,7 +9307,7 @@ "pqcrypto", "signing" ], - "description": "SPHINCS\u207A stateless hash-based signature scheme", + "description": "SPHINCS⁺ stateless hash-based signature scheme", "license": "MIT", "web": "https://github.com/ehmry/nim-sphincs" }, @@ -11707,5 +11707,17 @@ "description": "Postgres Database ORM for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-gatabase" + }, + { + "name": "awslambda", + "url": "https://github.com/lambci/awslambda.nim", + "method": "git", + "tags": [ + "aws", + "lambda" + ], + "description": "A package to compile nim functions for AWS Lambda", + "license": "MIT", + "web": "https://github.com/lambci/awslambda.nim" } ] From 6df91b7c2a7ff24afdf3264ed81b45ccee224d98 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 1 Dec 2018 16:08:22 +0000 Subject: [PATCH 0855/1381] Adds vec package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4480117..374eadf 100644 --- a/packages.json +++ b/packages.json @@ -11719,5 +11719,18 @@ "description": "A package to compile nim functions for AWS Lambda", "license": "MIT", "web": "https://github.com/lambci/awslambda.nim" + }, + { + "name": "vec", + "url": "https://github.com/dom96/vec", + "method": "git", + "tags": [ + "vector", + "library", + "simple" + ], + "description": "A very simple vector library", + "license": "MIT", + "web": "https://github.com/dom96/vec" } ] From 123992332eb4084673018fc2ee439551d5a949d7 Mon Sep 17 00:00:00 2001 From: Matceporial <36767692+Matceporial@users.noreply.github.com> Date: Sat, 1 Dec 2018 19:42:29 +0300 Subject: [PATCH 0856/1381] add urand and timespec_get (#950) --- packages.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/packages.json b/packages.json index 374eadf..1186987 100644 --- a/packages.json +++ b/packages.json @@ -11708,6 +11708,31 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-gatabase" }, + { + "name": "timespec_get", + "url": "https://github.com/Matceporial/nim-timespec_get", + "method": "git", + "tags": [ + "time", + "timespec_get" + ], + "description": "Nanosecond-percision time using timespec_get", + "license": "0BSD", + "web": "https://github.com/Matceporial/nim-timespec_get" + }, + { + "name": "urand", + "url": "https://github.com/Matceporial/nim-urand", + "method": "git", + "tags": [ + "random", + "urandom", + "crypto" + ], + "description": "Simple method of obtaining secure random numbers from the OS", + "license": "MIT", + "web": "https://github.com/Matceporial/nim-urand" + }, { "name": "awslambda", "url": "https://github.com/lambci/awslambda.nim", From 788bcf6211843daafb09c30597bf30ae6a07f3c5 Mon Sep 17 00:00:00 2001 From: Zachary Carter Date: Sat, 1 Dec 2018 14:27:06 -0500 Subject: [PATCH 0857/1381] Added package nimgui (#951) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1186987..75f741f 100644 --- a/packages.json +++ b/packages.json @@ -11757,5 +11757,18 @@ "description": "A very simple vector library", "license": "MIT", "web": "https://github.com/dom96/vec" + }, + { + "name": "nimgui", + "url": "https://github.com/zacharycarter/nimgui", + "method": "git", + "tags": [ + "imgui", + "gui", + "game" + ], + "description": "bindings to cimgui - https://github.com/cimgui/cimgui", + "license": "MIT", + "web": "https://github.com/zacharycarter/nimgui" } ] From c2cd467f65750f0fdd4e4840bf66a63f4d744634 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 2 Dec 2018 14:09:39 +0000 Subject: [PATCH 0858/1381] Take over LMDB wrapper (#952) The previous project is not maintained and the author agreed: https://github.com/fowlmouth/lmdb.nim/issues/1 --- packages.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 75f741f..b167605 100644 --- a/packages.json +++ b/packages.json @@ -3371,15 +3371,16 @@ }, { "name": "lmdb", - "url": "https://github.com/fowlmouth/lmdb.nim", + "url": "https://github.com/FedericoCeratto/nim-lmdb", "method": "git", "tags": [ "wrapper", - "lmdb" + "lmdb", + "key-value" ], "description": "A wrapper for LMDB the Lightning Memory-Mapped Database", - "license": "MIT", - "web": "https://github.com/fowlmouth/lmdb.nim" + "license": "OpenLDAP", + "web": "https://github.com/FedericoCeratto/nim-lmdb" }, { "name": "zip", From 369cf81b4ccb2317aa125072259e564e778efa11 Mon Sep 17 00:00:00 2001 From: technicallyagd <43739261+technicallyagd@users.noreply.github.com> Date: Wed, 5 Dec 2018 01:07:30 +0800 Subject: [PATCH 0859/1381] Add package unpack (#953) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index b167605..2956008 100644 --- a/packages.json +++ b/packages.json @@ -11771,5 +11771,22 @@ "description": "bindings to cimgui - https://github.com/cimgui/cimgui", "license": "MIT", "web": "https://github.com/zacharycarter/nimgui" + }, + { + "name": "unpack", + "url": "https://github.com/technicallyagd/unpack", + "method": "git", + "tags": [ + "unpack", + "seq", + "array", + "object", + "destructuring", + "destructure", + "unpacking" + ], + "description": "Array/Sequence/Object destructuring/unpacking macro", + "license": "MIT", + "web": "https://github.com/technicallyagd/unpack" } ] From 3bde634751c58e9097d161e4b1e91fdebbff9c4c Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Wed, 5 Dec 2018 10:39:16 -0600 Subject: [PATCH 0860/1381] Added package nimfastText --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 2956008..8c8ea54 100644 --- a/packages.json +++ b/packages.json @@ -11788,5 +11788,19 @@ "description": "Array/Sequence/Object destructuring/unpacking macro", "license": "MIT", "web": "https://github.com/technicallyagd/unpack" + }, + { + "name": "nimfastText", + "url": "https://github.com/genotrance/nimfastText", + "method": "git", + "tags": [ + "fasttext", + "classification", + "text", + "wrapper" + ], + "description": "fastText wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimfastText" } ] From 10f4f2391f803be60adbe433446a493d318310ce Mon Sep 17 00:00:00 2001 From: genotrance Date: Wed, 5 Dec 2018 16:00:54 -0600 Subject: [PATCH 0861/1381] Added package nimzbar (#919) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 2956008..d9bd2c4 100644 --- a/packages.json +++ b/packages.json @@ -11502,6 +11502,20 @@ "license": "CC0", "web": "https://github.com/ijneb/nim-algebra" }, + { + "name": "nimzbar", + "url": "https://github.com/genotrance/nimzbar", + "method": "git", + "tags": [ + "zbar", + "barcode", + "bar", + "code" + ], + "description": "zbar wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimzbar" + }, { "name": "nicy", "url": "https://github.com/icyphox/nicy", From 2930b5871aa7be954fe0d812e33e166b5481b039 Mon Sep 17 00:00:00 2001 From: Mat Taylor Date: Fri, 7 Dec 2018 01:34:25 -0800 Subject: [PATCH 0862/1381] Add 'elvis' package (#956) --- packages.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages.json b/packages.json index d9bd2c4..111dd3b 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,13 @@ [ + { + "name": "elvis", + "url": "https://github.com/mattaylor/elvis", + "method": "git", + "tags": [ "operator", "elvis", "ternary", "template", "truthy", "falsy", "exception", "none", "null", "nil", "0", "NaN", "coalesce" ], + "description": "The elvis package implements a 'truthy', 'ternary' and a 'coalesce' operator to Nim as syntactic sugar for working with conditional expressions", + "license": "MIT", + "web": "https://github.com/mattaylor/elvis" + }, { "name": "nimrun", "url": "https://github.com/lee-b/nimrun", From f5fc73438aaee944aca4de22da782131cd03296e Mon Sep 17 00:00:00 2001 From: technicallyagd <43739261+technicallyagd@users.noreply.github.com> Date: Mon, 10 Dec 2018 19:38:56 +0800 Subject: [PATCH 0863/1381] Added package ringDeque (#960) --- packages.json | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 111dd3b..1b064c4 100644 --- a/packages.json +++ b/packages.json @@ -1,13 +1,27 @@ [ - { + { "name": "elvis", "url": "https://github.com/mattaylor/elvis", "method": "git", - "tags": [ "operator", "elvis", "ternary", "template", "truthy", "falsy", "exception", "none", "null", "nil", "0", "NaN", "coalesce" ], + "tags": [ + "operator", + "elvis", + "ternary", + "template", + "truthy", + "falsy", + "exception", + "none", + "null", + "nil", + "0", + "NaN", + "coalesce" + ], "description": "The elvis package implements a 'truthy', 'ternary' and a 'coalesce' operator to Nim as syntactic sugar for working with conditional expressions", "license": "MIT", "web": "https://github.com/mattaylor/elvis" - }, + }, { "name": "nimrun", "url": "https://github.com/lee-b/nimrun", @@ -11811,5 +11825,19 @@ "description": "Array/Sequence/Object destructuring/unpacking macro", "license": "MIT", "web": "https://github.com/technicallyagd/unpack" + }, + { + "name": "ringDeque", + "url": "https://github.com/technicallyagd/ringDeque", + "method": "git", + "tags": [ + "deque", + "DoublyLinkedRing", + "utility", + "python" + ], + "description": "deque implementatoin using DoublyLinkedRing", + "license": "MIT", + "web": "https://github.com/technicallyagd/ringDeque" } ] From b11e98519b2f71fb036ca62b23b6ed81f12a582f Mon Sep 17 00:00:00 2001 From: genotrance Date: Tue, 11 Dec 2018 05:50:28 -0600 Subject: [PATCH 0864/1381] Added package nimfuzzy (#961) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1b064c4..576fae7 100644 --- a/packages.json +++ b/packages.json @@ -11839,5 +11839,19 @@ "description": "deque implementatoin using DoublyLinkedRing", "license": "MIT", "web": "https://github.com/technicallyagd/ringDeque" + }, + { + "name": "nimfuzzy", + "url": "https://github.com/genotrance/nimfuzzy", + "method": "git", + "tags": [ + "fuzzy", + "search", + "match", + "fts" + ], + "description": "Fuzzy search wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimfuzzy" } ] From 35eede404242beba9b76cade2d24f3722d17a632 Mon Sep 17 00:00:00 2001 From: Mat Taylor Date: Wed, 12 Dec 2018 10:34:08 -0800 Subject: [PATCH 0865/1381] adding whip server (#964) --- packages.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 576fae7..8f511fc 100644 --- a/packages.json +++ b/packages.json @@ -1,5 +1,14 @@ [ - { + { + "name": "whip", + "url": "https://github.com/mattaylor/whip", + "method": "git", + "tags": [ "http", "rest", "server", "httpbeast", "nest", "fast" ], + "description": "Whip is high performance web application server based on httpbeast a nest for redix tree based routing with some extra opmtizations.", + "license": "MIT", + "web": "https://github.com/mattaylor/whip" + }, + { "name": "elvis", "url": "https://github.com/mattaylor/elvis", "method": "git", From dd998dcd5b3d80950686c7ecd1dbe7f22430897c Mon Sep 17 00:00:00 2001 From: genotrance Date: Thu, 13 Dec 2018 18:20:52 -0600 Subject: [PATCH 0866/1381] Add tree-sitter and nimterop (#957) --- packages.json | 301 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 301 insertions(+) diff --git a/packages.json b/packages.json index 8f511fc..9d4c25f 100644 --- a/packages.json +++ b/packages.json @@ -11835,6 +11835,307 @@ "license": "MIT", "web": "https://github.com/technicallyagd/unpack" }, + { + "name": "treesitter", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter", + "method": "git", + "tags": [ + "tree-sitter", + "parser", + "language", + "code" + ], + "description": "Nim wrapper of the tree-sitter incremental parsing library", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_agda", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_agda", + "method": "git", + "tags": [ + "tree-sitter", + "agda", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Agda language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_bash", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_bash", + "method": "git", + "tags": [ + "tree-sitter", + "bash", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Bash language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_c", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_c", + "method": "git", + "tags": [ + "tree-sitter", + "c", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for C language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_c_sharp", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_c_sharp", + "method": "git", + "tags": [ + "tree-sitter", + "C#", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for C# language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_cpp", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_cpp", + "method": "git", + "tags": [ + "tree-sitter", + "cpp", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for C++ language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_css", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_css", + "method": "git", + "tags": [ + "tree-sitter", + "css", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for CSS language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_go", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_go", + "method": "git", + "tags": [ + "tree-sitter", + "go", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Go language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_haskell", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_haskell", + "method": "git", + "tags": [ + "tree-sitter", + "haskell", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Haskell language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_html", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_html", + "method": "git", + "tags": [ + "tree-sitter", + "html", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for HTML language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_java", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_java", + "method": "git", + "tags": [ + "tree-sitter", + "java", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Java language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_javascript", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_javascript", + "method": "git", + "tags": [ + "tree-sitter", + "javascript", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Javascript language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_ocaml", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_ocaml", + "method": "git", + "tags": [ + "tree-sitter", + "ocaml", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for OCaml language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_php", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_php", + "method": "git", + "tags": [ + "tree-sitter", + "php", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for PHP language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_python", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_python", + "method": "git", + "tags": [ + "tree-sitter", + "python", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Python language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_ruby", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_ruby", + "method": "git", + "tags": [ + "tree-sitter", + "ruby", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Ruby language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_rust", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_rust", + "method": "git", + "tags": [ + "tree-sitter", + "rust", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Rust language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_scala", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_scala", + "method": "git", + "tags": [ + "tree-sitter", + "scala", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Scala language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "treesitter_typescript", + "url": "https://github.com/genotrance/nimtreesitter?subdir=treesitter_typescript", + "method": "git", + "tags": [ + "tree-sitter", + "typescript", + "parser", + "language", + "code" + ], + "description": "Nim wrapper for Typescript language support within tree-sitter", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, + { + "name": "nimterop", + "url": "https://github.com/genotrance/nimterop", + "method": "git", + "tags": [ + "c", + "c++", + "c2nim", + "interop", + "parser", + "language", + "code" + ], + "description": "Nimterop makes C/C++ interop within Nim seamless", + "license": "MIT", + "web": "https://github.com/genotrance/nimtreesitter" + }, { "name": "ringDeque", "url": "https://github.com/technicallyagd/ringDeque", From 289df8c202735b3bca9b832455ad437dc3197f91 Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Mon, 17 Dec 2018 14:12:21 +0200 Subject: [PATCH 0867/1381] Added package nimassets (#965) --- packages.json | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 9d4c25f..b67ddc8 100644 --- a/packages.json +++ b/packages.json @@ -1,14 +1,21 @@ [ - { + { "name": "whip", "url": "https://github.com/mattaylor/whip", "method": "git", - "tags": [ "http", "rest", "server", "httpbeast", "nest", "fast" ], + "tags": [ + "http", + "rest", + "server", + "httpbeast", + "nest", + "fast" + ], "description": "Whip is high performance web application server based on httpbeast a nest for redix tree based routing with some extra opmtizations.", "license": "MIT", "web": "https://github.com/mattaylor/whip" - }, - { + }, + { "name": "elvis", "url": "https://github.com/mattaylor/elvis", "method": "git", @@ -12126,8 +12133,8 @@ "tags": [ "c", "c++", - "c2nim", - "interop", + "c2nim", + "interop", "parser", "language", "code" @@ -12163,5 +12170,19 @@ "description": "Fuzzy search wrapper for Nim", "license": "MIT", "web": "https://github.com/genotrance/nimfuzzy" + }, + { + "name": "nimassets", + "url": "https://github.com/xmonader/nimassets", + "method": "git", + "tags": [ + "assets", + "bundle", + "go-bindata", + "resources" + ], + "description": "bundle your assets to a nim", + "license": "MIT", + "web": "https://github.com/xmonader/nimassets" } ] From b9648edf770aae5cee4fbc1b66773a55f2fead8e Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 19 Dec 2018 12:41:41 +0200 Subject: [PATCH 0868/1381] add faststreams and std_shims --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index b67ddc8..2651543 100644 --- a/packages.json +++ b/packages.json @@ -6050,6 +6050,33 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-confutils" }, + { + "name": "std_shims", + "url": "https://github.com/status-im/nim-std-shims", + "method": "git", + "tags": [ + "library", + "backports", + "shims" + ], + "description": "APIs available in the latests version of Nim, backported to older stable releases", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-std-shims" + }, + { + "name": "faststreams", + "url": "https://github.com/status-im/nim-faststreams", + "method": "git", + "tags": [ + "library", + "I/O", + "memory-mapping", + "streams" + ], + "description": "RLP serialization library for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-faststreams" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", From 58de6c4a4ccbc269e8e2b0f55aad1e5bbc0d9792 Mon Sep 17 00:00:00 2001 From: Constantine Molchanov Date: Wed, 19 Dec 2018 18:44:47 +0400 Subject: [PATCH 0869/1381] Added package loco (#967) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 2651543..b1e1d23 100644 --- a/packages.json +++ b/packages.json @@ -12211,5 +12211,19 @@ "description": "bundle your assets to a nim", "license": "MIT", "web": "https://github.com/xmonader/nimassets" + }, + { + "name": "loco", + "url": "https://github.com/moigagoo/loco", + "method": "git", + "tags": [ + "localization", + "translation", + "internationalization", + "i18n" + ], + "description": "Localization package for Nim.", + "license": "MIT", + "web": "https://github.com/moigagoo/loco" } ] From d62e93b1ce59cd3d342e57ffc5f83b71c2e590e5 Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Thu, 20 Dec 2018 07:26:13 -0700 Subject: [PATCH 0870/1381] variantkey (#968) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index b1e1d23..fef6877 100644 --- a/packages.json +++ b/packages.json @@ -7914,6 +7914,18 @@ "license": "Apache License 2.0", "web": "https://github.com/edubart/arraymancer-vision" }, + { + "name": "variantkey", + "url": "https://github.com/brentp/variantkey-nim", + "method": "git", + "tags": [ + "vcf", + "variant", + "genomics" + ], + "description": "encode/decode variants to/from uint64", + "license": "MIT" + }, { "name": "genoiser", "url": "https://github.com/brentp/genoiser", From e12f84af10c245f4a43ab94f608337b459861ab0 Mon Sep 17 00:00:00 2001 From: h3rald Date: Fri, 21 Dec 2018 19:01:53 +0100 Subject: [PATCH 0871/1381] Added package nim_miniz --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fef6877..6d49999 100644 --- a/packages.json +++ b/packages.json @@ -12237,5 +12237,19 @@ "description": "Localization package for Nim.", "license": "MIT", "web": "https://github.com/moigagoo/loco" + }, + { + "name": "nim_miniz", + "url": "https://github.com/h3rald/nim-miniz", + "method": "git", + "tags": [ + "zip", + "compression", + "wrapper", + "miniz" + ], + "description": "Nim wrapper for miniz", + "license": "MIT", + "web": "https://github.com/h3rald/nim-miniz" } ] From 62549677db1c0edb7ef459fa8b96d29465d20c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Thu, 27 Dec 2018 12:00:08 +0100 Subject: [PATCH 0872/1381] "bncurve" package (#970) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 6d49999..39ffeea 100644 --- a/packages.json +++ b/packages.json @@ -12251,5 +12251,17 @@ "description": "Nim wrapper for miniz", "license": "MIT", "web": "https://github.com/h3rald/nim-miniz" + }, + { + "name": "bncurve", + "url": "https://github.com/status-im/nim-bncurve", + "method": "git", + "tags": [ + "library", + "cryptography" + ], + "description": "pure Nim implementation of Barreto-Naehrig pairing-friendly elliptic curve cryptography", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-bncurve" } ] From 2496404a491250214d4a0496ce1f9cbe46ec4984 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 28 Dec 2018 11:12:12 -0300 Subject: [PATCH 0873/1381] Added package unsplash (#971) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 39ffeea..4aa3879 100644 --- a/packages.json +++ b/packages.json @@ -12263,5 +12263,21 @@ "description": "pure Nim implementation of Barreto-Naehrig pairing-friendly elliptic curve cryptography", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-bncurve" + }, + { + "name": "unsplash", + "url": "https://github.com/juancarlospaco/nim-unsplash", + "method": "git", + "tags": [ + "unsplash", + "photos", + "images", + "async", + "multisync", + "photography" + ], + "description": "Unsplash API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-unsplash" } ] From ccd0fccd7beaa1c56bb796bc6501d469942e0ff2 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 28 Dec 2018 13:55:00 -0300 Subject: [PATCH 0874/1381] Added package biblioteca_guarrilla (#928) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4aa3879..6592f1d 100644 --- a/packages.json +++ b/packages.json @@ -11580,6 +11580,19 @@ "license": "CC0", "web": "https://github.com/ijneb/nim-algebra" }, + { + "name": "biblioteca_guarrilla", + "url": "https://github.com/juancarlospaco/biblioteca-guarrilla", + "method": "git", + "tags": [ + "books", + "calibre", + "jester" + ], + "description": "Simple web to share books, Calibre, Jester, Spectre CSS, No JavaScript, WebP & ZIP to reduce bandwidth", + "license": "GPL", + "web": "https://github.com/juancarlospaco/biblioteca-guarrilla" + }, { "name": "nimzbar", "url": "https://github.com/genotrance/nimzbar", From 245def8e44c06679b2e02dbad6775f7c99ef52b4 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sun, 30 Dec 2018 10:06:59 -0300 Subject: [PATCH 0875/1381] Added package steam (#972) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 3d7d87b..f3d43f6 100644 --- a/packages.json +++ b/packages.json @@ -12306,5 +12306,20 @@ "description": "Unsplash API Client for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-unsplash" + }, + { + "name": "steam", + "url": "https://github.com/juancarlospaco/nim-steam", + "method": "git", + "tags": [ + "steam", + "game", + "gaming", + "async", + "multisync" + ], + "description": "Steam API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-steam" } ] From b4dc90c531ea5ff2ba4b5754eb375a20e554c89f Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sun, 30 Dec 2018 14:44:35 -0300 Subject: [PATCH 0876/1381] Added package itchio (#973) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f3d43f6..c731cd4 100644 --- a/packages.json +++ b/packages.json @@ -12321,5 +12321,20 @@ "description": "Steam API Client for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-steam" + }, + { + "name": "itchio", + "url": "https://github.com/juancarlospaco/nim-itchio", + "method": "git", + "tags": [ + "itchio", + "game", + "gaming", + "async", + "multisync" + ], + "description": "itch.io API Client for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-itchio" } ] From db60c4b295c4f7ce312b4c42c75bcd3da32d6820 Mon Sep 17 00:00:00 2001 From: MaxUNof Date: Fri, 4 Jan 2019 17:53:17 +0300 Subject: [PATCH 0877/1381] Update packages.json --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c731cd4..5f54c91 100644 --- a/packages.json +++ b/packages.json @@ -12336,5 +12336,19 @@ "description": "itch.io API Client for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-itchio" + }, + { + "name": "gurl", + "url": "https://github.com/MaxUNof/gurl", + "method": "git", + "tags": [ + "tags", + "http", + "generating", + "url" + ], + "description": "A little lib for generating URL with args.", + "license": "MIT", + "web": "https://github.com/MaxUNof/gurl" } ] From ec99bc7067f9cb8e82f304b480f6a54f5ff10496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Nihlg=C3=A5rd?= Date: Sat, 5 Jan 2019 10:44:50 +0100 Subject: [PATCH 0878/1381] Add tiny_sqlite (#978) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 5f54c91..189b993 100644 --- a/packages.json +++ b/packages.json @@ -12350,5 +12350,17 @@ "description": "A little lib for generating URL with args.", "license": "MIT", "web": "https://github.com/MaxUNof/gurl" + }, + { + "name": "tiny_sqlite", + "url": "https://github.com/GULPF/tiny_sqlite", + "method": "git", + "tags": [ + "database", + "sqlite" + ], + "description": "A thin SQLite wrapper with proper type safety", + "license": "MIT", + "web": "https://github.com/GULPF/tiny_sqlite" } ] From d77c43bb4d720417770d285a30ce0594e9ac7c23 Mon Sep 17 00:00:00 2001 From: c-blake Date: Sat, 5 Jan 2019 04:57:55 -0500 Subject: [PATCH 0879/1381] Added package suggest (#976) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 189b993..c316261 100644 --- a/packages.json +++ b/packages.json @@ -12337,6 +12337,19 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-itchio" }, + { + "name": "suggest", + "url": "https://github.com/c-blake/suggest.git", + "method": "git", + "tags": [ + "library", + "spell-check", + "edit-distance" + ], + "description": "mmap-persistent SymSpell spell checking algorithm", + "license": "MIT", + "web": "https://github.com/c-blake/suggest.git" + }, { "name": "gurl", "url": "https://github.com/MaxUNof/gurl", From bae8f01b1f39eeab3709b21dfe228fbdf9be65b1 Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama <45118249+gmshiba@users.noreply.github.com> Date: Sat, 5 Jan 2019 19:16:40 +0900 Subject: [PATCH 0880/1381] Added package nsh (#959) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index c316261..b4bfadf 100644 --- a/packages.json +++ b/packages.json @@ -11894,6 +11894,18 @@ "license": "MIT", "web": "https://github.com/technicallyagd/unpack" }, + { + "name": "nsh", + "url": "https://github.com/gmshiba/nish", + "method": "git", + "tags": [ + "shell", + "repl" + ], + "description": "nsh: Nim SHell(cross platform)", + "license": "MIT", + "web": "https://github.com/gmshiba/nish" + }, { "name": "nimfastText", "url": "https://github.com/genotrance/nimfastText", From f94be6f9720baf8f8459d0ae900686979d44732e Mon Sep 17 00:00:00 2001 From: narimiran Date: Sat, 5 Jan 2019 11:39:51 +0100 Subject: [PATCH 0881/1381] remove duplicates and alias "nim-*" packages, fixes #954 --- packages.json | 89 +++++++++++---------------------------------------- 1 file changed, 18 insertions(+), 71 deletions(-) diff --git a/packages.json b/packages.json index b4bfadf..3159b83 100644 --- a/packages.json +++ b/packages.json @@ -269,6 +269,10 @@ }, { "name": "nim-locale", + "alias": "locale" + }, + { + "name": "locale", "url": "https://github.com/Amrykid/nim-locale/", "method": "git", "tags": [ @@ -328,16 +332,7 @@ }, { "name": "chipmunk", - "url": "https://github.com/fowlmouth/nimrod-chipmunk/", - "method": "git", - "tags": [ - "library", - "physics", - "game" - ], - "description": "Bindings for Chipmunk2D 6.x physics library (for backwards compatibility)", - "license": "MIT", - "web": "https://github.com/fowlmouth/nimrod-chipmunk" + "alias": "chipmunk6" }, { "name": "chipmunk6", @@ -386,6 +381,10 @@ }, { "name": "nim-ao", + "alias": "ao" + }, + { + "name": "ao", "url": "https://github.com/ephja/nim-ao", "method": "git", "tags": [ @@ -816,20 +815,7 @@ }, { "name": "nim-ogg", - "url": "https://bitbucket.org/BitPuffin/nim-ogg", - "method": "hg", - "tags": [ - "library", - "wrapper", - "binding", - "audio", - "sound", - "video", - "metadata", - "media" - ], - "description": "Binding to libogg", - "license": "CC0" + "alias": "ogg" }, { "name": "ogg", @@ -850,19 +836,7 @@ }, { "name": "nim-vorbis", - "url": "https://bitbucket.org/BitPuffin/nim-vorbis", - "method": "hg", - "tags": [ - "library", - "wrapper", - "binding", - "audio", - "sound", - "metadata", - "media" - ], - "description": "Binding to libvorbis", - "license": "CC0" + "alias": "vorbis" }, { "name": "vorbis", @@ -882,19 +856,7 @@ }, { "name": "nim-portaudio", - "url": "https://bitbucket.org/BitPuffin/nim-portaudio", - "method": "hg", - "tags": [ - "library", - "wrapper", - "binding", - "audio", - "sound", - "media", - "io" - ], - "description": "Binding to portaudio", - "license": "CC0" + "alias": "portaudio" }, { "name": "portaudio", @@ -2013,16 +1975,7 @@ }, { "name": "nim-libclang", - "url": "https://github.com/cowboy-coders/nim-libclang.git", - "method": "git", - "tags": [ - "wrapper", - "bindings", - "clang" - ], - "description": "Please use libclang instead.", - "license": "MIT", - "web": "https://github.com/cowboy-coders/nim-libclang" + "alias": "libclang" }, { "name": "nimqml", @@ -2702,6 +2655,10 @@ }, { "name": "nim-geocoding", + "alias": "geocoding" + }, + { + "name": "geocoding", "url": "https://github.com/saratchandra92/nim-geocoding", "method": "git", "tags": [ @@ -4776,17 +4733,7 @@ }, { "name": "nimyaml", - "url": "https://github.com/flyx/NimYAML", - "method": "git", - "tags": [ - "serialization", - "parsing", - "library", - "yaml" - ], - "description": "YAML 1.2 implementation for Nim", - "license": "MIT", - "web": "http://flyx.github.io/NimYAML/" + "alias": "yaml" }, { "name": "jsmn", From afdefde4e02ab5b16c89d3532089199e8f41e9ff Mon Sep 17 00:00:00 2001 From: geotre Date: Sat, 5 Jan 2019 14:10:20 +0000 Subject: [PATCH 0882/1381] Added package wren (#977) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b4bfadf..abf8c61 100644 --- a/packages.json +++ b/packages.json @@ -12376,6 +12376,19 @@ "license": "MIT", "web": "https://github.com/MaxUNof/gurl" }, + { + "name": "wren", + "url": "https://github.com/geotre/wren", + "method": "git", + "tags": [ + "wren", + "scripting", + "interpreter" + ], + "description": "A nim wrapper for Wren, an embedded scripting language", + "license": "MIT", + "web": "https://github.com/geotre/wren" + }, { "name": "tiny_sqlite", "url": "https://github.com/GULPF/tiny_sqlite", From 4969f2cebd117dac52b5b24f51c4353258a8bc5b Mon Sep 17 00:00:00 2001 From: zah Date: Sun, 6 Jan 2019 12:28:20 +0200 Subject: [PATCH 0883/1381] Update the description of bncurve (#981) --- packages.json | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/packages.json b/packages.json index abf8c61..8f5f21a 100644 --- a/packages.json +++ b/packages.json @@ -6077,6 +6077,21 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-faststreams" }, + { + "name": "bncurve", + "url": "https://github.com/status-im/nim-bncurve", + "method": "git", + "tags": [ + "library", + "cryptography", + "barreto-naehrig", + "eliptic-curves", + "pairing" + ], + "description": "Nim Barreto-Naehrig pairing-friendly elliptic curve implementation", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-bncurve" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", @@ -12291,18 +12306,6 @@ "license": "MIT", "web": "https://github.com/h3rald/nim-miniz" }, - { - "name": "bncurve", - "url": "https://github.com/status-im/nim-bncurve", - "method": "git", - "tags": [ - "library", - "cryptography" - ], - "description": "pure Nim implementation of Barreto-Naehrig pairing-friendly elliptic curve cryptography", - "license": "Apache License 2.0", - "web": "https://github.com/status-im/nim-bncurve" - }, { "name": "unsplash", "url": "https://github.com/juancarlospaco/nim-unsplash", From ae1254f9424df8c5181053af6f36ac2b4cd5ff53 Mon Sep 17 00:00:00 2001 From: momf Date: Mon, 7 Jan 2019 14:08:34 +0000 Subject: [PATCH 0884/1381] remove msqueue (#982) --- packages.json | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/packages.json b/packages.json index 0158ca1..e820631 100644 --- a/packages.json +++ b/packages.json @@ -9096,21 +9096,6 @@ "license": "MIT", "web": "https://github.com/KeepCoolWithCoolidge/nimlibxlsxwriter" }, - { - "name": "msqueue", - "url": "https://github.com/2vg/MSQueue", - "method": "git", - "tags": [ - "algorithm", - "queue", - "MichaelScott", - "fast", - "concurrent" - ], - "description": "Michael-Scott queue implemented in Nim", - "license": "MIT", - "web": "https://github.com/2vg/MSQueue" - }, { "name": "nimclutter", "url": "https://github.com/KeepCoolWithCoolidge/nimclutter", From b447a2584604ac2592a08f08b24c1bf34d3ad4f1 Mon Sep 17 00:00:00 2001 From: PMunch Date: Tue, 8 Jan 2019 16:55:48 +0100 Subject: [PATCH 0885/1381] Add nimlsp package (#980) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e820631..5d5fc8c 100644 --- a/packages.json +++ b/packages.json @@ -1160,6 +1160,19 @@ "license": "MIT", "web": "https://github.com/PMunch/jsonschema" }, + { + "name": "nimlsp", + "url": "https://github.com/PMunch/nimlsp", + "method": "git", + "tags": [ + "lsp", + "nimsuggest", + "editor" + ], + "description": "Language Server Protocol implementation for Nim", + "license": "MIT", + "web": "https://github.com/PMunch/nimlsp" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From fc4a1761a5149737a4d46f5228b2fff58926330f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Wed, 9 Jan 2019 06:56:12 +0100 Subject: [PATCH 0886/1381] Add sqlbuilder (#983) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 5d5fc8c..954a011 100644 --- a/packages.json +++ b/packages.json @@ -12348,5 +12348,17 @@ "description": "A thin SQLite wrapper with proper type safety", "license": "MIT", "web": "https://github.com/GULPF/tiny_sqlite" + }, + { + "name": "sqlbuilder", + "url": "https://github.com/ThomasTJdev/nim_sqlbuilder", + "method": "git", + "tags": [ + "sql", + "sqlbuilder" + ], + "description": "A SQLbuilder with support for NULL values", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_sqlbuilder" } ] From 79a4452e1d1e7716875d3fcbfd5a94954de91fdd Mon Sep 17 00:00:00 2001 From: Miran Date: Wed, 9 Jan 2019 19:04:06 +0100 Subject: [PATCH 0887/1381] no nil strings anymore (#985) Looks good --- package_scanner.nim | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/package_scanner.nim b/package_scanner.nim index 0a8a572..78c4f0b 100644 --- a/package_scanner.nim +++ b/package_scanner.nim @@ -25,7 +25,6 @@ import sets import strutils const - LICENSES = @[ "Allegro 4 Giftware", "Apache License 2.0", @@ -47,7 +46,6 @@ const "ISC", "Unlicense" ] - VCS_TYPES = @["git", "hg"] proc canFetchNimbleRepository(name: string, urlJson: JsonNode): bool = @@ -80,57 +78,43 @@ proc verifyAlias(pdata: JsonNode, result: var int) = # TODO: Verify that 'alias' points to a known package. proc check(): int = - var - name: string - + var name: string echo "" - - let - pkg_list = parseJson(readFile(getCurrentDir() / "packages.json")) - + let pkg_list = parseJson(readFile(getCurrentDir() / "packages.json")) var names = initSet[string]() for pdata in pkg_list: - name = if pdata.hasKey("name"): pdata["name"].str else: nil + name = if pdata.hasKey("name"): pdata["name"].str else: "" if pdata.hasKey("alias"): verifyAlias(pdata, result) else: - if name.isNil: + if name == "": echo "E: missing package name" result.inc() - elif not pdata.hasKey("method"): echo "E: ", name, " has no method" result.inc() - elif not (pdata["method"].str in VCS_TYPES): echo "E: ", name, " has an unknown method: ", pdata["method"].str result.inc() - elif not pdata.hasKey("url"): echo "E: ", name, " has no URL" result.inc() - elif pdata.hasKey("web") and not canFetchNimbleRepository(name, pdata["web"]): result.inc() - elif not pdata.hasKey("tags"): echo "E: ", name, " has no tags" result.inc() - elif not pdata.hasKey("description"): echo "E: ", name, " has no description" result.inc() - elif not pdata.hasKey("license"): echo "E: ", name, " has no license" result.inc() - elif pdata["url"].str.normalize.startsWith("git://github.com/"): echo "E: ", name, " has an insecure git:// URL instead of https://" result.inc() - else: # Other warnings should go here if not (pdata["license"].str in LICENSES): From e3de528df4ad2266dc62c88af195c3f9288e4929 Mon Sep 17 00:00:00 2001 From: Miran Date: Thu, 10 Jan 2019 16:15:26 +0100 Subject: [PATCH 0888/1381] add four packages from graveyard (#984) --- packages.json | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/packages.json b/packages.json index 954a011..3927c77 100644 --- a/packages.json +++ b/packages.json @@ -12360,5 +12360,57 @@ "description": "A SQLbuilder with support for NULL values", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_sqlbuilder" + }, + { + "name": "subexes", + "url": "https://github.com/nim-lang/graveyard?subdir=subexes", + "method": "git", + "tags": [ + "graveyard", + "subexes", + "substitution expression" + ], + "description": "Nim support for substitution expressions", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/subexes" + }, + { + "name": "scgi", + "url": "https://github.com/nim-lang/graveyard?subdir=scgi", + "method": "git", + "tags": [ + "graveyard", + "scgi", + "cgi" + ], + "description": "Helper procs for SCGI applications", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/scgi" + }, + { + "name": "smtp", + "url": "https://github.com/nim-lang/graveyard?subdir=smtp", + "method": "git", + "tags": [ + "graveyard", + "smtp", + "mail" + ], + "description": "SMTP client protocol", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/smtp" + }, + { + "name": "oids", + "url": "https://github.com/nim-lang/graveyard?subdir=oids", + "method": "git", + "tags": [ + "graveyard", + "oid", + "oids" + ], + "description": "Nim OID support", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/oids" } ] From 08962ed96e7eb697fd0f3893beb9910b11dea4da Mon Sep 17 00:00:00 2001 From: Miran Date: Fri, 11 Jan 2019 09:40:10 +0100 Subject: [PATCH 0889/1381] smtp and oids are staying in stdlib (#986) --- packages.json | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/packages.json b/packages.json index 3927c77..9b5dcee 100644 --- a/packages.json +++ b/packages.json @@ -12386,31 +12386,5 @@ "description": "Helper procs for SCGI applications", "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/scgi" - }, - { - "name": "smtp", - "url": "https://github.com/nim-lang/graveyard?subdir=smtp", - "method": "git", - "tags": [ - "graveyard", - "smtp", - "mail" - ], - "description": "SMTP client protocol", - "license": "MIT", - "web": "https://github.com/nim-lang/graveyard/tree/master/smtp" - }, - { - "name": "oids", - "url": "https://github.com/nim-lang/graveyard?subdir=oids", - "method": "git", - "tags": [ - "graveyard", - "oid", - "oids" - ], - "description": "Nim OID support", - "license": "MIT", - "web": "https://github.com/nim-lang/graveyard/tree/master/oids" } ] From bef7049275063df35dae0a9cdedf285479ce577d Mon Sep 17 00:00:00 2001 From: Miran Date: Sat, 12 Jan 2019 17:53:26 +0100 Subject: [PATCH 0890/1381] add remaining graveyard packages (#987) --- packages.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/packages.json b/packages.json index 9b5dcee..4c09bd3 100644 --- a/packages.json +++ b/packages.json @@ -12374,6 +12374,45 @@ "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/subexes" }, + { + "name": "complex", + "url": "https://github.com/nim-lang/graveyard?subdir=complex", + "method": "git", + "tags": [ + "graveyard", + "complex", + "math" + ], + "description": "The ex-stdlib module complex.", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/complex" + }, + { + "name": "fsmonitor", + "url": "https://github.com/nim-lang/graveyard?subdir=fsmonitor", + "method": "git", + "tags": [ + "graveyard", + "fsmonitor", + "asyncio" + ], + "description": "The ex-stdlib module fsmonitor.", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/fsmonitor" + }, + { + "name": "cookies", + "url": "https://github.com/nim-lang/graveyard?subdir=cookies", + "method": "git", + "tags": [ + "graveyard", + "cookies", + "parsing" + ], + "description": "Helper procs for parsing cookies", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/cookies" + }, { "name": "scgi", "url": "https://github.com/nim-lang/graveyard?subdir=scgi", From 601445e2738a99ed74fe815688f145cd2d9fe8d4 Mon Sep 17 00:00:00 2001 From: Nouredine Hussain Date: Sun, 13 Jan 2019 18:28:51 +0100 Subject: [PATCH 0891/1381] Added package cppstl (#988) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4c09bd3..fd68a6e 100644 --- a/packages.json +++ b/packages.json @@ -12425,5 +12425,18 @@ "description": "Helper procs for SCGI applications", "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/scgi" + }, + { + "name": "cppstl", + "url": "https://github.com/BigEpsilon/nim-cppstl", + "method": "git", + "tags": [ + "c++", + "stl", + "bindings" + ], + "description": "Bindings for the C++ Standard Template Library (STL)", + "license": "MIT", + "web": "https://github.com/BigEpsilon/nim-cppstl" } ] From 332c32febe63594c003ecbed9a55cb25a16b7355 Mon Sep 17 00:00:00 2001 From: Caleb Winston Date: Mon, 14 Jan 2019 09:42:52 -0800 Subject: [PATCH 0892/1381] Adding pipelines framework (#990) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index fd68a6e..442cbde 100644 --- a/packages.json +++ b/packages.json @@ -12438,5 +12438,21 @@ "description": "Bindings for the C++ Standard Template Library (STL)", "license": "MIT", "web": "https://github.com/BigEpsilon/nim-cppstl" + }, + { + "name": "pipelines", + "url": "https://github.com/calebwin/pipelines", + "method": "git", + "tags": [ + "python", + "pipeline", + "pipelines", + "data", + "parallel" + ], + "description": "A tiny framework & language for crafting massively parallel data pipelines", + "license": "MIT", + "web": "https://github.com/calebwin/pipelines", + "doc": "https://github.com/calebwin/pipelines" } ] From 6640778d0c206249afdf46316a087282c3096286 Mon Sep 17 00:00:00 2001 From: SilliBird <6666242+sillibird@users.noreply.github.com> Date: Tue, 15 Jan 2019 13:44:47 -0500 Subject: [PATCH 0893/1381] Added package nimhq (#991) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 442cbde..5d547d5 100644 --- a/packages.json +++ b/packages.json @@ -12454,5 +12454,18 @@ "license": "MIT", "web": "https://github.com/calebwin/pipelines", "doc": "https://github.com/calebwin/pipelines" + }, + { + "name": "nimhq", + "url": "https://github.com/sillibird/nimhq", + "method": "git", + "tags": [ + "library", + "api", + "client" + ], + "description": "HQ Trivia API wrapper for Nim", + "license": "MIT", + "web": "https://github.com/sillibird/nimhq" } ] From 40f9db16319a0d211cefcc1a890a3759cf652d53 Mon Sep 17 00:00:00 2001 From: Riderfighter <33171826+Riderfighter@users.noreply.github.com> Date: Wed, 16 Jan 2019 22:12:17 -0800 Subject: [PATCH 0894/1381] Added package binio (#992) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5d547d5..b70e7ee 100644 --- a/packages.json +++ b/packages.json @@ -12467,5 +12467,18 @@ "description": "HQ Trivia API wrapper for Nim", "license": "MIT", "web": "https://github.com/sillibird/nimhq" + }, + { + "name": "binio", + "url": "https://github.com/Riderfighter/binio", + "method": "git", + "tags": [ + "structured", + "byte", + "data" + ], + "description": "Package for packing and unpacking byte data", + "license": "MIT", + "web": "https://github.com/Riderfighter/binio" } ] From 5d1f483181ffb68b3030a962d7a26987fb2d4b8b Mon Sep 17 00:00:00 2001 From: Luke Parker <25259837+kayabaNerve@users.noreply.github.com> Date: Sun, 20 Jan 2019 23:52:40 -0600 Subject: [PATCH 0895/1381] Update packages previously under EmberCrypto to their new locations/names. (#994) --- packages.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index b70e7ee..dc17c3e 100644 --- a/packages.json +++ b/packages.json @@ -10120,7 +10120,7 @@ }, { "name": "BN", - "url": "https://github.com/EmberCrypto/BN", + "url": "https://github.com/MerosCrypto/BN", "method": "git", "tags": [ "bignumber", @@ -10727,7 +10727,11 @@ }, { "name": "ec_events", - "url": "https://github.com/EmberCrypto/ec_events", + "alias": "mc_events" + }, + { + "name": "mc_events", + "url": "https://github.com/MerosCrypto/mc_events", "method": "git", "tags": [ "events", From 7ae577f0cc949e6757231b392c2dac3529d53703 Mon Sep 17 00:00:00 2001 From: ryukoposting <44929006+ryukoposting@users.noreply.github.com> Date: Mon, 21 Jan 2019 23:26:31 -0600 Subject: [PATCH 0896/1381] Added package ladder (#995) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index dc17c3e..c4fc48e 100644 --- a/packages.json +++ b/packages.json @@ -12484,5 +12484,21 @@ "description": "Package for packing and unpacking byte data", "license": "MIT", "web": "https://github.com/Riderfighter/binio" + }, + { + "name": "ladder", + "url": "https://gitlab.com/ryukoposting/nim-ladder", + "method": "git", + "tags": [ + "ladder", + "logic", + "PLC", + "state", + "machine", + "ryukoposting" + ], + "description": "Ladder logic macros for Nim", + "license": "Apache-2.0", + "web": "https://gitlab.com/ryukoposting/nim-ladder" } ] From 95b3dbd3c079c0a96d77071ca4c8353868049f11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Wollenschl=C3=A4ger?= Date: Tue, 22 Jan 2019 14:58:26 +0900 Subject: [PATCH 0897/1381] Add nimline (#996) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index c4fc48e..5e047dc 100644 --- a/packages.json +++ b/packages.json @@ -10292,6 +10292,21 @@ "license": "MIT", "web": "https://github.com/fragcolor-xyz/fragments" }, + { + "name": "nimline", + "url": "https://github.com/fragcolor-xyz/nimline", + "method": "git", + "tags": [ + "c", + "c++", + "interop", + "ffi", + "wrappers" + ], + "description": "Wrapper-less C/C++ interop for Nim", + "license": "MIT", + "web": "https://github.com/fragcolor-xyz/nimline" + }, { "name": "nim_telegram_bot", "url": "https://github.com/juancarlospaco/nim-telegram-bot", From 51d196b620e54f761aacbaeea1816c6c4df19615 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Sun, 27 Jan 2019 22:08:01 +0100 Subject: [PATCH 0898/1381] Added package cassette --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 5e047dc..c5464fc 100644 --- a/packages.json +++ b/packages.json @@ -12515,5 +12515,20 @@ "description": "Ladder logic macros for Nim", "license": "Apache-2.0", "web": "https://gitlab.com/ryukoposting/nim-ladder" + }, + { + "name": "cassette", + "url": "https://github.com/LemonBoy/cassette", + "method": "git", + "tags": [ + "http", + "network", + "test", + "mock", + "requests" + ], + "description": "Record and replay your HTTP sessions!", + "license": "MIT", + "web": "https://github.com/LemonBoy/cassette" } ] From 9daf798427aaed3074e8a1d883a1a74f610bebbe Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 28 Jan 2019 05:33:00 -0300 Subject: [PATCH 0899/1381] Added package nimterlingua (#998) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c5464fc..bbee309 100644 --- a/packages.json +++ b/packages.json @@ -12530,5 +12530,19 @@ "description": "Record and replay your HTTP sessions!", "license": "MIT", "web": "https://github.com/LemonBoy/cassette" + }, + { + "name": "nimterlingua", + "url": "https://github.com/juancarlospaco/nim-internimgua", + "method": "git", + "tags": [ + "internationalization", + "i18n", + "localization", + "translation" + ], + "description": "Internationalization at Compile Time for Nim. Macro to translate unmodified code from 1 INI file. NimScript compatible.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-internimgua" } ] From d0409a6b9d25fd2158ac38a419ddfada56ed1c10 Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Mon, 28 Jan 2019 11:26:44 +0100 Subject: [PATCH 0900/1381] Added package with (#999) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index bbee309..716153e 100644 --- a/packages.json +++ b/packages.json @@ -12544,5 +12544,17 @@ "description": "Internationalization at Compile Time for Nim. Macro to translate unmodified code from 1 INI file. NimScript compatible.", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-internimgua" + }, + { + "name": "with", + "url": "https://github.com/zevv/with", + "method": "git", + "tags": [ + "with", + "macro" + ], + "description": "Simple 'with' macro for Nim", + "license": "MIT", + "web": "https://github.com/zevv/with" } ] From 9c3f46fdfad02d4d7628c2795c586af9fef2b3f1 Mon Sep 17 00:00:00 2001 From: ryukoposting <44929006+ryukoposting@users.noreply.github.com> Date: Thu, 31 Jan 2019 01:05:07 -0600 Subject: [PATCH 0901/1381] Add package lastfm (#1000) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 716153e..82a5cbd 100644 --- a/packages.json +++ b/packages.json @@ -12556,5 +12556,22 @@ "description": "Simple 'with' macro for Nim", "license": "MIT", "web": "https://github.com/zevv/with" + }, + { + "name": "lastfm", + "url": "https://gitlab.com/ryukoposting/lastfm-nim", + "method": "git", + "tags": [ + "last.fm", + "lastfm", + "music", + "metadata", + "api", + "async", + "ryukoposting" + ], + "description": "Last.FM API breakouts (documentation: http://ryuk.ooo/nimdocs/lastfm/lastfm.html)", + "license": "Apache-2.0", + "web": "https://gitlab.com/ryukoposting/lastfm-nim" } ] From f2d0e8101f83c9d4561bf3d9f63e14c939dc1264 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 31 Jan 2019 16:06:58 -0300 Subject: [PATCH 0902/1381] Added package firejail (#1001) --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index 82a5cbd..bc94ec5 100644 --- a/packages.json +++ b/packages.json @@ -12573,5 +12573,24 @@ "description": "Last.FM API breakouts (documentation: http://ryuk.ooo/nimdocs/lastfm/lastfm.html)", "license": "Apache-2.0", "web": "https://gitlab.com/ryukoposting/lastfm-nim" + }, + { + "name": "firejail", + "url": "https://github.com/juancarlospaco/nim-firejail", + "method": "git", + "tags": [ + "firejail", + "security", + "linux", + "isolation", + "container", + "infosec", + "hardened", + "sandbox", + "docker" + ], + "description": "Firejail wrapper for Nim, Isolate your Production App before its too late!", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-firejail" } ] From 34c3dcfd921b7d9c4751da8285281eac3613f3b6 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 6 Feb 2019 17:04:17 +0100 Subject: [PATCH 0903/1381] Add a new nim-eth package that deprecates the previous smaller Status packages --- packages.json | 63 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 25 deletions(-) diff --git a/packages.json b/packages.json index bc94ec5..520c4c5 100644 --- a/packages.json +++ b/packages.json @@ -6033,7 +6033,7 @@ "memory-mapping", "streams" ], - "description": "RLP serialization library for Nim", + "description": "Nearly zero-overhead input/output streams for Nim", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-faststreams" }, @@ -6053,16 +6053,39 @@ "web": "https://github.com/status-im/nim-bncurve" }, { - "name": "rlp", - "url": "https://github.com/status-im/nim-rlp", + "name": "eth", + "url": "https://github.com/status-im/nim-eth", "method": "git", "tags": [ "library", "ethereum", + "p2p", + "devp2p", + "rplx", + "networking", + "whisper", + "swarm", "rlp", - "serialization" + "cryptography", + "trie", + "patricia-trie", + "keyfile", + "wallet", + "bloom", + "bloom-filter" ], - "description": "RLP serialization library for Nim", + "description": "A collection of Ethereum related libraries", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-eth" + }, + { + "name": "rlp", + "url": "https://github.com/status-im/nim-rlp", + "method": "git", + "tags": [ + "deprecated" + ], + "description": "Deprecated RLP serialization library for Nim (now part of the 'eth' module)", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-rlp" }, @@ -6071,11 +6094,9 @@ "url": "https://github.com/status-im/nim-eth-keys", "method": "git", "tags": [ - "library", - "ethereum", - "cryptography" + "deprecated" ], - "description": "A reimplementation in pure Nim of eth-keys, the common API for Ethereum key operations.", + "description": "A deprecated reimplementation in pure Nim of eth-keys, the common API for Ethereum key operations (now part of the 'eth' package).", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth-keys" }, @@ -6111,12 +6132,9 @@ "url": "https://github.com/status-im/nim-eth-bloom", "method": "git", "tags": [ - "library", - "ethereum", - "bloom", - "bloom-filter" + "deprecated" ], - "description": "Ethereum bloom filter", + "description": "Ethereum bloom filter (deprecated, now part of the 'eth' package)", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth-bloom" }, @@ -6193,12 +6211,9 @@ "url": "https://github.com/status-im/nim-eth-trie", "method": "git", "tags": [ - "library", - "ethereum", - "trie", - "patricia-trie" + "deprecated" ], - "description": "Merkle Patricia Tries as specified by Ethereum", + "description": "Merkle Patricia Tries as specified by Ethereum (deprecated, now part of the 'eth' package)", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth-trie" }, @@ -6207,6 +6222,7 @@ "url": "https://github.com/status-im/nim-eth-p2p", "method": "git", "tags": [ + "deprecated", "library", "ethereum", "p2p", @@ -6216,7 +6232,7 @@ "whisper", "swarm" ], - "description": "Implementation of the Ethereum suite of P2P protocols", + "description": "Deprecated implementation of the Ethereum suite of P2P protocols (now part of the 'eth' package)", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth-p2p" }, @@ -6225,12 +6241,9 @@ "url": "https://github.com/status-im/nim-eth-keyfile", "method": "git", "tags": [ - "library", - "ethereum", - "keyfile", - "wallet" + "deprecated" ], - "description": "Library for handling Ethereum private keys and wallets", + "description": "A deprecated library for handling Ethereum private keys and wallets (now part of the 'eth' package)", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth-keyfile" }, From d6845504615dec908296c88cdb1e86b4ea6b5bc3 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 6 Feb 2019 17:24:40 +0100 Subject: [PATCH 0904/1381] Add Chronos --- packages.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 520c4c5..a5efc71 100644 --- a/packages.json +++ b/packages.json @@ -5955,8 +5955,8 @@ "web": "https://github.com/status-im/nim-json-rpc" }, { - "name": "asyncdispatch2", - "url": "https://github.com/status-im/nim-asyncdispatch2", + "name": "chronos", + "url": "https://github.com/status-im/nim-chronos", "method": "git", "tags": [ "library", @@ -5969,9 +5969,13 @@ "tcp", "udp" ], - "description": "Experimental fork of Nim's asyncdispatch", + "description": "An efficient library for asynchronous programming", "license": "Apache License 2.0", - "web": "https://github.com/status-im/nim-asyncdispatch2" + "web": "https://github.com/status-im/nim-chronos" + }, + { + "name": "asyncdispatch2", + "alias": "chronos" }, { "name": "serialization", From dae61764704b6af6497547b304fde40bae2bcde3 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Wed, 6 Feb 2019 20:24:27 +0100 Subject: [PATCH 0905/1381] Added package compactdict (#1003) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index a5efc71..315d5d3 100644 --- a/packages.json +++ b/packages.json @@ -12609,5 +12609,20 @@ "description": "Firejail wrapper for Nim, Isolate your Production App before its too late!", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-firejail" + }, + { + "name": "compactdict", + "url": "https://github.com/LemonBoy/compactdict", + "method": "git", + "tags": [ + "dictionary", + "hashtable", + "data-structure", + "hash", + "compact" + ], + "description": "A compact dictionary implementation", + "license": "MIT", + "web": "https://github.com/LemonBoy/compactdict" } ] From 03eb331729ad17c8393420019f05d68d9c2968ef Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Wed, 6 Feb 2019 20:38:48 +0100 Subject: [PATCH 0906/1381] Added package jstin (#1004) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 315d5d3..55125dd 100644 --- a/packages.json +++ b/packages.json @@ -12610,6 +12610,21 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-firejail" }, + { + "name": "jstin", + "url": "https://github.com/LemonBoy/jstin", + "method": "git", + "tags": [ + "json", + "serialize", + "deserialize", + "easy", + "simple" + ], + "description": "JS {de,}serialization as it says on the tin", + "license": "MIT", + "web": "https://github.com/LemonBoy/jstin" + }, { "name": "compactdict", "url": "https://github.com/LemonBoy/compactdict", From 01d8bed1adff971fde287423d8b2fd9e3009aadd Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Thu, 7 Feb 2019 11:53:47 +0100 Subject: [PATCH 0907/1381] Add blscurve --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 55125dd..9f8bb8c 100644 --- a/packages.json +++ b/packages.json @@ -6082,6 +6082,20 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth" }, + { + "name": "blscurve", + "url": "https://github.com/status-im/nim-blscurve", + "method": "git", + "tags": [ + "library", + "cryptography", + "bls", + "aggregated-signatures" + ], + "description": "Nim implementation of Barreto-Lynn-Scott (BLS) curve BLS12-381.", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-blscurve" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", From 9c3ee00f44e59464d33e4bab395ce090f7b33c1c Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Fri, 8 Feb 2019 21:52:18 +0100 Subject: [PATCH 0908/1381] Added package z3 (#1006) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 9f8bb8c..3f42c4a 100644 --- a/packages.json +++ b/packages.json @@ -12653,5 +12653,22 @@ "description": "A compact dictionary implementation", "license": "MIT", "web": "https://github.com/LemonBoy/compactdict" + }, + { + "name": "z3", + "url": "https://github.com/zevv/nimz3", + "method": "git", + "tags": [ + "Z3", + "sat", + "smt", + "theorem", + "prover", + "solver", + "optimization" + ], + "description": "Nim Z3 theorem prover bindings", + "license": "MIT", + "web": "https://github.com/zevv/nimz3" } ] From a8b7349a14d8f9f1b48737c826a68c81bd24f82d Mon Sep 17 00:00:00 2001 From: Miran Date: Sat, 9 Feb 2019 12:43:21 +0100 Subject: [PATCH 0909/1381] cookies will stay the part of stdlib (#1007) --- packages.json | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages.json b/packages.json index 3f42c4a..3c0d87b 100644 --- a/packages.json +++ b/packages.json @@ -12450,19 +12450,6 @@ "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/fsmonitor" }, - { - "name": "cookies", - "url": "https://github.com/nim-lang/graveyard?subdir=cookies", - "method": "git", - "tags": [ - "graveyard", - "cookies", - "parsing" - ], - "description": "Helper procs for parsing cookies", - "license": "MIT", - "web": "https://github.com/nim-lang/graveyard/tree/master/cookies" - }, { "name": "scgi", "url": "https://github.com/nim-lang/graveyard?subdir=scgi", From 64755d00adf98640908fa2858fb655bd88b3d20f Mon Sep 17 00:00:00 2001 From: muxueqz Date: Tue, 12 Feb 2019 14:43:47 +0800 Subject: [PATCH 0910/1381] Added package remarker_light (#1008) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 3c0d87b..ffd5bfa 100644 --- a/packages.json +++ b/packages.json @@ -12657,5 +12657,18 @@ "description": "Nim Z3 theorem prover bindings", "license": "MIT", "web": "https://github.com/zevv/nimz3" + }, + { + "name": "remarker_light", + "url": "https://github.com/muxueqz/remarker_light", + "method": "git", + "tags": [ + "remark", + "slideshow", + "markdown" + ], + "description": "remarker_light is a command line tool for building a remark-based slideshow page very easily.", + "license": "GPL-2.0", + "web": "https://github.com/muxueqz/remarker_light" } ] From 6d4da67067d041a1e8d40e64d16c2b85458a58c5 Mon Sep 17 00:00:00 2001 From: Jacob Doyelle Yates Date: Mon, 18 Feb 2019 12:08:32 -0800 Subject: [PATCH 0911/1381] Update packages.json - Added nim-nmap (#1010) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ffd5bfa..b17e53b 100644 --- a/packages.json +++ b/packages.json @@ -12670,5 +12670,19 @@ "description": "remarker_light is a command line tool for building a remark-based slideshow page very easily.", "license": "GPL-2.0", "web": "https://github.com/muxueqz/remarker_light" + }, + { + "name": "nim-nmap", + "url": "https://github.com/blmvxer/nim-nmap", + "method": "git", + "tags": [ + "nmap", + "networking", + "network mapper", + "blmvxer" + ], + "description": "A pure implementaion of nmap for nim.", + "license": "MIT", + "web": "https://github.com/blmvxer/nim-nmap" } ] From d3723175e023a8a69cd06ea6b0d0c3bbaa91875d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20D=C3=B6ring?= Date: Tue, 19 Feb 2019 17:58:50 +0100 Subject: [PATCH 0912/1381] Added package fancygl (#1011) --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index b17e53b..677da8e 100644 --- a/packages.json +++ b/packages.json @@ -12680,9 +12680,22 @@ "networking", "network mapper", "blmvxer" - ], + ], "description": "A pure implementaion of nmap for nim.", "license": "MIT", "web": "https://github.com/blmvxer/nim-nmap" + }, + { + "name": "fancygl", + "url": "https://github.com/krux02/opengl-sandbox", + "method": "git", + "tags": [ + "opengl", + "rendering", + "dsl" + ], + "description": "nice way of handling render code", + "license": "MIT", + "web": "https://github.com/krux02/opengl-sandbox" } ] From 77bfbbe86de810e06be0144b6468f6b8a05a4a4b Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sun, 24 Feb 2019 07:56:53 -0300 Subject: [PATCH 0913/1381] Added package libravatar --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 677da8e..18e5099 100644 --- a/packages.json +++ b/packages.json @@ -12697,5 +12697,19 @@ "description": "nice way of handling render code", "license": "MIT", "web": "https://github.com/krux02/opengl-sandbox" + }, + { + "name": "libravatar", + "url": "https://github.com/juancarlospaco/nim-libravatar", + "method": "git", + "tags": [ + "libravatar", + "gravatar", + "avatar", + "federated" + ], + "description": "Libravatar library for Nim, Gravatar alternative. Libravatar is an open source free federated avatar api & service.", + "license": "PPL", + "web": "https://github.com/juancarlospaco/nim-libravatar" } ] From 6afe3b7c6b37955a12baca43d93ca3b971760d0e Mon Sep 17 00:00:00 2001 From: Bo Lingen Date: Sun, 24 Feb 2019 05:04:28 -0600 Subject: [PATCH 0914/1381] remove readme link to Nim "library overview" (#1013) * remove readme link to Nim "library overview" The referenced section was removed from Nim's documentation. * Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d889e63..e4b7cf9 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ This is a central listing of all packages for [Nimble](https://github.com/nim-lang/nimble), a package manager for the [Nim programming language](http://nim-lang.org). -An overview of all Nimble packages is available in the -[library documentation](https://nim-lang.org/docs/lib.html#nimble). +An overview of all the package is available at https://nimble.directory. NOTE: The packages listed here are not peer-reviewed or otherwise screened. We try to keep the list up-to-date but we cannot guarantee quality or maturity of the packages. From d5b731224c0b5ec934120689817b3cc15d870676 Mon Sep 17 00:00:00 2001 From: Marc Azar <43026186+MarcAzar@users.noreply.github.com> Date: Sun, 24 Feb 2019 17:08:51 +0200 Subject: [PATCH 0915/1381] Added Bip Buffer package (#1015) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 18e5099..443f8d9 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,19 @@ [ + { + "name": "BipBuffer", + "url": "https://github.com/MarcAzar/BipBuffer", + "method": "git", + "tags": [ + "Bip Buffer", + "Circular", + "Ring", + "Buffer", + "nim" + ], + "description": "A Nim implementation of Simon Cooke's Bip Buffer. A type of circular buffer ensuring contiguous blocks of memory", + "license": "MIT", + "web": "https://github.com/MarcAzar/BipBuffer" + }, { "name": "whip", "url": "https://github.com/mattaylor/whip", From 0350579bdbdde98e34a0173775748f731fef7f3c Mon Sep 17 00:00:00 2001 From: Constantine Molchanov Date: Wed, 27 Feb 2019 16:42:47 +0400 Subject: [PATCH 0916/1381] Added package norm (#1017) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 443f8d9..b329fea 100644 --- a/packages.json +++ b/packages.json @@ -12726,5 +12726,18 @@ "description": "Libravatar library for Nim, Gravatar alternative. Libravatar is an open source free federated avatar api & service.", "license": "PPL", "web": "https://github.com/juancarlospaco/nim-libravatar" + }, + { + "name": "norm", + "url": "https://github.com/moigagoo/norm", + "method": "git", + "tags": [ + "orm", + "db", + "database" + ], + "description": "Nim ORM.", + "license": "MIT", + "web": "https://github.com/moigagoo/norm" } ] From ce9b5a7fe2703fe673b135e59378b02cf2a1f4b3 Mon Sep 17 00:00:00 2001 From: Marc Azar <43026186+MarcAzar@users.noreply.github.com> Date: Wed, 27 Feb 2019 16:43:34 +0200 Subject: [PATCH 0917/1381] Added Cyclic Polynomial Hash package (#1019) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index b329fea..c83fc39 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,19 @@ [ + { + "name": "Cyclic-Polynomial-Hash", + "url": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash", + "method": "git", + "tags": [ + "Cyclic", + "Hash", + "BuzHash", + "Rolling", + "n-gram" + ], + "description": "A Nim implementation of a Cyclic Polynomial Hash, aka BuzHash", + "license": "MIT", + "web": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash" + }, { "name": "BipBuffer", "url": "https://github.com/MarcAzar/BipBuffer", From 9ff4c3e16767858968b877ea333c8e2dcb7de8dd Mon Sep 17 00:00:00 2001 From: Ephiiz <36703779+Ephiiz@users.noreply.github.com> Date: Thu, 28 Feb 2019 08:44:33 -0500 Subject: [PATCH 0918/1381] Added package simple_vector (#1020) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index c83fc39..4827850 100644 --- a/packages.json +++ b/packages.json @@ -12754,5 +12754,17 @@ "description": "Nim ORM.", "license": "MIT", "web": "https://github.com/moigagoo/norm" + }, + { + "name": "simple_vector", + "url": "https://github.com/Ephiiz/simple_vector", + "method": "git", + "tags": [ + "vector", + "simple_vector" + ], + "description": "Simple vector library for nim-lang.", + "license": "GNU Lesser General Public License v2.1", + "web": "https://github.com/Ephiiz/simple_vector" } ] From 1386f97f726f31757fca594741d3e611b491156e Mon Sep 17 00:00:00 2001 From: treeform Date: Sat, 2 Mar 2019 12:04:47 -0800 Subject: [PATCH 0919/1381] Add netpipe library. (#1022) Netpipe is a reliable UDP connection for Nim. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4827850..f502608 100644 --- a/packages.json +++ b/packages.json @@ -12766,5 +12766,17 @@ "description": "Simple vector library for nim-lang.", "license": "GNU Lesser General Public License v2.1", "web": "https://github.com/Ephiiz/simple_vector" + }, + { + "name": "netpipe", + "url": "https://github.com/treeform/netpipe/", + "method": "git", + "tags": [ + "networking", + "udp" + ], + "description": "Netpipe is a reliable UDP connection for Nim.", + "license": "MIT", + "web": "https://github.com/treeform/netpipe/" } ] From c4a40ef338327ae98918255bc26ab52aabe4cf89 Mon Sep 17 00:00:00 2001 From: ryukoposting <44929006+ryukoposting@users.noreply.github.com> Date: Sun, 3 Mar 2019 00:52:43 -0600 Subject: [PATCH 0920/1381] Added package fnv (#1023) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index f502608..df17dd9 100644 --- a/packages.json +++ b/packages.json @@ -12778,5 +12778,23 @@ "description": "Netpipe is a reliable UDP connection for Nim.", "license": "MIT", "web": "https://github.com/treeform/netpipe/" + }, + { + "name": "fnv", + "url": "https://gitlab.com/ryukoposting/nim-fnv", + "method": "git", + "tags": [ + "fnv", + "fnv1a", + "fnv1", + "fnv-1a", + "fnv-1", + "fnv0", + "fnv-0", + "ryukoposting" + ], + "description": "FNV-1 and FNV-1a non-cryptographic hash functions (documentation hosted at: http://ryuk.ooo/nimdocs/fnv/fnv.html)", + "license": "Apache-2.0", + "web": "https://gitlab.com/ryukoposting/nim-fnv" } ] From 6362a7e432ce0e112dc490b033cbfbba7674eea7 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 8 Mar 2019 00:09:37 +0000 Subject: [PATCH 0921/1381] Flag mofuw as abandoned https://github.com/2vg/mofuw has been archived --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index df17dd9..7040f9f 100644 --- a/packages.json +++ b/packages.json @@ -9054,7 +9054,8 @@ "tags": [ "web", "http", - "framework" + "framework", + "abandoned" ], "description": "mofuw is *MO*re *F*aster, *U*ltra *W*ebserver", "license": "MIT", From 7e1a2a79278629fa17c0407b69674b0a3f902c25 Mon Sep 17 00:00:00 2001 From: ThomasTJdev Date: Sat, 9 Mar 2019 05:34:07 +0100 Subject: [PATCH 0922/1381] Updated license --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index df17dd9..6f91974 100644 --- a/packages.json +++ b/packages.json @@ -9695,7 +9695,7 @@ "binary" ], "description": "A website management tool. Run the file and access your webpage.", - "license": "GPLv3", + "license": "PPL", "web": "https://nimwc.org/" }, { From ae942272b505a91826d6193707214dab159e8c4f Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 12 Mar 2019 15:12:08 +0200 Subject: [PATCH 0923/1381] Add libp2p --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index df17dd9..9da3043 100644 --- a/packages.json +++ b/packages.json @@ -6126,6 +6126,21 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-blscurve" }, + { + "name": "libp2p", + "url": "https://github.com/status-im/nim-libp2p", + "method": "git", + "tags": [ + "library", + "networking", + "libp2p", + "ipfs", + "ethereum" + ], + "description": "libp2p implementation in Nim", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-libp2p" + }, { "name": "rlp", "url": "https://github.com/status-im/nim-rlp", From 581527fb1e4a041143747884a42b81239f68178d Mon Sep 17 00:00:00 2001 From: Xabier Bello Date: Thu, 14 Mar 2019 21:51:35 +0100 Subject: [PATCH 0924/1381] Added package notify (#1029) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 95844d5..bc5f057 100644 --- a/packages.json +++ b/packages.json @@ -12811,5 +12811,18 @@ "description": "FNV-1 and FNV-1a non-cryptographic hash functions (documentation hosted at: http://ryuk.ooo/nimdocs/fnv/fnv.html)", "license": "Apache-2.0", "web": "https://gitlab.com/ryukoposting/nim-fnv" + }, + { + "name": "notify", + "url": "https://github.com/xbello/notify-nim", + "method": "git", + "tags": [ + "notify", + "libnotify", + "library" + ], + "description": "A wrapper to notification libraries", + "license": "MIT", + "web": "https://github.com/xbello/notify-nim" } ] From 0610648bfb132751115241e8fd12c37a92c6c48c Mon Sep 17 00:00:00 2001 From: StefanSalewski Date: Fri, 15 Mar 2019 20:35:34 +0100 Subject: [PATCH 0925/1381] Added package minmaxheap (#1030) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index bc5f057..6b6f345 100644 --- a/packages.json +++ b/packages.json @@ -12824,5 +12824,18 @@ "description": "A wrapper to notification libraries", "license": "MIT", "web": "https://github.com/xbello/notify-nim" + }, + { + "name": "minmaxheap", + "url": "https://github.com/stefansalewski/minmaxheap", + "method": "git", + "tags": [ + "minmaxheap", + "heap", + "priorityqueue" + ], + "description": "MinMaxHeap", + "license": "MIT", + "web": "https://github.com/stefansalewski/minmaxheap" } ] From 1e26ae2fdd4b8964584466eadf5249fc49fc915a Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 17 Mar 2019 16:23:00 +0000 Subject: [PATCH 0926/1381] Add dashing library (#1031) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6b6f345..7825f81 100644 --- a/packages.json +++ b/packages.json @@ -12837,5 +12837,18 @@ "description": "MinMaxHeap", "license": "MIT", "web": "https://github.com/stefansalewski/minmaxheap" + }, + { + "name": "dashing", + "url": "https://github.com/FedericoCeratto/nim-dashing", + "method": "git", + "tags": [ + "library", + "pure", + "terminal" + ], + "description": "Terminal dashboards.", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-dashing" } ] From 0b07710df8bb81972c34971cb4030c7aadb4cfb4 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Tue, 19 Mar 2019 07:52:18 -0300 Subject: [PATCH 0927/1381] Added package html_tools (#1033) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7825f81..6dc68da 100644 --- a/packages.json +++ b/packages.json @@ -12850,5 +12850,18 @@ "description": "Terminal dashboards.", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-dashing" + }, + { + "name": "html_tools", + "url": "https://github.com/juancarlospaco/nim-html-tools", + "method": "git", + "tags": [ + "html", + "validation", + "frontend" + ], + "description": "HTML5 Tools for Nim, all Templates, No CSS, No Libs, No JS Framework", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-html-tools" } ] From 8306ca5c51be4868b07ca0d339be48e8ee530f9b Mon Sep 17 00:00:00 2001 From: Marc Azar <43026186+MarcAzar@users.noreply.github.com> Date: Tue, 19 Mar 2019 13:16:31 +0200 Subject: [PATCH 0928/1381] Marc azar patch 1 (#1032) * Added Cyclic Polynomial Hash package * Add BitVector package. * Update website pages of BipBuffer and Cyclic-Polynomial-Hash packages. --- packages.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 6dc68da..754df4c 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,18 @@ [ + { + "name": "BitVector", + "url": "https://github.com/MarcAzar/BitVector", + "method": "git", + "tags": [ + "Bit", + "Array", + "Vector", + "Bloom" + ], + "description": "A high performance Nim implementation of BitVector with base SomeUnsignedInt(i.e: uint8-64) with support for slices, and seq supported operations", + "license": "MIT", + "web": "https://marcazar.github.io/BitVector" + }, { "name": "Cyclic-Polynomial-Hash", "url": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash", @@ -12,7 +26,7 @@ ], "description": "A Nim implementation of a Cyclic Polynomial Hash, aka BuzHash", "license": "MIT", - "web": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash" + "web": "https://marcazar.github.io/Cyclic-Polynomial-Hash" }, { "name": "BipBuffer", @@ -27,7 +41,7 @@ ], "description": "A Nim implementation of Simon Cooke's Bip Buffer. A type of circular buffer ensuring contiguous blocks of memory", "license": "MIT", - "web": "https://github.com/MarcAzar/BipBuffer" + "web": "https://marcazar.github.io/BipBuffer" }, { "name": "whip", From 7cadaf339c00431912250789d746e03d4e845636 Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Tue, 19 Mar 2019 18:50:25 +0100 Subject: [PATCH 0929/1381] Added package npeg (#1034) --- packages.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages.json b/packages.json index 754df4c..48395ad 100644 --- a/packages.json +++ b/packages.json @@ -12877,5 +12877,25 @@ "description": "HTML5 Tools for Nim, all Templates, No CSS, No Libs, No JS Framework", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-html-tools" + }, + { + "name": "npeg", + "url": "https://github.com/zevv/npeg", + "method": "git", + "tags": [ + "PEG", + "parser", + "parsing", + "regexp", + "regular", + "grammar", + "lexer", + "lexing", + "pattern", + "matching" + ], + "description": "a PEG library", + "license": "MIT", + "web": "https://github.com/zevv/npeg" } ] From 0c95258d920a783b325e72710e44f14f81f74f21 Mon Sep 17 00:00:00 2001 From: Solitude Date: Thu, 21 Mar 2019 08:01:28 +0200 Subject: [PATCH 0930/1381] Add pinggraph (#1035) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 48395ad..fda3927 100644 --- a/packages.json +++ b/packages.json @@ -12897,5 +12897,17 @@ "description": "a PEG library", "license": "MIT", "web": "https://github.com/zevv/npeg" + }, + { + "name": "pinggraph", + "url": "https://github.com/SolitudeSF/pinggraph", + "method": "git", + "tags": [ + "ping", + "terminal" + ], + "description": "Simple terminal ping graph", + "license": "MIT", + "web": "https://github.com/SolitudeSF/pinggraph" } ] From c9d7f9e3ceb8a154758b8f0cda0b0b9a2366dd88 Mon Sep 17 00:00:00 2001 From: endes123321 Date: Thu, 21 Mar 2019 20:45:37 +0000 Subject: [PATCH 0931/1381] Update packages.json (#1036) added nimcdl package --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fda3927..acaf5df 100644 --- a/packages.json +++ b/packages.json @@ -12909,5 +12909,19 @@ "description": "Simple terminal ping graph", "license": "MIT", "web": "https://github.com/SolitudeSF/pinggraph" + }, + { + "name": "nimcdl", + "url": "https://gitlab.com/endes123321/nimcdl", + "method": "git", + "tags": [ + "circuit", + "HDL", + "PCB", + "DSL" + ], + "description": "Circuit Design language made in Nim", + "license": "GPLv3", + "web": "https://gitlab.com/endes123321/nimcdl" } ] From 1458bb35dce804d00428b8013e52691c64c57232 Mon Sep 17 00:00:00 2001 From: MrZoraman Date: Sat, 23 Mar 2019 23:41:20 -0700 Subject: [PATCH 0932/1381] Updated Omnilog's license (#1037) In the packages.json it was listed as MIT but on their git repo the license is LGPLv3. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index acaf5df..5feb3cb 100644 --- a/packages.json +++ b/packages.json @@ -4127,7 +4127,7 @@ "logs" ], "description": "Advanced logging library for Nim with structured logging, formatters, filters and writers.", - "license": "MIT", + "license": "LGPLv3", "web": "https://github.com/nim-appkit/omnilog" }, { From 966405781323b5a171368228c9bfd44db72bde50 Mon Sep 17 00:00:00 2001 From: Konstantin Kuchinin <4642651+coocheenin@users.noreply.github.com> Date: Tue, 26 Mar 2019 15:56:31 +0300 Subject: [PATCH 0933/1381] Added package easymail (#1038) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 5feb3cb..6c45711 100644 --- a/packages.json +++ b/packages.json @@ -12923,5 +12923,19 @@ "description": "Circuit Design language made in Nim", "license": "GPLv3", "web": "https://gitlab.com/endes123321/nimcdl" + }, + { + "name": "easymail", + "url": "https://github.com/coocheenin/easymail", + "method": "git", + "tags": [ + "email", + "sendmail", + "net", + "mail" + ], + "description": "wrapper for the sendmail command", + "license": "MIT", + "web": "https://github.com/coocheenin/easymail" } ] From 23f5bbb57b88abcd1e9b44f76d91f6c64b5a3f44 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Wed, 27 Mar 2019 06:11:32 +0000 Subject: [PATCH 0934/1381] Added package nim-libgd (#1040) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 6c45711..1547584 100644 --- a/packages.json +++ b/packages.json @@ -12937,5 +12937,20 @@ "description": "wrapper for the sendmail command", "license": "MIT", "web": "https://github.com/coocheenin/easymail" + }, + { + "name": "nim-libgd", + "url": "https://github.com/mrhdias/nim-libgd", + "method": "git", + "tags": [ + "image", + "graphics", + "wrapper", + "libgd", + "2d" + ], + "description": "Nim Wrapper for LibGD 2.x", + "license": "MIT", + "web": "https://github.com/mrhdias/nim-libgd" } ] From 6fc31c691b84573b54f4dc7b1cc638938d40ffff Mon Sep 17 00:00:00 2001 From: SilliBird <6666242+sillibird@users.noreply.github.com> Date: Wed, 27 Mar 2019 03:02:54 -0400 Subject: [PATCH 0935/1381] Added package luhncheck (#1041) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1547584..6bec1e0 100644 --- a/packages.json +++ b/packages.json @@ -12938,6 +12938,18 @@ "license": "MIT", "web": "https://github.com/coocheenin/easymail" }, + { + "name": "luhncheck", + "url": "https://github.com/sillibird/luhncheck", + "method": "git", + "tags": [ + "library", + "algorithm" + ], + "description": "Implementation of Luhn algorithm in nim.", + "license": "MIT", + "web": "https://github.com/sillibird/luhncheck" + }, { "name": "nim-libgd", "url": "https://github.com/mrhdias/nim-libgd", From fa8d67769c20d9dd9edfc1d6c9202b86d6d848ec Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Thu, 28 Mar 2019 06:24:42 +0100 Subject: [PATCH 0936/1381] Added package closure_methods (#1042) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 6bec1e0..474a53f 100644 --- a/packages.json +++ b/packages.json @@ -12964,5 +12964,20 @@ "description": "Nim Wrapper for LibGD 2.x", "license": "MIT", "web": "https://github.com/mrhdias/nim-libgd" + }, + { + "name": "closure_methods", + "url": "https://github.com/bluenote10/closure_methods", + "method": "git", + "tags": [ + "macro", + "inheritance", + "oop", + "closure", + "methods" + ], + "description": "Macro for building OOP class hierarchies based on closure methods.", + "license": "MIT", + "web": "https://github.com/bluenote10/closure_methods" } ] From e5f6cf402dc8b71e6ade2c04d61b44f4ff80e01b Mon Sep 17 00:00:00 2001 From: zer0-star <32029533+zer0-star@users.noreply.github.com> Date: Sun, 31 Mar 2019 15:12:54 +0900 Subject: [PATCH 0937/1381] Added package nim_curry (#1045) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 474a53f..37df222 100644 --- a/packages.json +++ b/packages.json @@ -12979,5 +12979,19 @@ "description": "Macro for building OOP class hierarchies based on closure methods.", "license": "MIT", "web": "https://github.com/bluenote10/closure_methods" + }, + { + "name": "nim_curry", + "url": "https://github.com/zer0-star/nim-curry", + "method": "git", + "tags": [ + "library", + "functional", + "macro", + "currying" + ], + "description": "Provides a macro to curry function", + "license": "MIT", + "web": "https://github.com/zer0-star/nim-curry" } ] From 66f02e96b18cd70a952cec2dc66a514aaf138ef9 Mon Sep 17 00:00:00 2001 From: jiro Date: Tue, 2 Apr 2019 21:56:47 +0900 Subject: [PATCH 0938/1381] Add package eastasianwidth1106 (#1046) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 37df222..ce805c0 100644 --- a/packages.json +++ b/packages.json @@ -12993,5 +12993,18 @@ "description": "Provides a macro to curry function", "license": "MIT", "web": "https://github.com/zer0-star/nim-curry" + }, + { + "name": "eastasianwidth", + "url": "https://github.com/jiro4989/eastasianwidth", + "method": "git", + "tags": [ + "library", + "text", + "east_asian_width" + ], + "description": "eastasianwidth is library for EastAsianWidth.", + "license": "MIT", + "web": "https://github.com/jiro4989/eastasianwidth" } ] From 164bf8890e065a0d96ecb4f8d81cc4c4a88c82b4 Mon Sep 17 00:00:00 2001 From: Solitude Date: Wed, 3 Apr 2019 08:28:52 +0300 Subject: [PATCH 0939/1381] add colorcol package (#1047) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ce805c0..6e5a3e4 100644 --- a/packages.json +++ b/packages.json @@ -13006,5 +13006,19 @@ "description": "eastasianwidth is library for EastAsianWidth.", "license": "MIT", "web": "https://github.com/jiro4989/eastasianwidth" + }, + { + "name": "colorcol", + "url": "https://github.com/SolitudeSF/colorcol", + "method": "git", + "tags": [ + "kakoune", + "plugin", + "color", + "preview" + ], + "description": "Kakoune plugin for color preview", + "license": "MIT", + "web": "https://github.com/SolitudeSF/colorcol" } ] From 842c005d4727eebb29b18f858e3c4e9fac114a9a Mon Sep 17 00:00:00 2001 From: Lolo Iccl Date: Thu, 4 Apr 2019 21:21:33 +0900 Subject: [PATCH 0940/1381] Added package nimly (#1048) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 6e5a3e4..bf8fec0 100644 --- a/packages.json +++ b/packages.json @@ -13020,5 +13020,17 @@ "description": "Kakoune plugin for color preview", "license": "MIT", "web": "https://github.com/SolitudeSF/colorcol" + }, + { + "name": "nimly", + "url": "https://github.com/loloiccl/nimly", + "method": "git", + "tags": [ + "v0.0.0", + "v0.1.0" + ], + "description": "A lexer generator and parser generator package work in Nim.", + "license": "GPL-3.0", + "web": "https://github.com/loloiccl/nimly" } ] From 6902b76fb05512ff9a4a6f3cb57415077a8a3241 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sun, 7 Apr 2019 08:14:20 +0100 Subject: [PATCH 0941/1381] Add fswatch package (#1049) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bf8fec0..72f4f79 100644 --- a/packages.json +++ b/packages.json @@ -13032,5 +13032,19 @@ "description": "A lexer generator and parser generator package work in Nim.", "license": "GPL-3.0", "web": "https://github.com/loloiccl/nimly" + }, + { + "name": "fswatch", + "url": "https://github.com/FedericoCeratto/nim-fswatch", + "method": "git", + "tags": [ + "fswatch", + "fsmonitor", + "libfswatch", + "filesystem" + ], + "description": "Wrapper for the fswatch library.", + "license": "GPL-3.0", + "web": "https://github.com/FedericoCeratto/nim-fswatch" } ] From 11f2c44038d40414babc989f03560afb5f720c6e Mon Sep 17 00:00:00 2001 From: Marc Azar <43026186+MarcAzar@users.noreply.github.com> Date: Mon, 8 Apr 2019 10:22:50 +0300 Subject: [PATCH 0942/1381] add rolling hash (#1044) --- packages.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 72f4f79..2e8516b 100644 --- a/packages.json +++ b/packages.json @@ -14,19 +14,23 @@ "web": "https://marcazar.github.io/BitVector" }, { - "name": "Cyclic-Polynomial-Hash", - "url": "https://github.com/MarcAzar/Cyclic-Polynomial-Hash", + "name": "RollingHash", + "url": "https://github.com/MarcAzar/RollingHash", "method": "git", "tags": [ "Cyclic", "Hash", "BuzHash", "Rolling", + "Rabin", + "Karp", + "CRC", + "Fingerprint", "n-gram" ], - "description": "A Nim implementation of a Cyclic Polynomial Hash, aka BuzHash", + "description": "A high performance Nim implementation of a Cyclic Polynomial Hash, aka BuzHash, and the Rabin-Karp algorithm", "license": "MIT", - "web": "https://marcazar.github.io/Cyclic-Polynomial-Hash" + "web": "https://marcazar.github.io/RollingHash" }, { "name": "BipBuffer", From cc175ec92e80cfe5ebbec61d94ae5b134278853c Mon Sep 17 00:00:00 2001 From: lihaifeng <10214028@qq.com> Date: Mon, 8 Apr 2019 23:44:19 +0800 Subject: [PATCH 0943/1381] Update packages.json (#1050) Add `parseini` library. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 2e8516b..b3c2d6c 100644 --- a/packages.json +++ b/packages.json @@ -13050,5 +13050,17 @@ "description": "Wrapper for the fswatch library.", "license": "GPL-3.0", "web": "https://github.com/FedericoCeratto/nim-fswatch" + }, + { + "name": "parseini", + "url": "https://github.com/lihf8515/parseini", + "method": "git", + "tags": [ + "parseini", + "nim" + ], + "description": "A high-performance ini parse library for nim.", + "license": "MIT", + "web": "https://github.com/lihf8515/parseini" } ] From a2c6f9d3503b1ee50b0693dc55efec5fe93117b4 Mon Sep 17 00:00:00 2001 From: Lolo Iccl Date: Thu, 11 Apr 2019 14:16:55 +0900 Subject: [PATCH 0944/1381] modify tags of nimly (#1054) --- packages.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index b3c2d6c..ef72c9c 100644 --- a/packages.json +++ b/packages.json @@ -13030,8 +13030,12 @@ "url": "https://github.com/loloiccl/nimly", "method": "git", "tags": [ - "v0.0.0", - "v0.1.0" + "BNF", + "EBNF", + "lexer", + "parser", + "lexer-generator", + "parser-generator" ], "description": "A lexer generator and parser generator package work in Nim.", "license": "GPL-3.0", From a96db6e76c99501607551afa62867851b68a04b1 Mon Sep 17 00:00:00 2001 From: "Ahmed T. Youssef" Date: Thu, 11 Apr 2019 20:44:20 +0200 Subject: [PATCH 0945/1381] Added package sonic (#1055) --- packages.json | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 2764c13..daac4fd 100644 --- a/packages.json +++ b/packages.json @@ -13031,12 +13031,12 @@ "url": "https://github.com/loloiccl/nimly", "method": "git", "tags": [ - "BNF", - "EBNF", - "lexer", - "parser", - "lexer-generator", - "parser-generator" + "BNF", + "EBNF", + "lexer", + "parser", + "lexer-generator", + "parser-generator" ], "description": "A lexer generator and parser generator package work in Nim.", "license": "GPL-3.0", @@ -13067,5 +13067,20 @@ "description": "A high-performance ini parse library for nim.", "license": "MIT", "web": "https://github.com/lihf8515/parseini" + }, + { + "name": "sonic", + "url": "https://github.com/xmonader/nim-sonic-client", + "method": "git", + "tags": [ + "sonic", + "search", + "backend", + "index", + "client" + ], + "description": "client for sonic search backend", + "license": "MIT", + "web": "https://github.com/xmonader/nim-sonic-client" } ] From b92b3fee62af12ad7426b8bf804de7bab7399c0e Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Fri, 12 Apr 2019 19:08:20 +0100 Subject: [PATCH 0946/1381] Add nim-science (#1056) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index daac4fd..fa14117 100644 --- a/packages.json +++ b/packages.json @@ -13082,5 +13082,19 @@ "description": "client for sonic search backend", "license": "MIT", "web": "https://github.com/xmonader/nim-sonic-client" + }, + { + "name": "science", + "url": "https://github.com/ruivieira/nim-science", + "method": "git", + "tags": [ + "science", + "algebra", + "statistics", + "math" + ], + "description": "A library for scientific computations in pure Nim", + "license": "Apache License 2.0", + "web": "https://github.com/ruivieira/nim-science" } ] From 5f30a80a0057010eda96a2f5006236602bb4c915 Mon Sep 17 00:00:00 2001 From: jiro Date: Sat, 13 Apr 2019 21:53:49 +0900 Subject: [PATCH 0947/1381] Add package gameoflife (#1057) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index fa14117..f31764b 100644 --- a/packages.json +++ b/packages.json @@ -13096,5 +13096,17 @@ "description": "A library for scientific computations in pure Nim", "license": "Apache License 2.0", "web": "https://github.com/ruivieira/nim-science" + }, + { + "name": "gameoflife", + "url": "https://github.com/jiro4989/gameoflife", + "method": "git", + "tags": [ + "gameoflife", + "library" + ], + "description": "gameoflife is library for Game of Life.", + "license": "MIT", + "web": "https://github.com/jiro4989/gameoflife" } ] From 29da914c1d4a750ccc3a0a2af63aa639b4606487 Mon Sep 17 00:00:00 2001 From: Fabian Keller Date: Sun, 14 Apr 2019 09:48:52 +0200 Subject: [PATCH 0948/1381] change required for closure_methods renaming (#1058) --- packages.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index f31764b..a1e6b76 100644 --- a/packages.json +++ b/packages.json @@ -12972,10 +12972,15 @@ }, { "name": "closure_methods", - "url": "https://github.com/bluenote10/closure_methods", + "alias": "oop_utils" + }, + { + "name": "oop_utils", + "url": "https://github.com/bluenote10/oop_utils", "method": "git", "tags": [ "macro", + "class", "inheritance", "oop", "closure", From c18149370b27265a8d3a645d7e0d96c688828e3e Mon Sep 17 00:00:00 2001 From: Victoria Guevara Date: Sun, 14 Apr 2019 17:08:30 +0300 Subject: [PATCH 0949/1381] Added package conio (#1064) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a1e6b76..d20a15a 100644 --- a/packages.json +++ b/packages.json @@ -13113,5 +13113,18 @@ "description": "gameoflife is library for Game of Life.", "license": "MIT", "web": "https://github.com/jiro4989/gameoflife" + }, + { + "name": "conio", + "url": "https://github.com/guevara-chan/conio", + "method": "git", + "tags": [ + "console", + "terminal", + "io" + ], + "description": ".NET-inspired lightweight terminal library", + "license": "MIT", + "web": "https://github.com/guevara-chan/conio" } ] From b09956c08f3411aa174fbf5cb995d82f3e82f84d Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Sun, 14 Apr 2019 21:32:46 +0200 Subject: [PATCH 0950/1381] Updated description for NPeg (#1065) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d20a15a..0766363 100644 --- a/packages.json +++ b/packages.json @@ -12899,7 +12899,7 @@ "pattern", "matching" ], - "description": "a PEG library", + "description": "PEG (Parsing Expression Grammars) string matching library for Nim", "license": "MIT", "web": "https://github.com/zevv/npeg" }, From e45dae304f54eff5cea65e3d2d96d0b369518ec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Mon, 15 Apr 2019 08:40:43 +0200 Subject: [PATCH 0951/1381] add "nat_traversal" (#1066) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 0766363..8d18a2d 100644 --- a/packages.json +++ b/packages.json @@ -13126,5 +13126,17 @@ "description": ".NET-inspired lightweight terminal library", "license": "MIT", "web": "https://github.com/guevara-chan/conio" + }, + { + "name": "nat_traversal", + "url": "https://github.com/status-im/nim-nat-traversal", + "method": "git", + "tags": [ + "library", + "wrapper" + ], + "description": "miniupnpc and libnatpmp wrapper", + "license": "Apache License 2.0 or MIT", + "web": "https://github.com/status-im/nim-nat-traversal" } ] From df2d36fd6f722aecb91c79bb4a3c05e9a0860ec5 Mon Sep 17 00:00:00 2001 From: Jairo Date: Thu, 18 Apr 2019 19:09:57 +0200 Subject: [PATCH 0952/1381] Added package jsutils --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 8d18a2d..cfb1dad 100644 --- a/packages.json +++ b/packages.json @@ -13138,5 +13138,16 @@ "description": "miniupnpc and libnatpmp wrapper", "license": "Apache License 2.0 or MIT", "web": "https://github.com/status-im/nim-nat-traversal" + }, + { + "name": "jsutils", + "url": "https://github.com/kidandcat/jsutils", + "method": "git", + "tags": [ + "v0.1.0" + ], + "description": "Utils to work with javascript", + "license": "MIT", + "web": "https://github.com/kidandcat/jsutils" } ] From 6cbd19f263a476780eca7e0ae7bb4af3aad12a46 Mon Sep 17 00:00:00 2001 From: Jairo Date: Thu, 18 Apr 2019 20:04:46 +0200 Subject: [PATCH 0953/1381] Update packages.json --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index cfb1dad..754a855 100644 --- a/packages.json +++ b/packages.json @@ -13144,7 +13144,8 @@ "url": "https://github.com/kidandcat/jsutils", "method": "git", "tags": [ - "v0.1.0" + "library", + "javascript" ], "description": "Utils to work with javascript", "license": "MIT", From 5a15aad6f7d7d780a310415ecf9158e1f156af8e Mon Sep 17 00:00:00 2001 From: jiro4989 Date: Sun, 21 Apr 2019 10:34:53 +0900 Subject: [PATCH 0954/1381] Added package pnm --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 754a855..cb090ab 100644 --- a/packages.json +++ b/packages.json @@ -13150,5 +13150,18 @@ "description": "Utils to work with javascript", "license": "MIT", "web": "https://github.com/kidandcat/jsutils" + }, + { + "name": "pnm", + "url": "https://github.com/jiro4989/pnm", + "method": "git", + "tags": [ + "pnm", + "image", + "library" + ], + "description": "pnm is library for PNM (Portable AnyMap).", + "license": "MIT", + "web": "https://github.com/jiro4989/pnm" } ] From 1eb98daf8d6767ffd75ccc3d2ca012e2b38c6644 Mon Sep 17 00:00:00 2001 From: jiro Date: Tue, 23 Apr 2019 14:43:38 +0900 Subject: [PATCH 0955/1381] Added package ski (#1070) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index cb090ab..a58a06a 100644 --- a/packages.json +++ b/packages.json @@ -13163,5 +13163,18 @@ "description": "pnm is library for PNM (Portable AnyMap).", "license": "MIT", "web": "https://github.com/jiro4989/pnm" + }, + { + "name": "ski", + "url": "https://github.com/jiro4989/ski", + "method": "git", + "tags": [ + "ski", + "combinator", + "library" + ], + "description": "ski is library for SKI combinator.", + "license": "MIT", + "web": "https://github.com/jiro4989/ski" } ] From 38f46ad19759a20c17be5cba161685d582348b7d Mon Sep 17 00:00:00 2001 From: jrfondren <41455523+jrfondren@users.noreply.github.com> Date: Tue, 23 Apr 2019 01:27:32 -0500 Subject: [PATCH 0956/1381] Added package getr (#1069) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a58a06a..cd7a9cb 100644 --- a/packages.json +++ b/packages.json @@ -13151,6 +13151,18 @@ "license": "MIT", "web": "https://github.com/kidandcat/jsutils" }, + { + "name": "getr", + "url": "https://github.com/jrfondren/getr-nim", + "method": "git", + "tags": [ + "benchmark", + "utility" + ], + "description": "Benchmarking wrapper around getrusage()", + "license": "MIT", + "web": "https://github.com/jrfondren/getr-nim" + }, { "name": "pnm", "url": "https://github.com/jiro4989/pnm", From 6ce24cb665890d6182ac966f32d1bcdebbebbca1 Mon Sep 17 00:00:00 2001 From: Solitude Date: Thu, 25 Apr 2019 09:03:41 +0300 Subject: [PATCH 0957/1381] Add imageman package (#1071) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cd7a9cb..d079f8b 100644 --- a/packages.json +++ b/packages.json @@ -13188,5 +13188,19 @@ "description": "ski is library for SKI combinator.", "license": "MIT", "web": "https://github.com/jiro4989/ski" + }, + { + "name": "imageman", + "url": "https://github.com/SolitudeSF/imageman", + "method": "git", + "tags": [ + "image", + "graphics", + "processing", + "manipulation" + ], + "description": "Image manipulation library", + "license": "MIT", + "web": "https://github.com/SolitudeSF/imageman" } ] From 75045c882298a8f9d6e560be5d46df938fbc6a80 Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Tue, 30 Apr 2019 10:44:47 +0100 Subject: [PATCH 0958/1381] Add matplotnim (#1072) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index d079f8b..72d471b 100644 --- a/packages.json +++ b/packages.json @@ -13202,5 +13202,20 @@ "description": "Image manipulation library", "license": "MIT", "web": "https://github.com/SolitudeSF/imageman" + }, + { + "name": "matplotnim", + "url": "https://github.com/ruivieira/matplotnim", + "method": "git", + "tags": [ + "science", + "plotting", + "graphics", + "wrapper", + "library" + ], + "description": "A Nim wrapper for Python's matplotlib", + "license": "Apache License 2.0", + "web": "https://github.com/ruivieira/matplotnim" } ] From 2cdd363a34c3dcdc8e0e9b5818347803b10f7bca Mon Sep 17 00:00:00 2001 From: Victoria Guevara Date: Fri, 3 May 2019 10:24:51 +0300 Subject: [PATCH 0959/1381] Added package cliptomania (#1073) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 72d471b..d0969e1 100644 --- a/packages.json +++ b/packages.json @@ -13217,5 +13217,17 @@ "description": "A Nim wrapper for Python's matplotlib", "license": "Apache License 2.0", "web": "https://github.com/ruivieira/matplotnim" + }, + { + "name": "cliptomania", + "url": "https://github.com/Guevara-chan/Cliptomania", + "method": "git", + "tags": [ + "clip", + "clipboard" + ], + "description": ".NET-inspired lightweight clipboard library", + "license": "MIT", + "web": "https://github.com/Guevara-chan/Cliptomania" } ] From cc7868f7d1ec59047fa9604c3aa0063e03998057 Mon Sep 17 00:00:00 2001 From: Solitude Date: Sun, 5 May 2019 09:23:01 +0300 Subject: [PATCH 0960/1381] Added package mpdclient (#1074) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d0969e1..e1b31e9 100644 --- a/packages.json +++ b/packages.json @@ -13229,5 +13229,19 @@ "description": ".NET-inspired lightweight clipboard library", "license": "MIT", "web": "https://github.com/Guevara-chan/Cliptomania" + }, + { + "name": "mpdclient", + "url": "https://github.com/SolitudeSF/mpdclient", + "method": "git", + "tags": [ + "mpd", + "music", + "player", + "client" + ], + "description": "MPD client library", + "license": "MIT", + "web": "https://github.com/SolitudeSF/mpdclient" } ] From 8c1e5e9f50e7fdfc1969a0c2a2eb22061a47263d Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Tue, 7 May 2019 12:56:35 +0100 Subject: [PATCH 0961/1381] Add nim-mentat (https://github.com/ruivieira/nim-mentat) (#1075) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index e1b31e9..bf4ed28 100644 --- a/packages.json +++ b/packages.json @@ -13243,5 +13243,21 @@ "description": "MPD client library", "license": "MIT", "web": "https://github.com/SolitudeSF/mpdclient" + }, + { + "name": "mentat", + "url": "https://github.com/ruivieira/nim-mentat", + "method": "git", + "tags": [ + "science", + "machine-learning", + "data-science", + "statistics", + "math", + "library" + ], + "description": "A Nim library for data science and machine learning", + "license": "Apache License 2.0", + "web": "https://github.com/ruivieira/nim-mentat" } ] From e0318de63b242ade81814ab7b1101ea43b42f837 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Tue, 7 May 2019 11:41:59 -0400 Subject: [PATCH 0962/1381] Added package svdpi (#1076) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bf4ed28..16dddf9 100644 --- a/packages.json +++ b/packages.json @@ -13259,5 +13259,19 @@ "description": "A Nim library for data science and machine learning", "license": "Apache License 2.0", "web": "https://github.com/ruivieira/nim-mentat" + }, + { + "name": "svdpi", + "url": "https://github.com/kaushalmodi/nim-svdpi", + "method": "git", + "tags": [ + "dpi-c", + "systemverilog", + "foreign-function", + "interface" + ], + "description": "Small wrapper for SystemVerilog DPI-C header svdpi.h", + "license": "MIT", + "web": "https://github.com/kaushalmodi/nim-svdpi" } ] From 18561258d8840c3a46df43af19743fab9fe77ab8 Mon Sep 17 00:00:00 2001 From: Solitude Date: Tue, 7 May 2019 19:41:23 +0300 Subject: [PATCH 0963/1381] Add package shlex (#1077) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 16dddf9..251144b 100644 --- a/packages.json +++ b/packages.json @@ -13273,5 +13273,19 @@ "description": "Small wrapper for SystemVerilog DPI-C header svdpi.h", "license": "MIT", "web": "https://github.com/kaushalmodi/nim-svdpi" + }, + { + "name": "shlex", + "url": "https://github.com/SolitudeSF/shlex", + "method": "git", + "tags": [ + "shlex", + "shell", + "parse", + "split" + ], + "description": "Library for splitting a string into shell words", + "license": "MIT", + "web": "https://github.com/SolitudeSF/shlex" } ] From e8ee2fd369e3366cb8eccf821db5864fba5cf41f Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Wed, 8 May 2019 00:12:26 +0100 Subject: [PATCH 0964/1381] Add Prometheus package --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 251144b..17e70ff 100644 --- a/packages.json +++ b/packages.json @@ -13287,5 +13287,18 @@ "description": "Library for splitting a string into shell words", "license": "MIT", "web": "https://github.com/SolitudeSF/shlex" + }, + { + "name": "prometheus", + "url": "https://github.com/dom96/prometheus", + "method": "git", + "tags": [ + "metrics", + "logging", + "graphs" + ], + "description": "Library for exposing metrics to Prometheus", + "license": "MIT", + "web": "https://github.com/dom96/prometheus" } ] From 1c512ce59b20fdffb19da989d16eb3484edf227b Mon Sep 17 00:00:00 2001 From: John Conway Date: Thu, 9 May 2019 15:49:40 +0100 Subject: [PATCH 0965/1381] Added package feednim (#1078) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 17e70ff..cde0643 100644 --- a/packages.json +++ b/packages.json @@ -13300,5 +13300,16 @@ "description": "Library for exposing metrics to Prometheus", "license": "MIT", "web": "https://github.com/dom96/prometheus" + }, + { + "name": "feednim", + "url": "https://github.com/johnconway/feed-nim", + "method": "git", + "tags": [ + "yes" + ], + "description": "An Atom, RSS, and JSONfeed parser", + "license": "MIT", + "web": "https://github.com/johnconway/feed-nim" } ] From 60e878994a2b89e20ba00be73ad3b9e701ae6c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Czapli=C5=84ski?= Date: Mon, 20 May 2019 06:40:27 +0200 Subject: [PATCH 0966/1381] Added package dali (#1080) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index cde0643..1437d6a 100644 --- a/packages.json +++ b/packages.json @@ -13311,5 +13311,20 @@ "description": "An Atom, RSS, and JSONfeed parser", "license": "MIT", "web": "https://github.com/johnconway/feed-nim" + }, + { + "name": "dali", + "url": "https://github.com/akavel/dali", + "method": "git", + "tags": [ + "android", + "apk", + "dalvik", + "dex", + "assembler" + ], + "description": "Indie assembler/linker for Android's Dalvik VM .dex & .apk files", + "license": "AGPL-3.0", + "web": "https://github.com/akavel/dali" } ] From 1ec87a75c54cd08b11f8cab78743dcf0fda71e84 Mon Sep 17 00:00:00 2001 From: Jon Renner Date: Mon, 20 May 2019 01:11:13 -0500 Subject: [PATCH 0967/1381] Added package simplepng (#1079) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1437d6a..e5fa8b5 100644 --- a/packages.json +++ b/packages.json @@ -13312,6 +13312,18 @@ "license": "MIT", "web": "https://github.com/johnconway/feed-nim" }, + { + "name": "simplepng", + "url": "https://github.com/jrenner/nim-simplepng", + "method": "git", + "tags": [ + "png", + "image" + ], + "description": "high level simple way to write PNGs", + "license": "MIT", + "web": "https://github.com/jrenner/nim-simplepng" + }, { "name": "dali", "url": "https://github.com/akavel/dali", From 088b4c2657766a68409872f999ab9e9005c3e426 Mon Sep 17 00:00:00 2001 From: jiro Date: Fri, 24 May 2019 18:36:14 +0900 Subject: [PATCH 0968/1381] Add package rect (#1081) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e5fa8b5..97f5634 100644 --- a/packages.json +++ b/packages.json @@ -13338,5 +13338,19 @@ "description": "Indie assembler/linker for Android's Dalvik VM .dex & .apk files", "license": "AGPL-3.0", "web": "https://github.com/akavel/dali" + }, + { + "name": "rect", + "url": "https://github.com/jiro4989/rect", + "method": "git", + "tags": [ + "cli", + "tool", + "text", + "rectangle" + ], + "description": "rect is a command to crop/paste rectangle text.", + "license": "MIT", + "web": "https://github.com/jiro4989/rect" } ] From 2fb5143a6d9a418b63dcdb6b63d3a11811443ce5 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Sat, 25 May 2019 02:33:44 -0400 Subject: [PATCH 0969/1381] Added package p4ztag_to_json (#1082) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 97f5634..e4469c1 100644 --- a/packages.json +++ b/packages.json @@ -13352,5 +13352,20 @@ "description": "rect is a command to crop/paste rectangle text.", "license": "MIT", "web": "https://github.com/jiro4989/rect" + }, + { + "name": "p4ztag_to_json", + "url": "https://github.com/kaushalmodi/p4ztag_to_json", + "method": "git", + "tags": [ + "perforce", + "p4", + "ztag", + "serialization-format", + "json" + ], + "description": "Convert Helix Version Control / Perforce (p4) -ztag output to JSON", + "license": "MIT", + "web": "https://github.com/kaushalmodi/p4ztag_to_json" } ] From bd42c248d6dfbf7eae513a6b0a6af7b4720422b6 Mon Sep 17 00:00:00 2001 From: xmonader Date: Wed, 29 May 2019 07:57:49 +0200 Subject: [PATCH 0970/1381] Added package terminaltables (#1083) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e4469c1..08386b6 100644 --- a/packages.json +++ b/packages.json @@ -13367,5 +13367,19 @@ "description": "Convert Helix Version Control / Perforce (p4) -ztag output to JSON", "license": "MIT", "web": "https://github.com/kaushalmodi/p4ztag_to_json" + }, + { + "name": "terminaltables", + "url": "https://github.com/xmonader/nim-terminaltables", + "method": "git", + "tags": [ + "terminal", + "tables", + "ascii", + "unicode" + ], + "description": "terminal tables", + "license": "BSD-3-Clause", + "web": "https://github.com/xmonader/nim-terminaltables" } ] From bab0824db60aa1a78e70f5d46e13ff046c620770 Mon Sep 17 00:00:00 2001 From: jiro Date: Thu, 30 May 2019 18:21:49 +0900 Subject: [PATCH 0971/1381] Added package alignment (#1084) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 08386b6..a34419f 100644 --- a/packages.json +++ b/packages.json @@ -13381,5 +13381,20 @@ "description": "terminal tables", "license": "BSD-3-Clause", "web": "https://github.com/xmonader/nim-terminaltables" + }, + { + "name": "alignment", + "url": "https://github.com/jiro4989/alignment", + "method": "git", + "tags": [ + "library", + "text", + "align", + "string", + "strutils" + ], + "description": "alignment is a library to align strings.", + "license": "MIT", + "web": "https://github.com/jiro4989/alignment" } ] From 7ebf94eee4766780ade4a67bae2ea0d13de20fdb Mon Sep 17 00:00:00 2001 From: Dario Lah Date: Fri, 31 May 2019 21:39:06 +0200 Subject: [PATCH 0972/1381] Added package niup (#1085) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a34419f..601c6bf 100644 --- a/packages.json +++ b/packages.json @@ -13396,5 +13396,18 @@ "description": "alignment is a library to align strings.", "license": "MIT", "web": "https://github.com/jiro4989/alignment" + }, + { + "name": "niup", + "url": "https://github.com/dariolah/niup", + "method": "git", + "tags": [ + "iup", + "gui", + "nim" + ], + "description": "IUP FFI bindings", + "license": "MIT", + "web": "https://github.com/dariolah/niup" } ] From 42783c2ef5ad714add594c80b62c5da4b62966f8 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Sat, 1 Jun 2019 14:35:38 +0100 Subject: [PATCH 0973/1381] Add libgcrypt (#1086) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 601c6bf..f42d68d 100644 --- a/packages.json +++ b/packages.json @@ -13409,5 +13409,19 @@ "description": "IUP FFI bindings", "license": "MIT", "web": "https://github.com/dariolah/niup" + }, + { + "name": "libgcrypt", + "url": "https://github.com/FedericoCeratto/nim-libgcrypt", + "method": "git", + "tags": [ + "wrapper", + "library", + "security", + "crypto" + ], + "description": "libgcrypt wrapper", + "license": "LGPLv2.1", + "web": "https://github.com/FedericoCeratto/nim-libgcrypt" } ] From a80fc6543f9daaedc0e24fbaa679c9057b5cbf16 Mon Sep 17 00:00:00 2001 From: ehmry Date: Tue, 4 Jun 2019 17:28:11 +0200 Subject: [PATCH 0974/1381] Added package toxcore (#1090) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f42d68d..2e68a18 100644 --- a/packages.json +++ b/packages.json @@ -13423,5 +13423,18 @@ "description": "libgcrypt wrapper", "license": "LGPLv2.1", "web": "https://github.com/FedericoCeratto/nim-libgcrypt" + }, + { + "name": "toxcore", + "url": "https://github.com/ehmry/nim_tox", + "method": "git", + "tags": [ + "tox", + "chat", + "wrapper" + ], + "description": "C Tox core wrapper", + "license": "GPL-3.0", + "web": "https://github.com/ehmry/nim_tox" } ] From 2e8ee7a0291eb8d418a5d5335aae59cfb9e26676 Mon Sep 17 00:00:00 2001 From: Solitude Date: Tue, 4 Jun 2019 18:49:58 +0300 Subject: [PATCH 0975/1381] Add packages: masterpassword, mpwc (#1091) --- packages.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages.json b/packages.json index 2e68a18..9845e1e 100644 --- a/packages.json +++ b/packages.json @@ -13424,6 +13424,33 @@ "license": "LGPLv2.1", "web": "https://github.com/FedericoCeratto/nim-libgcrypt" }, + { + "name": "masterpassword", + "url": "https://github.com/SolitudeSF/masterpassword", + "method": "git", + "tags": [ + "masterpassword", + "password", + "stateless" + ], + "description": "Master Password algorith implementation", + "license": "MIT", + "web": "https://github.com/SolitudeSF/masterpassword" + }, + { + "name": "mpwc", + "url": "https://github.com/SolitudeSF/mpwc", + "method": "git", + "tags": [ + "masterpassword", + "password", + "manager", + "stateless" + ], + "description": "Master Password command line utility", + "license": "MIT", + "web": "https://github.com/SolitudeSF/mpwc" + }, { "name": "toxcore", "url": "https://github.com/ehmry/nim_tox", From 7470bfcaeb1ebaeb146d1a9b790f44e8cca55957 Mon Sep 17 00:00:00 2001 From: iLiquid Date: Thu, 6 Jun 2019 20:28:34 +0200 Subject: [PATCH 0976/1381] Added package rapid (#1092) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 9845e1e..36fbaae 100644 --- a/packages.json +++ b/packages.json @@ -13463,5 +13463,20 @@ "description": "C Tox core wrapper", "license": "GPL-3.0", "web": "https://github.com/ehmry/nim_tox" + }, + { + "name": "rapid", + "url": "https://github.com/liquid600pgm/rapid", + "method": "git", + "tags": [ + "game", + "engine", + "2d", + "graphics", + "audio" + ], + "description": "A game engine for rapid development and easy prototyping", + "license": "MIT", + "web": "https://github.com/liquid600pgm/rapid" } ] From efdcc9f9315e9f3c026bfe101b61ce88f01d1db6 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 7 Jun 2019 21:45:33 +0100 Subject: [PATCH 0977/1381] Add GnuTLS wrapper (#1094) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 36fbaae..613ee0a 100644 --- a/packages.json +++ b/packages.json @@ -13478,5 +13478,19 @@ "description": "A game engine for rapid development and easy prototyping", "license": "MIT", "web": "https://github.com/liquid600pgm/rapid" + }, + { + "name": "gnutls", + "url": "https://github.com/FedericoCeratto/nim-gnutls", + "method": "git", + "tags": [ + "wrapper", + "library", + "security", + "crypto" + ], + "description": "GnuTLS wrapper", + "license": "LGPLv2.1", + "web": "https://github.com/FedericoCeratto/nim-gnutls" } ] From 3ced7f1ba160eccf2236f58e0de7a38f49312e32 Mon Sep 17 00:00:00 2001 From: Volodymyr Melnychuk Date: Wed, 12 Jun 2019 14:21:52 +0300 Subject: [PATCH 0978/1381] add news package (#1095) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 613ee0a..efad3ba 100644 --- a/packages.json +++ b/packages.json @@ -13492,5 +13492,17 @@ "description": "GnuTLS wrapper", "license": "LGPLv2.1", "web": "https://github.com/FedericoCeratto/nim-gnutls" + }, + { + "name": "news", + "url": "https://github.com/tormund/news", + "method": "git", + "tags": [ + "websocket", + "chronos" + ], + "description": "Easy websocket with chronos support", + "license": "MIT", + "web": "https://github.com/tormund/news" } ] From 57b66e58ab2aa22c265646a3bde5ea079b9f0b21 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 14 Jun 2019 06:19:36 +0100 Subject: [PATCH 0979/1381] Add Tor helper library (#1096) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index efad3ba..8beec97 100644 --- a/packages.json +++ b/packages.json @@ -13504,5 +13504,20 @@ "description": "Easy websocket with chronos support", "license": "MIT", "web": "https://github.com/tormund/news" + }, + { + "name": "tor", + "url": "https://github.com/FedericoCeratto/nim-tor", + "method": "git", + "tags": [ + "library", + "security", + "crypto", + "tor", + "onion" + ], + "description": "Tor helper library", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-tor" } ] From 29038ddac72de53404883c4b2425f5268d961de5 Mon Sep 17 00:00:00 2001 From: jiro Date: Fri, 21 Jun 2019 02:06:56 +0900 Subject: [PATCH 0980/1381] Add package nimjson (#1097) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 8beec97..e26e8fa 100644 --- a/packages.json +++ b/packages.json @@ -13519,5 +13519,20 @@ "description": "Tor helper library", "license": "LGPLv3", "web": "https://github.com/FedericoCeratto/nim-tor" + }, + { + "name": "nimjson", + "url": "https://github.com/jiro4989/nimjson", + "method": "git", + "tags": [ + "lib", + "cli", + "command", + "json", + "library" + ], + "description": "nimjson generates nim object definitions from json documents.", + "license": "MIT", + "web": "https://github.com/jiro4989/nimjson" } ] From 7dc8e195ba753c2b61079c6123ac43ae1eeb7e5b Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Thu, 20 Jun 2019 14:16:36 -0400 Subject: [PATCH 0981/1381] Updating the bignum package source to a fork that works on Nim 0.20 The original repo https://github.com/FedeOmoto/bignum hasn't been maintained in many years. I am not an expert in bignum but I am maintaining a fork of it that runs with the latest stable Nim version (v0.20.0 as of today). --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index e26e8fa..60b19aa 100644 --- a/packages.json +++ b/packages.json @@ -2989,7 +2989,7 @@ }, { "name": "bignum", - "url": "https://github.com/FedeOmoto/bignum", + "url": "https://github.com/kaushalmodi/bignum", "method": "git", "tags": [ "bignum", @@ -2998,7 +2998,7 @@ ], "description": "Wrapper around the GMP bindings for the Nim language.", "license": "MIT", - "web": "https://github.com/FedeOmoto/bignum" + "web": "https://github.com/kaushalmodi/bignum" }, { "name": "rbtree", From 68b2951e47d0870fccff8467d1077cfcb8669126 Mon Sep 17 00:00:00 2001 From: nepeckman Date: Fri, 21 Jun 2019 01:41:46 -0400 Subject: [PATCH 0982/1381] Added nerve rpc framework (#1099) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 60b19aa..1941fe2 100644 --- a/packages.json +++ b/packages.json @@ -13534,5 +13534,21 @@ "description": "nimjson generates nim object definitions from json documents.", "license": "MIT", "web": "https://github.com/jiro4989/nimjson" + }, + { + "name": "nerve", + "url": "https://github.com/nepeckman/nerve-rpc", + "method": "git", + "tags": [ + "rpc", + "framework", + "web", + "json", + "api", + "library" + ], + "description": "A RPC framework for building web APIs", + "license": "MIT", + "web": "https://github.com/nepeckman/nerve-rpc" } ] From 3974d405b4567e552e5509d40cc2bbec2c481d1a Mon Sep 17 00:00:00 2001 From: Hermes Junior <34722728+OHermesJunior@users.noreply.github.com> Date: Mon, 24 Jun 2019 13:51:54 +0200 Subject: [PATCH 0983/1381] Added package lolcat (#1100) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 1941fe2..5a6a31b 100644 --- a/packages.json +++ b/packages.json @@ -13550,5 +13550,20 @@ "description": "A RPC framework for building web APIs", "license": "MIT", "web": "https://github.com/nepeckman/nerve-rpc" + }, + { + "name": "lolcat", + "url": "https://github.com/OHermesJunior/lolcat.nim", + "method": "git", + "tags": [ + "lolcat", + "binary", + "tool", + "colors", + "fun" + ], + "description": "lolcat implementation in Nim", + "license": "MIT", + "web": "https://github.com/OHermesJunior/lolcat.nim" } ] From b6b3b5eb07e6ef3c3b3324b0a5d4f6505aff500b Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Tue, 25 Jun 2019 14:24:34 +0700 Subject: [PATCH 0984/1381] Added package dnsclient (#1101) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 5a6a31b..7f8a31a 100644 --- a/packages.json +++ b/packages.json @@ -13565,5 +13565,17 @@ "description": "lolcat implementation in Nim", "license": "MIT", "web": "https://github.com/OHermesJunior/lolcat.nim" + }, + { + "name": "dnsclient", + "url": "https://github.com/ba0f3/dnsclient.nim", + "method": "git", + "tags": [ + "dns", + "dnsclient" + ], + "description": "Simple DNS Client & Library", + "license": "MIT", + "web": "https://github.com/ba0f3/dnsclient.nim" } ] From e16d413c57e115aa4b8febd2824b7d6ef6a91970 Mon Sep 17 00:00:00 2001 From: Hermes Junior <34722728+OHermesJunior@users.noreply.github.com> Date: Wed, 26 Jun 2019 21:09:45 +0200 Subject: [PATCH 0985/1381] Added package rain (#1102) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 7f8a31a..b53781a 100644 --- a/packages.json +++ b/packages.json @@ -13577,5 +13577,19 @@ "description": "Simple DNS Client & Library", "license": "MIT", "web": "https://github.com/ba0f3/dnsclient.nim" + }, + { + "name": "rain", + "url": "https://github.com/OHermesJunior/rain.nim", + "method": "git", + "tags": [ + "rain", + "simulation", + "terminal", + "fun" + ], + "description": "Rain simulation in your terminal", + "license": "MIT", + "web": "https://github.com/OHermesJunior/rain.nim" } ] From 133b645f28d6ec4f4d236903251af008c33b3d10 Mon Sep 17 00:00:00 2001 From: alaviss Date: Thu, 27 Jun 2019 14:57:25 +0700 Subject: [PATCH 0986/1381] Added package kmod (#1103) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index b53781a..32aa1e3 100644 --- a/packages.json +++ b/packages.json @@ -13591,5 +13591,17 @@ "description": "Rain simulation in your terminal", "license": "MIT", "web": "https://github.com/OHermesJunior/rain.nim" + }, + { + "name": "kmod", + "url": "https://github.com/alaviss/kmod", + "method": "git", + "tags": [ + "kmod", + "wrapper" + ], + "description": "High-level wrapper for Linux's kmod library", + "license": "ISC", + "web": "https://github.com/alaviss/kmod" } ] From 628f5c42ed2c36359dea66db212572cee4dc6baa Mon Sep 17 00:00:00 2001 From: Akito13 Date: Thu, 27 Jun 2019 16:35:44 +0200 Subject: [PATCH 0987/1381] Added package "validateip" (#1104) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 32aa1e3..519f1ac 100644 --- a/packages.json +++ b/packages.json @@ -13603,5 +13603,20 @@ "description": "High-level wrapper for Linux's kmod library", "license": "ISC", "web": "https://github.com/alaviss/kmod" + }, + { + "name": "validateip", + "url": "https://github.com/Akito13/nim-validateip", + "method": "git", + "tags": [ + "ip", + "ipaddress", + "ipv4", + "ip4", + "checker", + "check" + ], + "description": "Checks if a provided string is actually a correct IP address. Supports detection of Class A to D of IPv4 addresses.", + "license": "GPLv3+" } ] From 31c2773a86067c0cb74614bbaf0d9675ccf288dc Mon Sep 17 00:00:00 2001 From: Hermes Junior <34722728+OHermesJunior@users.noreply.github.com> Date: Thu, 27 Jun 2019 20:57:32 +0200 Subject: [PATCH 0988/1381] Added package RC4 (#1105) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 519f1ac..00b7ab5 100644 --- a/packages.json +++ b/packages.json @@ -13618,5 +13618,20 @@ ], "description": "Checks if a provided string is actually a correct IP address. Supports detection of Class A to D of IPv4 addresses.", "license": "GPLv3+" + }, + { + "name": "RC4", + "url": "https://github.com/OHermesJunior/nimRC4", + "method": "git", + "tags": [ + "RC4", + "encryption", + "library", + "crypto", + "simple" + ], + "description": "RC4 library implementation", + "license": "MIT", + "web": "https://github.com/OHermesJunior/nimRC4" } ] From d3b1af93f3ef590dc174ea73ae4978301ca2ef84 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 28 Jun 2019 08:43:42 -0300 Subject: [PATCH 0989/1381] Added package contra (#1106) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 00b7ab5..f993439 100644 --- a/packages.json +++ b/packages.json @@ -13633,5 +13633,19 @@ "description": "RC4 library implementation", "license": "MIT", "web": "https://github.com/OHermesJunior/nimRC4" + }, + { + "name": "contra", + "url": "https://github.com/juancarlospaco/nim-contra", + "method": "git", + "tags": [ + "contract", + "nimscript", + "javascript", + "compiletime" + ], + "description": "Lightweight Contract Programming, Design by Contract, on 9 LoC, NimScript, JavaScript, compile-time.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-contra" } ] From baa4017e01faef9980bf5a3c196e9cdfdc2d191e Mon Sep 17 00:00:00 2001 From: BinHong Lee Date: Wed, 3 Jul 2019 04:12:23 -0700 Subject: [PATCH 0990/1381] Added package wings (#1109) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f993439..d29d1ff 100644 --- a/packages.json +++ b/packages.json @@ -13647,5 +13647,20 @@ "description": "Lightweight Contract Programming, Design by Contract, on 9 LoC, NimScript, JavaScript, compile-time.", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-contra" + }, + { + "name": "wings", + "url": "https://github.com/binhonglee/wings", + "method": "git", + "tags": [ + "library", + "binary", + "codegen", + "struct", + "enum" + ], + "description": "A simple cross language struct and enum file generator.", + "license": "MIT", + "web": "https://github.com/binhonglee/wings" } ] From 1b54edd0c2b2193bf37d2785767f7059c0a85677 Mon Sep 17 00:00:00 2001 From: Akito13 Date: Thu, 4 Jul 2019 09:24:11 +0200 Subject: [PATCH 0991/1381] Updated and fixed "easy_bcrypt" (#1107) --- packages.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/packages.json b/packages.json index d29d1ff..60edef8 100644 --- a/packages.json +++ b/packages.json @@ -2008,8 +2008,8 @@ "web": "https://github.com/fenekku/moustachu" }, { - "name": "easy-bcrypt", - "url": "https://github.com/flaviut/easy-bcrypt.git", + "name": "easy_bcrypt", + "url": "https://github.com/Akito13/easy-bcrypt.git", "method": "git", "tags": [ "hash", @@ -2017,9 +2017,8 @@ "password", "bcrypt" ], - "description": "simple wrapper providing a convenient interface for the bcrypt password hashing algorithm", - "license": "CC0", - "web": "https://github.com/flaviut/easy-bcrypt/blob/master/easy-bcrypt.nimble" + "description": "A simple wrapper providing a convenient reentrant interface for the bcrypt password hashing algorithm.", + "license": "CC0" }, { "name": "libclang", From 86543759037dbf8f3fffb7e47206be1aa8c0da90 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Sun, 7 Jul 2019 12:38:06 +0300 Subject: [PATCH 0992/1381] Add Status stew --- packages.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages.json b/packages.json index 60edef8..3ef8cc4 100644 --- a/packages.json +++ b/packages.json @@ -6074,6 +6074,26 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-std-shims" }, + { + "name": "stew", + "url": "https://github.com/status-im/nim-stew", + "method": "git", + "tags": [ + "library", + "backports", + "shims", + "ranges", + "bitwise", + "bitops", + "endianness", + "bytes", + "blobs", + "pointer-arithmetic" + ], + "description": "stew is collection of utilities, std library extensions and budding libraries that are frequently used at Status, but are too small to deserve their own git repository.", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-stew" + }, { "name": "faststreams", "url": "https://github.com/status-im/nim-faststreams", From c9b4e7207e3874161df9e9b9f3651bb4dd056f83 Mon Sep 17 00:00:00 2001 From: c-blake Date: Mon, 8 Jul 2019 10:07:57 -0400 Subject: [PATCH 0993/1381] Add package for "lc" (#1111) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 3ef8cc4..6e874ac 100644 --- a/packages.json +++ b/packages.json @@ -13681,5 +13681,21 @@ "description": "A simple cross language struct and enum file generator.", "license": "MIT", "web": "https://github.com/binhonglee/wings" + }, + { + "name": "lc", + "url": "https://github.com/c-blake/lc", + "method": "git", + "tags": [ + "terminal", + "cli", + "binary", + "linux", + "unix", + "bsd" + ], + "description": "A post-modern, \"multi-dimensional\" configurable ls/file lister", + "license": "MIT", + "web": "https://github.com/c-blake/lc" } ] From 018e49642a5f7163600e2f1a4a33f70342c37206 Mon Sep 17 00:00:00 2001 From: PMunch Date: Tue, 9 Jul 2019 16:21:20 +0200 Subject: [PATCH 0994/1381] Add optionsutils package (#1112) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6e874ac..8ef01c9 100644 --- a/packages.json +++ b/packages.json @@ -1221,6 +1221,19 @@ "license": "MIT", "web": "https://github.com/PMunch/nimlsp" }, + { + "name": "optionsutils", + "url": "https://github.com/PMunch/nim-optionsutils", + "method": "git", + "tags": [ + "options", + "library", + "safety" + ], + "description": "Utility macros for easier handling of options in Nim", + "license": "MIT", + "web": "https://github.com/PMunch/nim-optionsutils" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 6bbf9d6e61846df04fa12531b157367ab48d5752 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 10 Jul 2019 12:52:03 +0300 Subject: [PATCH 0995/1381] Add a metrics library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 8ef01c9..e610f81 100644 --- a/packages.json +++ b/packages.json @@ -6162,6 +6162,20 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-eth" }, + { + "name": "metrics", + "url": "https://github.com/status-im/nim-metrics", + "method": "git", + "tags": [ + "library", + "metrics", + "prometheus", + "statsd" + ], + "description": "Nim metrics client library supporting the Prometheus monitoring toolkit", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-metrics" + }, { "name": "blscurve", "url": "https://github.com/status-im/nim-blscurve", From 17428fb2de2de8fa3a1022fa53bd6e061a97d672 Mon Sep 17 00:00:00 2001 From: "Michael A. Sinclair" Date: Thu, 11 Jul 2019 03:03:37 -0500 Subject: [PATCH 0996/1381] Add package nasher (#1114) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index e610f81..ef11d21 100644 --- a/packages.json +++ b/packages.json @@ -13724,5 +13724,21 @@ "description": "A post-modern, \"multi-dimensional\" configurable ls/file lister", "license": "MIT", "web": "https://github.com/c-blake/lc" + }, + { + "name": "nasher", + "url": "https://github.com/squattingmonk/nasher.nim", + "method": "git", + "tags": [ + "nwn", + "neverwinternights", + "neverwinter", + "game", + "bioware", + "build" + ], + "description": "A build tool for Neverwinter Nights projects", + "license": "MIT", + "web": "https://github.com/squattingmonk/nasher.nim" } ] From ad1e44fbb394201d23a0e37d79cd94244ba928c2 Mon Sep 17 00:00:00 2001 From: John Novak Date: Sat, 13 Jul 2019 16:37:36 +1000 Subject: [PATCH 0997/1381] Added package illwill (#1115) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ef11d21..15a1ef5 100644 --- a/packages.json +++ b/packages.json @@ -13740,5 +13740,19 @@ "description": "A build tool for Neverwinter Nights projects", "license": "MIT", "web": "https://github.com/squattingmonk/nasher.nim" + }, + { + "name": "illwill", + "url": "https://github.com/johnnovak/illwill", + "method": "git", + "tags": [ + "terminal", + "console", + "curses", + "ui" + ], + "description": "A curses inspired simple cross-platform console library for Nim", + "license": "MIT", + "web": "https://github.com/johnnovak/illwill" } ] From 6f9bc300f9f73e3acbd9aa05092cd9593699ec7b Mon Sep 17 00:00:00 2001 From: John Novak Date: Sat, 13 Jul 2019 21:46:13 +1000 Subject: [PATCH 0998/1381] Change illwill license (#1117) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 15a1ef5..4f61e50 100644 --- a/packages.json +++ b/packages.json @@ -13752,7 +13752,7 @@ "ui" ], "description": "A curses inspired simple cross-platform console library for Nim", - "license": "MIT", + "license": "WTFPL", "web": "https://github.com/johnnovak/illwill" } ] From 53c3a71c9d74f3ee5bd280e5635315263e0a62ec Mon Sep 17 00:00:00 2001 From: genotrance Date: Wed, 17 Jul 2019 00:46:31 -0500 Subject: [PATCH 0999/1381] Added package shared (#1119) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4f61e50..70e3bdc 100644 --- a/packages.json +++ b/packages.json @@ -13754,5 +13754,19 @@ "description": "A curses inspired simple cross-platform console library for Nim", "license": "WTFPL", "web": "https://github.com/johnnovak/illwill" + }, + { + "name": "shared", + "url": "https://github.com/genotrance/shared", + "method": "git", + "tags": [ + "shared", + "seq", + "string", + "threads" + ], + "description": "Nim library for shared types", + "license": "MIT", + "web": "https://github.com/genotrance/shared" } ] From 8c65473b0bdfe15cd3995c95f60de7e3d06a9ebe Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Mon, 22 Jul 2019 09:12:43 +0200 Subject: [PATCH 1000/1381] Added package nimmm (#1120) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 70e3bdc..5c0acbc 100644 --- a/packages.json +++ b/packages.json @@ -13768,5 +13768,19 @@ "description": "Nim library for shared types", "license": "MIT", "web": "https://github.com/genotrance/shared" + }, + { + "name": "nimmm", + "url": "https://github.com/joachimschmidt557/nimmm", + "method": "git", + "tags": [ + "nimmm", + "terminal", + "nimbox", + "tui" + ], + "description": "A terminal file manager written in nim", + "license": "GPL-3.0", + "web": "https://github.com/joachimschmidt557/nimmm" } ] From bb4754c9048a2d9c22e7d69d84d2399276a8870b Mon Sep 17 00:00:00 2001 From: Andreas Hauser Date: Mon, 22 Jul 2019 21:22:59 +0200 Subject: [PATCH 1001/1381] Added package fastx_reader (#1121) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5c0acbc..8659301 100644 --- a/packages.json +++ b/packages.json @@ -13782,5 +13782,18 @@ "description": "A terminal file manager written in nim", "license": "GPL-3.0", "web": "https://github.com/joachimschmidt557/nimmm" + }, + { + "name": "fastx_reader", + "url": "https://github.com/ahcm/fastx_reader", + "method": "git", + "tags": [ + "bioinformatics,", + "fasta,", + "fastq" + ], + "description": "FastQ and Fasta readers for NIM", + "license": "LGPL-3.0", + "web": "https://github.com/ahcm/fastx_reader" } ] From 772c5ed6bee2d328709e85fe4d036e8122fd2bcc Mon Sep 17 00:00:00 2001 From: V-X Date: Tue, 23 Jul 2019 00:07:01 -0500 Subject: [PATCH 1002/1381] Add QuickJS.nim (#1122) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8659301..df486bf 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,17 @@ [ + { + "name": "QuickJS.nim", + "url": "https://github.com/ImVexed/quickjs.nim", + "method": "git", + "tags": [ + "QuickJS", + "Javascript", + "Runtime" + ], + "description": "A QuickJS wrapper for Nim", + "license": "MIT", + "web": "https://github.com/ImVexed/quickjs.nim" + }, { "name": "BitVector", "url": "https://github.com/MarcAzar/BitVector", From e4b3e1a288de0a46787d3f16ef7fbd628301b071 Mon Sep 17 00:00:00 2001 From: V-X Date: Wed, 24 Jul 2019 00:23:04 -0500 Subject: [PATCH 1003/1381] quickjs.nim -> quickjs4nim (#1123) --- packages.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index df486bf..33c12f9 100644 --- a/packages.json +++ b/packages.json @@ -1,16 +1,17 @@ [ { - "name": "QuickJS.nim", - "url": "https://github.com/ImVexed/quickjs.nim", + "name": "QuickJS4nim", + "url": "https://github.com/ImVexed/quickjs4nim", "method": "git", "tags": [ "QuickJS", "Javascript", - "Runtime" + "Runtime", + "Wrapper" ], "description": "A QuickJS wrapper for Nim", "license": "MIT", - "web": "https://github.com/ImVexed/quickjs.nim" + "web": "https://github.com/ImVexed/quickjs4nim" }, { "name": "BitVector", From 7b51e36e93c022ac25446427b704ba957c504ddd Mon Sep 17 00:00:00 2001 From: Hitesh Jasani Date: Wed, 24 Jul 2019 14:18:59 -0400 Subject: [PATCH 1004/1381] Add d3 ffi library --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 33c12f9..cd3f728 100644 --- a/packages.json +++ b/packages.json @@ -13809,5 +13809,19 @@ "description": "FastQ and Fasta readers for NIM", "license": "LGPL-3.0", "web": "https://github.com/ahcm/fastx_reader" + }, + { + "name": "d3", + "url": "https://github.com/hiteshjasani/nim-d3", + "method": "git", + "tags": [ + "d3", + "javascript", + "library", + "wrapper" + ], + "description": "A D3.js wrapper for Nim", + "license": "MIT", + "web": "https://github.com/hiteshjasani/nim-d3" } ] From f65b62ae36f7f1bf96a6f8e05b76f168214d9d80 Mon Sep 17 00:00:00 2001 From: jasonrbriggs Date: Thu, 25 Jul 2019 20:54:59 +1200 Subject: [PATCH 1005/1381] Added package baker (#1126) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cd3f728..03da832 100644 --- a/packages.json +++ b/packages.json @@ -13823,5 +13823,19 @@ "description": "A D3.js wrapper for Nim", "license": "MIT", "web": "https://github.com/hiteshjasani/nim-d3" + }, + { + "name": "baker", + "url": "https://github.com/jasonrbriggs/baker", + "method": "git", + "tags": [ + "html", + "template", + "static", + "blog" + ], + "description": "Static website generation", + "license": "Apache-2.0", + "web": "https://github.com/jasonrbriggs/baker" } ] From 9ae936a3c65c47aa5191f64eb7820c96f60c9a0b Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Tue, 30 Jul 2019 20:58:24 +0300 Subject: [PATCH 1006/1381] Added web3 --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 03da832..de59f1b 100644 --- a/packages.json +++ b/packages.json @@ -13837,5 +13837,18 @@ "description": "Static website generation", "license": "Apache-2.0", "web": "https://github.com/jasonrbriggs/baker" + }, + { + "name": "web3", + "url": "https://github.com/status-im/nim-web3", + "method": "git", + "tags": [ + "web3", + "ethereum", + "rpc" + ], + "description": "Ethereum Web3 API", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-web3" } ] From ffc6155573146199a7eacea7b8301055fed0b88e Mon Sep 17 00:00:00 2001 From: Miran Date: Mon, 12 Aug 2019 08:53:50 +0200 Subject: [PATCH 1007/1381] add all packages that were on hold at once (#1139) closes #1127 closes #1128 closes #1129 closes #1130 closes #1131 closes #1132 closes #1135 closes #1136 closes #1137 closes #1138 --- packages.json | 130 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) diff --git a/packages.json b/packages.json index de59f1b..ced2ed4 100644 --- a/packages.json +++ b/packages.json @@ -13850,5 +13850,135 @@ "description": "Ethereum Web3 API", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-web3" + }, + { + "name": "skybook", + "url": "https://github.com/muxueqz/skybook", + "method": "git", + "tags": [ + "bookmark-manager", + "bookmark" + ], + "description": "Light weight bookmark manager(delicious alternative)", + "license": "GPL-2.0", + "web": "https://github.com/muxueqz/skybook" + }, + { + "name": "rbac", + "url": "https://github.com/ba0f3/rbac.nim", + "method": "git", + "tags": [ + "rbac", + "acl", + "role-based-access-control", + "role-based", + "access-control" + ], + "description": "Simple Role-based Access Control Library", + "license": "MIT", + "web": "https://github.com/ba0f3/rbac.nim" + }, + { + "name": "simpleot", + "url": "https://github.com/markspanbroek/simpleot.nim", + "method": "git", + "tags": [ + "ot", + "mpc" + ], + "description": "Simple OT wrapper", + "license": "MIT", + "web": "https://github.com/markspanbroek/simpleot.nim" + }, + { + "name": "blurhash", + "url": "https://github.com/SolitudeSF/blurhash", + "method": "git", + "tags": [ + "image", + "blur", + "hash", + "blurhash" + ], + "description": "Encoder/decoder for blurhash algorithm", + "license": "MIT", + "web": "https://github.com/SolitudeSF/blurhash" + }, + { + "name": "samson", + "url": "https://github.com/GULPF/samson", + "method": "git", + "tags": [ + "json", + "json5" + ], + "description": "Implementation of JSON5.", + "license": "MIT", + "web": "https://github.com/GULPF/samson" + }, + { + "name": "proton", + "url": "https://github.com/jasonrbriggs/proton-nim", + "method": "git", + "tags": [ + "xml", + "xhtml", + "template" + ], + "description": "Proton template engine for xml and xhtml files", + "license": "MIT", + "web": "https://github.com/jasonrbriggs/proton-nim" + }, + { + "name": "lscolors", + "url": "https://github.com/joachimschmidt557/nim-lscolors", + "method": "git", + "tags": [ + "lscolors", + "posix", + "unix", + "linux", + "ls", + "terminal" + ], + "description": "A library for colorizing paths according to LS_COLORS", + "license": "MIT", + "web": "https://github.com/joachimschmidt557/nim-lscolors" + }, + { + "name": "shell", + "url": "https://github.com/Vindaar/shell", + "method": "git", + "tags": [ + "library", + "macro", + "dsl", + "shell" + ], + "description": "A Nim mini DSL to execute shell commands", + "license": "MIT", + "web": "https://github.com/Vindaar/shell" + }, + { + "name": "mqtt", + "url": "https://github.com/barnybug/nim-mqtt", + "method": "git", + "tags": [ + "MQTT" + ], + "description": "MQTT wrapper for nim", + "license": "MIT", + "web": "https://github.com/barnybug/nim-mqtt" + }, + { + "name": "cal", + "url": "https://github.com/xflywind/cal", + "method": "git", + "tags": [ + "calculator" + ], + "description": "A simple interactive calculator", + "license": "MIT", + "web": "https://github.com/xflywind/cal" } ] From d6b1afbcafc148d942ec4def6b052a6ec8f8bf66 Mon Sep 17 00:00:00 2001 From: Jeff S Date: Mon, 12 Aug 2019 22:21:56 -0700 Subject: [PATCH 1008/1381] Added package spurdify (#1140) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index ced2ed4..fd856e9 100644 --- a/packages.json +++ b/packages.json @@ -13980,5 +13980,20 @@ "description": "A simple interactive calculator", "license": "MIT", "web": "https://github.com/xflywind/cal" + }, + { + "name": "spurdify", + "url": "https://github.com/paradox460/spurdify", + "method": "git", + "tags": [ + "funny", + "meme", + "spurdo", + "text-manipulation", + "mangle" + ], + "description": "Spurdification library and CLI", + "license": "MIT", + "web": "https://github.com/paradox460/spurdify" } ] From 6a6141d89dec75b0654689ff9a07921020b2332c Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 14 Aug 2019 09:28:58 +0300 Subject: [PATCH 1009/1381] Add c4 package (#1141) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index fd856e9..714dd3c 100644 --- a/packages.json +++ b/packages.json @@ -13995,5 +13995,20 @@ "description": "Spurdification library and CLI", "license": "MIT", "web": "https://github.com/paradox460/spurdify" + }, + { + "name": "c4", + "url": "https://github.com/c0ntribut0r/cat-400", + "method": "git", + "tags": [ + "game", + "framework", + "2d", + "3d" + ], + "description": "Game framework, modular and extensible", + "license": "MPL-2.0", + "web": "https://github.com/c0ntribut0r/cat-400", + "doc": "https://github.com/c0ntribut0r/cat-400/tree/master/docs/tutorials" } ] From b92763c8b183d58da5d9fa4b935fca735713704e Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Sat, 17 Aug 2019 09:43:15 -0500 Subject: [PATCH 1010/1381] Add package murmur (#1142) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 714dd3c..75c0004 100644 --- a/packages.json +++ b/packages.json @@ -14010,5 +14010,19 @@ "license": "MPL-2.0", "web": "https://github.com/c0ntribut0r/cat-400", "doc": "https://github.com/c0ntribut0r/cat-400/tree/master/docs/tutorials" + }, + { + "name": "murmurhash", + "url": "https://github.com/cwpearson/nim-murmurhash", + "method": "git", + "tags": [ + "murmur", + "hash", + "MurmurHash3", + "MurmurHash2" + ], + "description": "Pure nim implementation of MurmurHash", + "license": "MIT", + "web": "https://github.com/cwpearson/nim-murmurhash" } ] From a3c3baec812af7773b9c08d1cb2df5541a7a7baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Granstr=C3=B6m?= <5092565+HugoGranstrom@users.noreply.github.com> Date: Sat, 17 Aug 2019 18:01:50 +0200 Subject: [PATCH 1011/1381] add NumericalNim to Nimble (#1143) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 75c0004..b13e928 100644 --- a/packages.json +++ b/packages.json @@ -14011,6 +14011,20 @@ "web": "https://github.com/c0ntribut0r/cat-400", "doc": "https://github.com/c0ntribut0r/cat-400/tree/master/docs/tutorials" }, + { + "name": "numericalnim", + "url": "https://github.com/HugoGranstrom/numericalnim/", + "method": "git", + "tags": [ + "numerical", + "ode", + "integration", + "scientific" + ], + "description": "A collection of numerical methods written in Nim", + "license": "MIT", + "web": "https://github.com/HugoGranstrom/numericalnim/" + }, { "name": "murmurhash", "url": "https://github.com/cwpearson/nim-murmurhash", From b6d1e2bdd548bcd7f288d117e023676232b30cec Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 19 Aug 2019 17:10:02 -0300 Subject: [PATCH 1012/1381] Added package sweetanitify (#1145) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b13e928..0c71eae 100644 --- a/packages.json +++ b/packages.json @@ -14038,5 +14038,18 @@ "description": "Pure nim implementation of MurmurHash", "license": "MIT", "web": "https://github.com/cwpearson/nim-murmurhash" + }, + { + "name": "sweetanitify", + "url": "https://github.com/juancarlospaco/sweetanitify", + "method": "git", + "tags": [ + "sweet_anita", + "tourette", + "string" + ], + "description": "Sweet_Anita Translator, help spread awareness about Tourettes", + "license": "MIT", + "web": "https://github.com/juancarlospaco/sweetanitify" } ] From fa101cf72ca043c156160dce0785752423d32afb Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 19 Aug 2019 17:24:48 -0300 Subject: [PATCH 1013/1381] Added package redneck_translator (#1146) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 0c71eae..5a0ff1d 100644 --- a/packages.json +++ b/packages.json @@ -14039,6 +14039,19 @@ "license": "MIT", "web": "https://github.com/cwpearson/nim-murmurhash" }, + { + "name": "redneck_translator", + "url": "https://github.com/juancarlospaco/redneck-translator", + "method": "git", + "tags": [ + "redneck", + "string", + "slang" + ], + "description": "Redneck Translator for Y'all", + "license": "MIT", + "web": "https://github.com/juancarlospaco/redneck-translator" + }, { "name": "sweetanitify", "url": "https://github.com/juancarlospaco/sweetanitify", From d4e6cc22e5d965ae11474263830512d93061b98d Mon Sep 17 00:00:00 2001 From: genotrance Date: Tue, 20 Aug 2019 00:36:07 -0500 Subject: [PATCH 1014/1381] Added package cmake (#1147) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 5a0ff1d..a846113 100644 --- a/packages.json +++ b/packages.json @@ -14064,5 +14064,19 @@ "description": "Sweet_Anita Translator, help spread awareness about Tourettes", "license": "MIT", "web": "https://github.com/juancarlospaco/sweetanitify" + }, + { + "name": "cmake", + "url": "https://github.com/genotrance/cmake", + "method": "git", + "tags": [ + "cmake", + "build", + "tool", + "wrapper" + ], + "description": "CMake for Nimble", + "license": "MIT", + "web": "https://github.com/genotrance/cmake" } ] From 837e6f4d8922466a26b149aeaaa331a2fd48044d Mon Sep 17 00:00:00 2001 From: Jae Yang Date: Mon, 19 Aug 2019 05:08:43 -0400 Subject: [PATCH 1015/1381] Change twitter package maintainer --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index a846113..9519c52 100644 --- a/packages.json +++ b/packages.json @@ -4894,7 +4894,7 @@ }, { "name": "twitter", - "url": "https://github.com/kubo39/twitter", + "url": "https://github.com/dchem/twitter.nim", "method": "git", "tags": [ "library", @@ -4903,7 +4903,7 @@ ], "description": "Low-level twitter API wrapper library for Nim.", "license": "MIT", - "web": "https://github.com/kubo39/twitter" + "web": "https://github.com/dchem/twitter.nim" }, { "name": "stomp", From 371f71c1a01271545465d426ba8d305838f49cae Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Wed, 21 Aug 2019 03:31:17 -0300 Subject: [PATCH 1016/1381] Added package plz (#1148) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9519c52..4242da4 100644 --- a/packages.json +++ b/packages.json @@ -14078,5 +14078,18 @@ "description": "CMake for Nimble", "license": "MIT", "web": "https://github.com/genotrance/cmake" + }, + { + "name": "plz", + "url": "https://github.com/juancarlospaco/nim-pypi", + "method": "git", + "tags": [ + "python", + "pip", + "nimpy" + ], + "description": "PLZ Python PIP alternative", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-pypi" } ] From 080679e383e30aa648d29438cdd85f8d527f3ef4 Mon Sep 17 00:00:00 2001 From: markspanbroek Date: Wed, 21 Aug 2019 13:57:11 +0200 Subject: [PATCH 1017/1381] Added package NiMPC (#1149) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4242da4..226fdd9 100644 --- a/packages.json +++ b/packages.json @@ -14091,5 +14091,18 @@ "description": "PLZ Python PIP alternative", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-pypi" + }, + { + "name": "NiMPC", + "url": "https://github.com/markspanbroek/nimpc", + "method": "git", + "tags": [ + "multiparty", + "computation", + "mpc" + ], + "description": "Secure multi-party computation", + "license": "MIT", + "web": "https://github.com/markspanbroek/nimpc" } ] From b6ffdb99b6333529c9d1dc88c634e13d7fc12f25 Mon Sep 17 00:00:00 2001 From: Duncan Clarke Date: Wed, 21 Aug 2019 13:58:08 -0400 Subject: [PATCH 1018/1381] QR Code Generator (#1150) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 226fdd9..a09f27a 100644 --- a/packages.json +++ b/packages.json @@ -14104,5 +14104,17 @@ "description": "Secure multi-party computation", "license": "MIT", "web": "https://github.com/markspanbroek/nimpc" + }, + { + "name": "qrcodegen", + "url": "https://github.com/bunkford/qrcodegen", + "method": "git", + "tags": [ + "qr", + "barcode" + ], + "description": "QR Code Generator", + "license": "MIT", + "web": "https://github.com/bunkford/qrcodegen" } ] From 5f706354826e174ab9596fe5d901a2abcb6cd6ab Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 24 Aug 2019 02:12:57 +0800 Subject: [PATCH 1019/1381] Add cirru-parser (#1151) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a09f27a..55c5959 100644 --- a/packages.json +++ b/packages.json @@ -14116,5 +14116,17 @@ "description": "QR Code Generator", "license": "MIT", "web": "https://github.com/bunkford/qrcodegen" + }, + { + "name": "cirru-parser", + "url": "https://github.com/Cirru/parser.nim", + "method": "git", + "tags": [ + "parser", + "cirru" + ], + "description": "Parser for Cirru syntax", + "license": "MIT", + "web": "https://github.com/Cirru/parser.nim" } ] From d85df0016576a7d9f8d83d3a276895aed9a9c20e Mon Sep 17 00:00:00 2001 From: Miran Date: Mon, 26 Aug 2019 11:09:43 +0200 Subject: [PATCH 1020/1381] change package owner due to Bitbucket closing hg support (#1152) --- packages.json | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 55c5959..16b260f 100644 --- a/packages.json +++ b/packages.json @@ -7540,8 +7540,8 @@ }, { "name": "blake2", - "url": "https://bitbucket.org/mihailp/blake2/", - "method": "hg", + "url": "https://github.com/narimiran/blake2", + "method": "git", "tags": [ "crypto", "cryptography", @@ -7550,7 +7550,7 @@ ], "description": "blake2 - cryptographic hash function", "license": "CC0", - "web": "https://bitbucket.org/mihailp/blake2/" + "web": "https://github.com/narimiran/blake2" }, { "name": "spinny", @@ -7638,8 +7638,8 @@ }, { "name": "sha3", - "url": "https://bitbucket.org/mihailp/sha3/", - "method": "hg", + "url": "https://github.com/narimiran/sha3", + "method": "git", "tags": [ "crypto", "cryptography", @@ -7648,7 +7648,7 @@ ], "description": "sha3 - cryptographic hash function", "license": "CC0", - "web": "https://bitbucket.org/mihailp/sha3/" + "web": "https://github.com/narimiran/sha3" }, { "name": "coalesce", @@ -9332,7 +9332,10 @@ "method": "git", "tags": [ "itertools", + "iterutils", "python", + "iter", + "iterator", "iterators" ], "description": "Itertools for Nim", From a06605dc726b0fff92fec11ec197a4e5cffdb237 Mon Sep 17 00:00:00 2001 From: Roland Sadowski Date: Mon, 26 Aug 2019 16:24:59 +0100 Subject: [PATCH 1021/1381] Added package edn (#1153) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 16b260f..65ed10a 100644 --- a/packages.json +++ b/packages.json @@ -14131,5 +14131,17 @@ "description": "Parser for Cirru syntax", "license": "MIT", "web": "https://github.com/Cirru/parser.nim" + }, + { + "name": "edn", + "url": "https://github.com/rosado/edn.nim", + "method": "git", + "tags": [ + "edn", + "clojure" + ], + "description": "EDN and Clojure parser", + "license": "EPL-2.0", + "web": "https://github.com/rosado/edn.nim" } ] From 71bbed17bf0e25f062692d0368aff1ccac9df888 Mon Sep 17 00:00:00 2001 From: Roland Sadowski Date: Mon, 26 Aug 2019 17:10:32 +0100 Subject: [PATCH 1022/1381] Added package reframe (#1154) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 65ed10a..810cc88 100644 --- a/packages.json +++ b/packages.json @@ -14132,6 +14132,18 @@ "license": "MIT", "web": "https://github.com/Cirru/parser.nim" }, + { + "name": "reframe", + "url": "https://github.com/rosado/reframe.nim", + "method": "git", + "tags": [ + "clojurescript", + "re-frame" + ], + "description": "Tools for working with re-frame ClojureScript projects", + "license": "EPL-2.0", + "web": "https://github.com/rosado/reframe.nim" + }, { "name": "edn", "url": "https://github.com/rosado/edn.nim", From 7c1aa188d3c83a9d4ab9735282dd701ffb26e420 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 30 Aug 2019 17:01:44 -0300 Subject: [PATCH 1023/1381] Added package easings (#1155) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 810cc88..25b9e75 100644 --- a/packages.json +++ b/packages.json @@ -14155,5 +14155,17 @@ "description": "EDN and Clojure parser", "license": "EPL-2.0", "web": "https://github.com/rosado/edn.nim" + }, + { + "name": "easings", + "url": "https://github.com/juancarlospaco/nim-easings", + "method": "git", + "tags": [ + "easings", + "math" + ], + "description": "Robert Penner Easing Functions for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-easings" } ] From ed128e5cbf33e1e11398a31ffdabad60043302ce Mon Sep 17 00:00:00 2001 From: Akito13 Date: Sat, 31 Aug 2019 08:28:32 +0200 Subject: [PATCH 1024/1381] Adding fletcher package (#1157) Provides the Fletcher checksum algorithm as a Nim module. --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 25b9e75..4607ecc 100644 --- a/packages.json +++ b/packages.json @@ -14167,5 +14167,22 @@ "description": "Robert Penner Easing Functions for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-easings" + }, + { + "name": "fletcher", + "url": "https://github.com/Akito13/nim-fletcher", + "method": "git", + "tags": [ + "algorithm", + "checksum", + "hash", + "adler", + "crc", + "crc32", + "embedded" + ], + "description": "Implementation of the Fletcher checksum algorithm.", + "license": "GPLv3+", + "web": "https://github.com/Akito13/nim-fletcher" } ] From 453a0be598e06cb9697696348e7fb36fa01678a9 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sat, 31 Aug 2019 15:36:26 -0300 Subject: [PATCH 1025/1381] Added package euclidean (#1156) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4607ecc..d6bc714 100644 --- a/packages.json +++ b/packages.json @@ -14168,6 +14168,20 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-easings" }, + { + "name": "euclidean", + "url": "https://github.com/juancarlospaco/nim-euclidean", + "method": "git", + "tags": [ + "euclidean", + "modulo", + "division", + "math" + ], + "description": "Euclidean Division & Euclidean Modulo", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-euclidean" + }, { "name": "fletcher", "url": "https://github.com/Akito13/nim-fletcher", From e61ec5283e46c22e30601e905dbd7f2eb4972ee9 Mon Sep 17 00:00:00 2001 From: Victoria Guevara Date: Thu, 5 Sep 2019 08:16:22 +0300 Subject: [PATCH 1026/1381] Added package Xors3D (#1158) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index d6bc714..fceb90c 100644 --- a/packages.json +++ b/packages.json @@ -14198,5 +14198,20 @@ "description": "Implementation of the Fletcher checksum algorithm.", "license": "GPLv3+", "web": "https://github.com/Akito13/nim-fletcher" + }, + { + "name": "Xors3D", + "url": "https://github.com/Guevara-chan/Xors3D-for-Nim", + "method": "git", + "tags": [ + "3d", + "game", + "engine", + "dx9", + "graphics" + ], + "description": "Blitz3D-esque DX9 engine for Nim", + "license": "MIT", + "web": "https://github.com/Guevara-chan/Xors3D-for-Nim" } ] From 98f305fd1e5aee08a6031897bca676f4492a8ccf Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 5 Sep 2019 06:11:16 -0300 Subject: [PATCH 1027/1381] Added package constants (#1159) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index fceb90c..ca257b7 100644 --- a/packages.json +++ b/packages.json @@ -14213,5 +14213,21 @@ "description": "Blitz3D-esque DX9 engine for Nim", "license": "MIT", "web": "https://github.com/Guevara-chan/Xors3D-for-Nim" + }, + { + "name": "constants", + "url": "https://github.com/juancarlospaco/nim-constants", + "method": "git", + "tags": [ + "math", + "physics", + "chemistry", + "biology", + "engineering", + "science" + ], + "description": "Mathematical numerical named static constants useful for different disciplines", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-constants" } ] From 9be2ceb2f68a8585dc981fae3e4203bc31bc2764 Mon Sep 17 00:00:00 2001 From: weiyan Date: Sun, 8 Sep 2019 23:13:05 +0800 Subject: [PATCH 1028/1381] Added package laser (#1162) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ca257b7..abd40a8 100644 --- a/packages.json +++ b/packages.json @@ -14229,5 +14229,17 @@ "description": "Mathematical numerical named static constants useful for different disciplines", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-constants" + }, + { + "name": "laser", + "url": "https://github.com/numforge/laser", + "method": "git", + "tags": [ + "parallel", + "simd" + ], + "description": "High Performance Computing and Image Toolbox: SIMD, JIT Assembler, OpenMP, runtime CPU feature detection, optimised machine learning primitives", + "license": "Apache License 2.0", + "web": "https://github.com/numforge/laser" } ] From 004812e7c1a9119e2aeee4072476b3f1d098eb62 Mon Sep 17 00:00:00 2001 From: c-blake Date: Sun, 8 Sep 2019 12:04:17 -0400 Subject: [PATCH 1029/1381] Add `procs` library+CLI (#1161) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index abd40a8..52ab4b0 100644 --- a/packages.json +++ b/packages.json @@ -14230,6 +14230,23 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-constants" }, + { + "name": "procs", + "url": "https://github.com/c-blake/procs", + "method": "git", + "tags": [ + "library", + "terminal", + "cli", + "binary", + "linux", + "unix", + "bsd" + ], + "description": "Unix process&system query&formatting library&multi-command CLI in Nim", + "license": "MIT", + "web": "https://github.com/c-blake/procs" + }, { "name": "laser", "url": "https://github.com/numforge/laser", From 25e230db2afd1242db5383dbe21f13c3417c0721 Mon Sep 17 00:00:00 2001 From: Michael Rees Date: Sun, 8 Sep 2019 11:31:01 -0500 Subject: [PATCH 1030/1381] Added package pager (#1160) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 52ab4b0..5c9b73f 100644 --- a/packages.json +++ b/packages.json @@ -14230,6 +14230,20 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-constants" }, + { + "name": "pager", + "url": "https://git.sr.ht/~reesmichael1/nim-pager", + "method": "git", + "tags": [ + "pager", + "paging", + "less", + "more" + ], + "description": "A simple library for paging, similar to less", + "license": "GPL-3.0", + "web": "https://git.sr.ht/~reesmichael1/nim-pager" + }, { "name": "procs", "url": "https://github.com/c-blake/procs", From 4d112b9118c12d2b30e51b4a006489521f589495 Mon Sep 17 00:00:00 2001 From: Dario Lah Date: Wed, 11 Sep 2019 22:38:36 +0200 Subject: [PATCH 1031/1381] Added package libssh (#1163) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 5c9b73f..21c6ad9 100644 --- a/packages.json +++ b/packages.json @@ -14272,5 +14272,17 @@ "description": "High Performance Computing and Image Toolbox: SIMD, JIT Assembler, OpenMP, runtime CPU feature detection, optimised machine learning primitives", "license": "Apache License 2.0", "web": "https://github.com/numforge/laser" + }, + { + "name": "libssh", + "url": "https://github.com/dariolah/libssh-nim", + "method": "git", + "tags": [ + "ssh", + "libssh" + ], + "description": "libssh FFI bindings", + "license": "MIT", + "web": "https://github.com/dariolah/libssh-nim" } ] From b7be081adeebb187122681162702bb93964f58f8 Mon Sep 17 00:00:00 2001 From: Duncan Clarke Date: Fri, 13 Sep 2019 01:45:51 -0400 Subject: [PATCH 1032/1381] add wZeeGrid (#1164) Grid plugin for wNim. --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 21c6ad9..48aafbc 100644 --- a/packages.json +++ b/packages.json @@ -14284,5 +14284,20 @@ "description": "libssh FFI bindings", "license": "MIT", "web": "https://github.com/dariolah/libssh-nim" + }, + { + "name": "wZeeGrid", + "url": "https://github.com/bunkford/wZeeGrid", + "method": "git", + "tags": [ + "library", + "windows", + "gui", + "ui" + ], + "description": "Grid plugin for wNim.", + "license": "MIT", + "web": "https://github.com/bunkford/wZeeGrid", + "doc": "https://bunkford.github.io/wZeeGrid/wZeeGrid.html" } ] From 125b183a2771045ecf0bdfa8fadb20e146a23071 Mon Sep 17 00:00:00 2001 From: Duncan Clarke Date: Fri, 13 Sep 2019 10:05:02 -0400 Subject: [PATCH 1033/1381] add wChart (#1166) --- packages.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 48aafbc..cbbfe63 100644 --- a/packages.json +++ b/packages.json @@ -14293,11 +14293,28 @@ "library", "windows", "gui", - "ui" + "ui", + "wnim" ], "description": "Grid plugin for wNim.", "license": "MIT", "web": "https://github.com/bunkford/wZeeGrid", "doc": "https://bunkford.github.io/wZeeGrid/wZeeGrid.html" + }, + { + "name": "wChart", + "url": "https://github.com/bunkford/wChart", + "method": "git", + "tags": [ + "library", + "windows", + "gui", + "ui", + "wnim" + ], + "description": "Chart plugin for wNim.", + "license": "MIT", + "web": "https://github.com/bunkford/wChart", + "doc": "https://bunkford.github.io/wChart/wChart.html" } ] From 5b060a1741049bdd90554081da31ab485fe85df4 Mon Sep 17 00:00:00 2001 From: Max Skybin Date: Sun, 15 Sep 2019 06:35:06 -0400 Subject: [PATCH 1034/1381] Added package stacks (#1167) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index cbbfe63..fc1cb42 100644 --- a/packages.json +++ b/packages.json @@ -14316,5 +14316,17 @@ "license": "MIT", "web": "https://github.com/bunkford/wChart", "doc": "https://bunkford.github.io/wChart/wChart.html" + }, + { + "name": "stacks", + "url": "https://github.com/rustomax/nim-stacks", + "method": "git", + "tags": [ + "stack", + "data-structure" + ], + "description": "Pure Nim stack implementation based on sequences.", + "license": "MIT", + "web": "https://github.com/rustomax/nim-stacks" } ] From baffd52c3c80ec20dba395ba63775eb7c493c50f Mon Sep 17 00:00:00 2001 From: Ju Date: Thu, 19 Sep 2019 22:18:53 +1200 Subject: [PATCH 1035/1381] Added package mustache (#1168) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index fc1cb42..8f61fb2 100644 --- a/packages.json +++ b/packages.json @@ -14328,5 +14328,17 @@ "description": "Pure Nim stack implementation based on sequences.", "license": "MIT", "web": "https://github.com/rustomax/nim-stacks" + }, + { + "name": "mustache", + "url": "https://github.com/soasme/nim-mustache", + "method": "git", + "tags": [ + "mustache", + "template" + ], + "description": "Mustache in Nim", + "license": "MIT", + "web": "https://github.com/soasme/nim-mustache" } ] From b63fdefe25339a81ef73e59680f9cd6891538cd2 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Fri, 20 Sep 2019 01:13:44 -0400 Subject: [PATCH 1036/1381] Added package sigv4 (#1169) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 8f61fb2..ea14314 100644 --- a/packages.json +++ b/packages.json @@ -14340,5 +14340,16 @@ "description": "Mustache in Nim", "license": "MIT", "web": "https://github.com/soasme/nim-mustache" + }, + { + "name": "sigv4", + "url": "https://github.com/disruptek/sigv4", + "method": "git", + "tags": [ + "1.0.0" + ], + "description": "Amazon Web Services Signature Version 4", + "license": "MIT", + "web": "https://github.com/disruptek/sigv4" } ] From 71509bd8d51b5d0c8596e0c0be81acebc68bdd63 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sat, 21 Sep 2019 00:51:04 -0400 Subject: [PATCH 1037/1381] Added package atoz (#1171) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ea14314..1c3d24c 100644 --- a/packages.json +++ b/packages.json @@ -14351,5 +14351,19 @@ "description": "Amazon Web Services Signature Version 4", "license": "MIT", "web": "https://github.com/disruptek/sigv4" + }, + { + "name": "atoz", + "url": "https://github.com/disruptek/atoz", + "method": "git", + "tags": [ + "aws", + "api", + "cloud", + "amazon" + ], + "description": "Amazon Web Services (AWS) APIs", + "license": "MIT", + "web": "https://github.com/disruptek/atoz" } ] From e99abe8534b526c443cb5cf68b5941655c5e9f74 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sat, 21 Sep 2019 01:21:38 -0400 Subject: [PATCH 1038/1381] Added package openapi (#1172) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1c3d24c..c146cf6 100644 --- a/packages.json +++ b/packages.json @@ -14352,6 +14352,20 @@ "license": "MIT", "web": "https://github.com/disruptek/sigv4" }, + { + "name": "openapi", + "url": "https://github.com/disruptek/openapi", + "method": "git", + "tags": [ + "api", + "openapi", + "rest", + "cloud" + ], + "description": "OpenAPI Code Generator", + "license": "MIT", + "web": "https://github.com/disruptek/openapi" + }, { "name": "atoz", "url": "https://github.com/disruptek/atoz", From cda1bb43b251e980738a023f5fab2e0063f81084 Mon Sep 17 00:00:00 2001 From: Toshiki Ohnogi Date: Sat, 21 Sep 2019 19:46:30 +0900 Subject: [PATCH 1039/1381] Added package nimga (#1173) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index c146cf6..7e01a1c 100644 --- a/packages.json +++ b/packages.json @@ -14379,5 +14379,17 @@ "description": "Amazon Web Services (AWS) APIs", "license": "MIT", "web": "https://github.com/disruptek/atoz" + }, + { + "name": "nimga", + "url": "https://github.com/toshikiohnogi/nimga", + "method": "git", + "tags": [ + "GeneticAlgorithm", + "nimga" + ], + "description": "Genetic Algorithm Library for Nim.", + "license": "MIT", + "web": "https://github.com/toshikiohnogi/nimga" } ] From 56076cf5963ead6c0527c6081c64322811d48d7b Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sun, 22 Sep 2019 02:55:38 -0400 Subject: [PATCH 1040/1381] Added package foreach (#1174) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7e01a1c..4bae7da 100644 --- a/packages.json +++ b/packages.json @@ -14391,5 +14391,18 @@ "description": "Genetic Algorithm Library for Nim.", "license": "MIT", "web": "https://github.com/toshikiohnogi/nimga" + }, + { + "name": "foreach", + "url": "https://github.com/disruptek/foreach", + "method": "git", + "tags": [ + "macro", + "syntax", + "sugar" + ], + "description": "A sugary for loop with syntax for typechecking loop variables", + "license": "MIT", + "web": "https://github.com/disruptek/foreach" } ] From e4f1b99b6960745453e94310c8e4e9c371b3b8e1 Mon Sep 17 00:00:00 2001 From: jiro Date: Mon, 23 Sep 2019 01:38:49 +0900 Subject: [PATCH 1041/1381] Add package monit (#1175) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 4bae7da..4c9849a 100644 --- a/packages.json +++ b/packages.json @@ -14404,5 +14404,19 @@ "description": "A sugary for loop with syntax for typechecking loop variables", "license": "MIT", "web": "https://github.com/disruptek/foreach" + }, + { + "name": "monit", + "url": "https://github.com/jiro4989/monit", + "method": "git", + "tags": [ + "cli", + "task-runner", + "developer-tools", + "automation" + ], + "description": "A simple task runner. Run tasks and watch file changes with custom paths.", + "license": "MIT", + "web": "https://github.com/jiro4989/monit" } ] From 54745d03d8a44c8d0dd8bf719f4ca8a31f3526db Mon Sep 17 00:00:00 2001 From: jiro Date: Mon, 23 Sep 2019 19:33:41 +0900 Subject: [PATCH 1042/1381] Added package termnovel (#1177) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4c9849a..69152f4 100644 --- a/packages.json +++ b/packages.json @@ -14418,5 +14418,18 @@ "description": "A simple task runner. Run tasks and watch file changes with custom paths.", "license": "MIT", "web": "https://github.com/jiro4989/monit" + }, + { + "name": "termnovel", + "url": "https://github.com/jiro4989/termnovel", + "method": "git", + "tags": [ + "cli", + "novel", + "tui" + ], + "description": "A command that to read novel on terminal", + "license": "MIT", + "web": "https://github.com/jiro4989/termnovel" } ] From 4c610e9a90bd332613729eee3788f5173c3a1097 Mon Sep 17 00:00:00 2001 From: yuchunzhou Date: Thu, 26 Sep 2019 04:55:27 +0800 Subject: [PATCH 1043/1381] add package htmlview (#1178) * add package htmlview * Update packages.json --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 69152f4..2568534 100644 --- a/packages.json +++ b/packages.json @@ -14431,5 +14431,17 @@ "description": "A command that to read novel on terminal", "license": "MIT", "web": "https://github.com/jiro4989/termnovel" + }, + { + "name": "htmlview", + "url": "https://github.com/yuchunzhou/htmlview", + "method": "git", + "tags": [ + "html", + "browser" + ], + "description": "View the offline or online html page in browser", + "license": "MIT", + "web": "https://github.com/yuchunzhou/htmlview" } ] From 935827646f55b3e2cf53808f5dc9692a3ba45b0e Mon Sep 17 00:00:00 2001 From: Miran Date: Thu, 26 Sep 2019 13:28:05 +0200 Subject: [PATCH 1044/1381] add all new packages at once (#1184) closes #1179, #1180, #1181, #1182, #1183 --- packages.json | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 54 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 2568534..62f146e 100644 --- a/packages.json +++ b/packages.json @@ -9174,7 +9174,7 @@ }, { "name": "nimgl", - "url": "https://github.com/lmariscal/nimgl", + "url": "https://github.com/nimgl/nimgl", "method": "git", "tags": [ "glfw", @@ -14443,5 +14443,58 @@ "description": "View the offline or online html page in browser", "license": "MIT", "web": "https://github.com/yuchunzhou/htmlview" + }, + { + "name": "tcping", + "url": "https://github.com/pdrb/tcping", + "method": "git", + "tags": [ + "ping,", + "tcp,", + "tcping" + ], + "description": "Ping hosts using tcp packets", + "license": "MIT", + "web": "https://github.com/pdrb/tcping" + }, + { + "name": "pcgbasic", + "url": "https://github.com/rockcavera/pcgbasic", + "method": "git", + "tags": [ + "pcg", + "rng", + "prng", + "random" + ], + "description": "Permuted Congruential Generator (PCG) Random Number Generation (RNG) for Nim.", + "license": "MIT", + "web": "https://github.com/rockcavera/pcgbasic" + }, + { + "name": "funchook", + "url": "https://github.com/ba0f3/funchook.nim", + "method": "git", + "tags": [ + "hook,", + "hooking" + ], + "description": "funchook wrapper", + "license": "GPLv2", + "web": "https://github.com/ba0f3/funchook.nim" + }, + { + "name": "sunvox", + "url": "https://github.com/exelotl/nim-sunvox", + "method": "git", + "tags": [ + "music", + "audio", + "sound", + "synthesizer" + ], + "description": "Bindings for SunVox modular synthesizer", + "license": "MIT", + "web": "https://github.com/exelotl/nim-sunvox" } ] From ec643740b8980a39729d5ff6331a6c9f857e714b Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sat, 28 Sep 2019 02:28:26 -0400 Subject: [PATCH 1045/1381] Added package bluu (#1187) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 62f146e..d8bda35 100644 --- a/packages.json +++ b/packages.json @@ -14496,5 +14496,22 @@ "description": "Bindings for SunVox modular synthesizer", "license": "MIT", "web": "https://github.com/exelotl/nim-sunvox" + }, + { + "name": "bluu", + "url": "https://github.com/disruptek/bluu", + "method": "git", + "tags": [ + "microsoft", + "azure", + "cloud", + "api", + "rest", + "openapi", + "web" + ], + "description": "Microsoft Azure Cloud Computing Platform and Services (MAC) APIs", + "license": "MIT", + "web": "https://github.com/disruptek/bluu" } ] From e51d0da2a08ab55b78b10b22de81632582dd8b98 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sat, 28 Sep 2019 03:02:21 -0400 Subject: [PATCH 1046/1381] Added package gcplat (#1188) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index d8bda35..0c50282 100644 --- a/packages.json +++ b/packages.json @@ -14497,6 +14497,23 @@ "license": "MIT", "web": "https://github.com/exelotl/nim-sunvox" }, + { + "name": "gcplat", + "url": "https://github.com/disruptek/gcplat", + "method": "git", + "tags": [ + "google", + "cloud", + "platform", + "api", + "rest", + "openapi", + "web" + ], + "description": "Google Cloud Platform (GCP) APIs", + "license": "MIT", + "web": "https://github.com/disruptek/gcplat" + }, { "name": "bluu", "url": "https://github.com/disruptek/bluu", From f6e80038513990cc9d2e1d7765eb111de22c369c Mon Sep 17 00:00:00 2001 From: gecko Date: Sat, 28 Sep 2019 12:52:43 +0200 Subject: [PATCH 1047/1381] Change sunvox bindings license to 0BSD (#1189) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0c50282..6f4c4d3 100644 --- a/packages.json +++ b/packages.json @@ -14494,7 +14494,7 @@ "synthesizer" ], "description": "Bindings for SunVox modular synthesizer", - "license": "MIT", + "license": "0BSD", "web": "https://github.com/exelotl/nim-sunvox" }, { From da538803190d7500721d3cb2fe7340beba816983 Mon Sep 17 00:00:00 2001 From: Justin Tervay <7595639+tervay@users.noreply.github.com> Date: Sat, 28 Sep 2019 12:08:45 -0400 Subject: [PATCH 1048/1381] Added package the_nim_alliance (#1190) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 6f4c4d3..c5f7f57 100644 --- a/packages.json +++ b/packages.json @@ -14530,5 +14530,19 @@ "description": "Microsoft Azure Cloud Computing Platform and Services (MAC) APIs", "license": "MIT", "web": "https://github.com/disruptek/bluu" + }, + { + "name": "the_nim_alliance", + "url": "https://github.com/tervay/the-nim-alliance", + "method": "git", + "tags": [ + "FRC", + "FIRST", + "the-blue-alliance", + "TBA" + ], + "description": "A Nim wrapper for TheBlueAlliance", + "license": "MIT", + "web": "https://github.com/tervay/the-nim-alliance" } ] From 6bea853467d15984daba0e5725a6bb98bbe5994e Mon Sep 17 00:00:00 2001 From: Max Skybin Date: Sun, 29 Sep 2019 02:28:01 -0400 Subject: [PATCH 1049/1381] Added package passgen (#1191) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index c5f7f57..d7690b7 100644 --- a/packages.json +++ b/packages.json @@ -14544,5 +14544,16 @@ "description": "A Nim wrapper for TheBlueAlliance", "license": "MIT", "web": "https://github.com/tervay/the-nim-alliance" + }, + { + "name": "passgen", + "url": "https://github.com/rustomax/nim-passgen", + "method": "git", + "tags": [ + "password-generator" + ], + "description": "Password generation library in Nim", + "license": "MIT", + "web": "https://github.com/rustomax/nim-passgen" } ] From e0b34a805b8ef94aa79ff035e859803b98439257 Mon Sep 17 00:00:00 2001 From: Pedro Gonring Date: Tue, 1 Oct 2019 01:58:40 -0300 Subject: [PATCH 1050/1381] Added package fwrite (#1193) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d7690b7..2671124 100644 --- a/packages.json +++ b/packages.json @@ -14555,5 +14555,19 @@ "description": "Password generation library in Nim", "license": "MIT", "web": "https://github.com/rustomax/nim-passgen" + }, + { + "name": "fwrite", + "url": "https://github.com/pdrb/nim-fwrite", + "method": "git", + "tags": [ + "create,", + "file,", + "write,", + "fwrite" + ], + "description": "Create files of the desired size", + "license": "MIT", + "web": "https://github.com/pdrb/nim-fwrite" } ] From 735494ef6b8b7ee9e22435ab671aec4bbd5ade0e Mon Sep 17 00:00:00 2001 From: LemonHX Date: Tue, 1 Oct 2019 23:31:44 +0100 Subject: [PATCH 1051/1381] Added package PPM (#1192) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 2671124..0fba27a 100644 --- a/packages.json +++ b/packages.json @@ -14556,6 +14556,18 @@ "license": "MIT", "web": "https://github.com/rustomax/nim-passgen" }, + { + "name": "PPM", + "url": "https://github.com/LemonHX/PPM-Nim", + "method": "git", + "tags": [ + "graphics", + "image" + ], + "description": "lib for ppm image", + "license": "LXXSDT-MIT", + "web": "https://github.com/LemonHX/PPM-Nim" + }, { "name": "fwrite", "url": "https://github.com/pdrb/nim-fwrite", From 27289fd6ab5e2673b9ef178d2ed18fa66f319ae2 Mon Sep 17 00:00:00 2001 From: Michael Rees Date: Tue, 1 Oct 2019 23:00:27 -0500 Subject: [PATCH 1052/1381] Added package simplediff (#1194) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 0fba27a..7bd9cc4 100644 --- a/packages.json +++ b/packages.json @@ -14581,5 +14581,18 @@ "description": "Create files of the desired size", "license": "MIT", "web": "https://github.com/pdrb/nim-fwrite" + }, + { + "name": "simplediff", + "url": "https://git.sr.ht/~reesmichael1/nim-simplediff", + "method": "git", + "tags": [ + "diff", + "simplediff", + "" + ], + "description": "A library for straightforward diff calculation", + "license": "GPL-3.0", + "web": "https://git.sr.ht/~reesmichael1/nim-simplediff" } ] From c36e9493031ac781ad6447e0f113bb392a807301 Mon Sep 17 00:00:00 2001 From: Solitude Date: Fri, 4 Oct 2019 18:01:49 +0300 Subject: [PATCH 1053/1381] xcm (#1195) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 7bd9cc4..064ba7f 100644 --- a/packages.json +++ b/packages.json @@ -14594,5 +14594,17 @@ "description": "A library for straightforward diff calculation", "license": "GPL-3.0", "web": "https://git.sr.ht/~reesmichael1/nim-simplediff" + }, + { + "name": "xcm", + "url": "https://github.com/SolitudeSF/xcm", + "method": "git", + "tags": [ + "color", + "x11" + ], + "description": "Color management utility for X", + "license": "MIT", + "web": "https://github.com/SolitudeSF/xcm" } ] From 0c3bc03e906932b60df5e5814ca87b8a5d10cde6 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Mon, 7 Oct 2019 16:21:54 +0300 Subject: [PATCH 1054/1381] Added bearssl package (#1197) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 064ba7f..7bf49fc 100644 --- a/packages.json +++ b/packages.json @@ -14606,5 +14606,20 @@ "description": "Color management utility for X", "license": "MIT", "web": "https://github.com/SolitudeSF/xcm" + }, + { + "name": "bearssl", + "url": "https://github.com/status-im/nim-bearssl", + "method": "git", + "tags": [ + "crypto", + "hashes", + "ciphers", + "ssl", + "tls" + ], + "description": "Bindings to BearSSL library", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-bearssl" } ] From f1443b1429ae6e16080079e93e0ca5fe28629d91 Mon Sep 17 00:00:00 2001 From: Ju Date: Tue, 8 Oct 2019 17:34:23 +1300 Subject: [PATCH 1055/1381] Added package schedules (#1196) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 7bf49fc..46df668 100644 --- a/packages.json +++ b/packages.json @@ -14621,5 +14621,21 @@ "description": "Bindings to BearSSL library", "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-bearssl" + }, + { + "name": "schedules", + "url": "https://github.com/soasme/nim-schedules", + "method": "git", + "tags": [ + "scheduler", + "schedules", + "job", + "task", + "cron", + "interval" + ], + "description": "A Nim scheduler library that lets you kick off jobs at regular intervals.", + "license": "MIT", + "web": "https://github.com/soasme/nim-schedules" } ] From c36542ac32373e1be0de465fcdf2d5eab390766c Mon Sep 17 00:00:00 2001 From: Oskari Timperi Date: Tue, 8 Oct 2019 22:31:42 +0300 Subject: [PATCH 1056/1381] Add package nimlevenshtein (#1198) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 46df668..9c4947a 100644 --- a/packages.json +++ b/packages.json @@ -14637,5 +14637,18 @@ "description": "A Nim scheduler library that lets you kick off jobs at regular intervals.", "license": "MIT", "web": "https://github.com/soasme/nim-schedules" + }, + { + "name": "nimlevenshtein", + "url": "https://github.com/oswjk/nimlevenshtein", + "method": "git", + "tags": [ + "levenshtein", + "similarity", + "string" + ], + "description": "The Levenshtein Nim module contains functions for fast computation of Levenshtein distance and string similarity.", + "license": "GPLv2", + "url": "https://github.com/oswjk/nimlevenshtein" } ] From dde7d56a7db569287ba1d79674ee18de26b881ec Mon Sep 17 00:00:00 2001 From: Pedro Gonring Date: Wed, 9 Oct 2019 01:45:08 -0300 Subject: [PATCH 1057/1381] Added package randpw (#1199) --- packages.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 9c4947a..c3f04c0 100644 --- a/packages.json +++ b/packages.json @@ -14648,7 +14648,20 @@ "string" ], "description": "The Levenshtein Nim module contains functions for fast computation of Levenshtein distance and string similarity.", - "license": "GPLv2", - "url": "https://github.com/oswjk/nimlevenshtein" + "license": "GPLv2" + }, + { + "name": "randpw", + "url": "https://github.com/pdrb/nim-randpw", + "method": "git", + "tags": [ + "random", + "password", + "passphrase", + "randpw" + ], + "description": "Random password and passphrase generator", + "license": "MIT", + "web": "https://github.com/pdrb/nim-randpw" } ] From 1b97b6feeac955893b0c53a5dd1aefce5cdbcdb3 Mon Sep 17 00:00:00 2001 From: b3liever <43617260+b3liever@users.noreply.github.com> Date: Wed, 9 Oct 2019 09:48:31 +0300 Subject: [PATCH 1058/1381] Add packages (#1201) --- packages.json | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/packages.json b/packages.json index c3f04c0..12987d1 100644 --- a/packages.json +++ b/packages.json @@ -14663,5 +14663,73 @@ "description": "Random password and passphrase generator", "license": "MIT", "web": "https://github.com/pdrb/nim-randpw" + }, + { + "name": "manu", + "url": "https://github.com/b3liever/manu", + "method": "git", + "tags": [ + "matrix", + "linear-algebra", + "scientific" + ], + "description": "Nim Matrix library", + "license": "MIT", + "web": "https://github.com/b3liever/manu" + }, + { + "name": "jscanvas", + "url": "https://github.com/b3liever/jscanvas", + "method": "git", + "tags": [ + "html5", + "canvas", + "drawing", + "graphics", + "rendering", + "browser", + "javascript" + ], + "description": "A Nim wrapper for the Canvas API", + "license": "MIT", + "web": "https://github.com/b3liever/jscanvas" + }, + { + "name": "looper", + "url": "https://github.com/b3liever/looper", + "method": "git", + "tags": [ + "loop", + "iterator", + "zip", + "enumerate" + ], + "description": "For loop macros for Nim", + "license": "MIT", + "web": "https://github.com/b3liever/looper" + }, + { + "name": "protocoled", + "url": "https://github.com/b3liever/protocoled", + "method": "git", + "tags": [ + "interface" + ], + "description": "An interface macro for Nim", + "license": "MIT", + "web": "https://github.com/b3liever/protocoled" + }, + { + "name": "eminim", + "url": "https://github.com/b3liever/eminim", + "method": "git", + "tags": [ + "json", + "marshal", + "deserialize" + ], + "description": "JSON deserialization macro for Nim", + "license": "MIT", + "web": "https://github.com/b3liever/eminim" } ] From ca6df284583eefd4b661df4ad519f03e15342cfc Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Wed, 9 Oct 2019 15:09:09 +0800 Subject: [PATCH 1059/1381] Added package timeit (#1200) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 12987d1..76bc9ca 100644 --- a/packages.json +++ b/packages.json @@ -14664,6 +14664,18 @@ "license": "MIT", "web": "https://github.com/pdrb/nim-randpw" }, + { + "name": "timeit", + "url": "https://github.com/xflywind/timeit", + "method": "git", + "tags": [ + "timeit", + "bench" + ], + "description": "measuring execution times written in nim.", + "license": "MIT", + "web": "https://github.com/xflywind/timeit" + }, { "name": "manu", "url": "https://github.com/b3liever/manu", From 0ca4c3c201866bacdea463924ff93050e8b3db57 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Thu, 10 Oct 2019 02:00:40 -0400 Subject: [PATCH 1060/1381] Added package golden (#1202) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 76bc9ca..b4c79e5 100644 --- a/packages.json +++ b/packages.json @@ -14743,5 +14743,23 @@ "description": "JSON deserialization macro for Nim", "license": "MIT", "web": "https://github.com/b3liever/eminim" + }, + { + "name": "golden", + "url": "https://github.com/disruptek/golden", + "method": "git", + "tags": [ + "benchmark", + "profile", + "golden", + "runtime", + "run", + "profiling", + "bench", + "speed" + ], + "description": "a benchmark tool", + "license": "MIT", + "web": "https://github.com/disruptek/golden" } ] From 9054bb4cac1cbbe438a65d93022013ad167981bc Mon Sep 17 00:00:00 2001 From: genotrance Date: Fri, 11 Oct 2019 00:40:27 -0500 Subject: [PATCH 1061/1381] Added package nimgit2 (#1203) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index b4c79e5..860b487 100644 --- a/packages.json +++ b/packages.json @@ -14761,5 +14761,19 @@ "description": "a benchmark tool", "license": "MIT", "web": "https://github.com/disruptek/golden" + }, + { + "name": "nimgit2", + "url": "https://github.com/genotrance/nimgit2", + "method": "git", + "tags": [ + "git", + "wrapper", + "libgit2", + "binding" + ], + "description": "libgit2 wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimgit2" } ] From 54911c1a1330696013e78b0d2afd3fadbfbeb7cd Mon Sep 17 00:00:00 2001 From: Willyboar Date: Fri, 11 Oct 2019 21:18:00 +0300 Subject: [PATCH 1062/1381] Added package rainbow (#1204) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 860b487..2599ad8 100644 --- a/packages.json +++ b/packages.json @@ -14775,5 +14775,18 @@ "description": "libgit2 wrapper for Nim", "license": "MIT", "web": "https://github.com/genotrance/nimgit2" + }, + { + "name": "rainbow", + "url": "https://github.com/thebigbaron/rainbow", + "method": "git", + "tags": [ + "library", + "256-colors", + "cli" + ], + "description": "256 colors for shell", + "license": "MIT", + "web": "https://github.com/thebigbaron/rainbow" } ] From 0584cd4e3e0a72cbc07e0337dd7cfb6e89f64c9a Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 16 Oct 2019 14:35:00 +0200 Subject: [PATCH 1063/1381] Move packages of ehmry to git.sr.ht (#1207) --- packages.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/packages.json b/packages.json index 2599ad8..3bacab7 100644 --- a/packages.json +++ b/packages.json @@ -6757,7 +6757,7 @@ }, { "name": "imap", - "url": "https://github.com/ehmry/imap", + "url": "https://git.sr.ht/~ehmry/nim_imap", "method": "git", "tags": [ "imap", @@ -6765,7 +6765,7 @@ ], "description": "IMAP client library", "license": "GPL2", - "web": "https://github.com/ehmry/imap" + "web": "https://git.sr.ht/~ehmry/nim_imap" }, { "name": "isa", @@ -7427,14 +7427,14 @@ }, { "name": "tiger", - "url": "https://github.com/ehmry/tiger", + "url": "https://git.sr.ht/~ehmry/nim_tiger", "method": "git", "tags": [ "hash" ], "description": "Tiger hash function", "license": "MIT", - "web": "https://github.com/ehmry/tiger" + "web": "https://git.sr.ht/~ehmry/nim_tiger" }, { "name": "pipe", @@ -8260,7 +8260,7 @@ }, { "name": "cbor", - "url": "https://github.com/ehmry/nim-cbor", + "url": "https://git.sr.ht/~ehmry/nim_cbor", "method": "git", "tags": [ "library", @@ -8270,11 +8270,11 @@ ], "description": "Concise Binary Object Representation decoder (RFC7049).", "license": "MIT", - "web": "https://github.com/ehmry/nim-cbor" + "web": "https://git.sr.ht/~ehmry/nim_cbor" }, { "name": "base58", - "url": "https://github.com/ehmry/nim-base58", + "url": "https://git.sr.ht/~ehmry/nim_base58", "method": "git", "tags": [ "base58", @@ -8286,7 +8286,7 @@ ], "description": "Base58 encoders and decoders for Bitcoin and CryptoNote addresses.", "license": "MIT", - "web": "https://github.com/ehmry/nim-base58" + "web": "https://git.sr.ht/~ehmry/nim_base58" }, { "name": "webdriver", @@ -9497,7 +9497,7 @@ }, { "name": "sphincs", - "url": "https://github.com/ehmry/nim-sphincs", + "url": "https://git.sr.ht/~ehmry/nim_sphincs", "method": "git", "tags": [ "crypto", @@ -9506,7 +9506,7 @@ ], "description": "SPHINCS⁺ stateless hash-based signature scheme", "license": "MIT", - "web": "https://github.com/ehmry/nim-sphincs" + "web": "https://git.sr.ht/~ehmry/nim_sphincs" }, { "name": "nimpb", @@ -11888,7 +11888,7 @@ }, { "name": "siphash", - "url": "https://github.com/ehmry/nim-siphash", + "url": "https://git.sr.ht/~ehmry/nim_siphash", "method": "git", "tags": [ "hash", @@ -11896,11 +11896,11 @@ ], "description": "SipHash, a pseudorandom function optimized for short messages.", "license": "GPLv3", - "web": "https://github.com/ehmry/nim-siphash" + "web": "https://git.sr.ht/~ehmry/nim_siphash" }, { "name": "haraka", - "url": "https://github.com/ehmry/nim-haraka", + "url": "https://git.sr.ht/~ehmry/nim_haraka", "method": "git", "tags": [ "hash", @@ -11908,11 +11908,11 @@ ], "description": "Haraka v2 short-input hash function", "license": "MIT", - "web": "https://github.com/ehmry/nim-haraka" + "web": "https://git.sr.ht/~ehmry/nim_haraka" }, { "name": "genode", - "url": "https://github.com/ehmry/nim-genode", + "url": "https://git.sr.ht/~ehmry/nim_genode", "method": "git", "tags": [ "genode", @@ -11920,7 +11920,7 @@ ], "description": "System libraries for the Genode Operating System Framework", "license": "AGPLv3", - "web": "https://github.com/ehmry/nim-genode" + "web": "https://git.sr.ht/~ehmry/nim_genode" }, { "name": "moe", @@ -13516,7 +13516,7 @@ }, { "name": "toxcore", - "url": "https://github.com/ehmry/nim_tox", + "url": "https://git.sr.ht/~ehmry/nim_tox", "method": "git", "tags": [ "tox", @@ -13525,7 +13525,7 @@ ], "description": "C Tox core wrapper", "license": "GPL-3.0", - "web": "https://github.com/ehmry/nim_tox" + "web": "https://git.sr.ht/~ehmry/nim_tox" }, { "name": "rapid", From 49751de8c4561d9946f4dffeacfad749ee4d16a1 Mon Sep 17 00:00:00 2001 From: rockcavera Date: Wed, 16 Oct 2019 11:59:22 -0300 Subject: [PATCH 1064/1381] Added package winversion (#1208) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3bacab7..a5af526 100644 --- a/packages.json +++ b/packages.json @@ -14788,5 +14788,17 @@ "description": "256 colors for shell", "license": "MIT", "web": "https://github.com/thebigbaron/rainbow" + }, + { + "name": "winversion", + "url": "https://github.com/rockcavera/winversion", + "method": "git", + "tags": [ + "windows", + "version" + ], + "description": "This package allows you to determine the running version of the Windows operating system.", + "license": "MIT", + "web": "https://github.com/rockcavera/winversion" } ] From 57704c32ff8503d6d016893c81aa4acb9db83d58 Mon Sep 17 00:00:00 2001 From: StefanSalewski Date: Thu, 17 Oct 2019 07:24:39 +0200 Subject: [PATCH 1065/1381] Added package rtree (#1206) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index a5af526..2c3a272 100644 --- a/packages.json +++ b/packages.json @@ -14789,6 +14789,17 @@ "license": "MIT", "web": "https://github.com/thebigbaron/rainbow" }, + { + "name": "rtree", + "url": "https://github.com/stefansalewski/RTree", + "method": "git", + "tags": [ + "library" + ], + "description": "R-Tree", + "license": "MIT", + "web": "https://github.com/stefansalewski/RTree" + }, { "name": "winversion", "url": "https://github.com/rockcavera/winversion", From 3829c6f281e03fd23632d71b24709c3d7029a1f0 Mon Sep 17 00:00:00 2001 From: Max Skybin Date: Fri, 18 Oct 2019 01:37:29 -0400 Subject: [PATCH 1066/1381] Added package npg (#1209) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 2c3a272..f81c1ff 100644 --- a/packages.json +++ b/packages.json @@ -14811,5 +14811,18 @@ "description": "This package allows you to determine the running version of the Windows operating system.", "license": "MIT", "web": "https://github.com/rockcavera/winversion" + }, + { + "name": "npg", + "url": "https://github.com/rustomax/npg", + "method": "git", + "tags": [ + "password-generator", + "password", + "cli" + ], + "description": "Password generator in Nim", + "license": "MIT", + "web": "https://github.com/rustomax/npg" } ] From db2b34cd40a1b6dde5646f933cf31757808bf85a Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sun, 20 Oct 2019 02:48:30 -0400 Subject: [PATCH 1067/1381] Added package bump (#1211) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index f81c1ff..9250a7f 100644 --- a/packages.json +++ b/packages.json @@ -14824,5 +14824,21 @@ "description": "Password generator in Nim", "license": "MIT", "web": "https://github.com/rustomax/npg" + }, + { + "name": "bump", + "url": "https://github.com/disruptek/bump", + "method": "git", + "tags": [ + "nimble", + "bump", + "release", + "tag", + "package", + "tool" + ], + "description": "a tiny tool to bump nimble versions", + "license": "MIT", + "web": "https://github.com/disruptek/bump" } ] From 65219302b98a83cdfcebb0688c062f81cd930b24 Mon Sep 17 00:00:00 2001 From: wltsmrz Date: Sun, 20 Oct 2019 19:30:52 +0900 Subject: [PATCH 1068/1381] Added package nimler (#1212) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 9250a7f..34e40dd 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,16 @@ [ + { + "name": "nimler", + "url": "https://github.com/wltsmrz/nimler", + "method": "git", + "tags": [ + "Erlang", + "Elixir" + ], + "description": "Erlang/Elixir NIFs for nim", + "license": "MIT", + "web": "https://github.com/wltsmrz/nimler" + }, { "name": "QuickJS4nim", "url": "https://github.com/ImVexed/quickjs4nim", From 8d8d8d4f930d478cd252e1c3ce8160543114ed53 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sun, 20 Oct 2019 16:51:44 -0400 Subject: [PATCH 1069/1381] Added package "swayipc" (#1213) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 34e40dd..e0a591c 100644 --- a/packages.json +++ b/packages.json @@ -14852,5 +14852,23 @@ "description": "a tiny tool to bump nimble versions", "license": "MIT", "web": "https://github.com/disruptek/bump" + }, + { + "name": "swayipc", + "url": "https://github.com/disruptek/swayipc", + "method": "git", + "tags": [ + "wayland", + "sway", + "i3", + "ipc", + "i3ipc", + "swaymsg", + "x11", + "swaywm" + ], + "description": "IPC interface to sway (or i3) compositors", + "license": "MIT", + "web": "https://github.com/disruptek/swayipc" } ] From 7a2ef84b27768e2560a52b0284246f0ac2e5ce5a Mon Sep 17 00:00:00 2001 From: Jason Koch Date: Mon, 21 Oct 2019 22:25:58 -0700 Subject: [PATCH 1070/1381] Added package nimbpf (#1214) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e0a591c..00bb711 100644 --- a/packages.json +++ b/packages.json @@ -14870,5 +14870,18 @@ "description": "IPC interface to sway (or i3) compositors", "license": "MIT", "web": "https://github.com/disruptek/swayipc" + }, + { + "name": "nimbpf", + "url": "https://github.com/jasonk000/nimbpf", + "method": "git", + "tags": [ + "libbpf", + "ebpf", + "bpf" + ], + "description": "libbpf for nim", + "license": "MIT", + "web": "https://github.com/jasonk000/nimbpf" } ] From 92bb9b8dc7e1aca31609951187437cad248ff1d5 Mon Sep 17 00:00:00 2001 From: Jason Koch Date: Mon, 21 Oct 2019 23:32:26 -0700 Subject: [PATCH 1071/1381] Added package nimpmda (#1215) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 00bb711..620a4ed 100644 --- a/packages.json +++ b/packages.json @@ -14871,6 +14871,21 @@ "license": "MIT", "web": "https://github.com/disruptek/swayipc" }, + { + "name": "nimpmda", + "url": "https://github.com/jasonk000/nimpmda", + "method": "git", + "tags": [ + "pcp", + "pmda", + "performance", + "libpcp", + "libpmda" + ], + "description": "PCP PMDA module bindings", + "license": "MIT", + "web": "https://github.com/jasonk000/nimpmda" + }, { "name": "nimbpf", "url": "https://github.com/jasonk000/nimbpf", From 5d66e807197d3e605c4d05836957260ae038eb48 Mon Sep 17 00:00:00 2001 From: Michael Krauter Date: Tue, 22 Oct 2019 09:03:39 +0200 Subject: [PATCH 1072/1381] oracle odpic-wrapper (#1210) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 620a4ed..5bec71b 100644 --- a/packages.json +++ b/packages.json @@ -14837,6 +14837,19 @@ "license": "MIT", "web": "https://github.com/rustomax/npg" }, + { + "name": "nimodpi", + "url": "https://github.com/mikra01/nimodpi", + "method": "git", + "tags": [ + "oracle", + "odpi-c", + "wrapper" + ], + "description": "oracle odpi-c wrapper for Nim", + "license": "MIT", + "web": "https://github.com/mikra01/nimodpi" + }, { "name": "bump", "url": "https://github.com/disruptek/bump", From facb547b13f73e7e0e764846250818bda12da7c7 Mon Sep 17 00:00:00 2001 From: Willyboar Date: Fri, 25 Oct 2019 08:00:04 +0300 Subject: [PATCH 1073/1381] Added package pine (#1218) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5bec71b..8f4463a 100644 --- a/packages.json +++ b/packages.json @@ -14911,5 +14911,18 @@ "description": "libbpf for nim", "license": "MIT", "web": "https://github.com/jasonk000/nimbpf" + }, + { + "name": "pine", + "url": "https://github.com/thebigbaron/pine", + "method": "git", + "tags": [ + "static", + "site", + "generator" + ], + "description": "Nim Static Blog & Site Generator", + "license": "MIT", + "web": "https://github.com/thebigbaron/pine" } ] From 627676b27a9b20d87ec8125465a116a0131df795 Mon Sep 17 00:00:00 2001 From: Vindaar Date: Fri, 25 Oct 2019 16:29:31 +0200 Subject: [PATCH 1074/1381] add ginger, ggplotnim (#1219) --- packages.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/packages.json b/packages.json index 8f4463a..3c1c480 100644 --- a/packages.json +++ b/packages.json @@ -14924,5 +14924,36 @@ "description": "Nim Static Blog & Site Generator", "license": "MIT", "web": "https://github.com/thebigbaron/pine" + }, + { + "name": "ginger", + "url": "https://github.com/Vindaar/ginger", + "method": "git", + "tags": [ + "library", + "cairo", + "graphics", + "plotting" + ], + "description": "A Grid (R) like package in Nim", + "license": "MIT", + "web": "https://github.com/Vindaar/ginger" + }, + { + "name": "ggplotnim", + "url": "https://github.com/Vindaar/ggplotnim", + "method": "git", + "tags": [ + "library", + "grammar of graphics", + "gog", + "ggplot2", + "plotting", + "graphics", + "dataframe" + ], + "description": "A port of ggplot2 for Nim", + "license": "MIT", + "web": "https://github.com/Vindaar/ggplotnim" } ] From 1c431e434edfaacfee74cbbcf00b88764c5450ee Mon Sep 17 00:00:00 2001 From: Leonardo Mariscal Date: Sun, 27 Oct 2019 00:16:44 -0500 Subject: [PATCH 1075/1381] Add package owo (#1222) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3c1c480..ece839d 100644 --- a/packages.json +++ b/packages.json @@ -14955,5 +14955,17 @@ "description": "A port of ggplot2 for Nim", "license": "MIT", "web": "https://github.com/Vindaar/ggplotnim" + }, + { + "name": "owo", + "url": "https://github.com/lmariscal/owo", + "method": "git", + "tags": [ + "fun", + "utility" + ], + "description": "OwO text convewtew fow Nim", + "license": "MIT", + "web": "https://github.com/lmariscal/owo" } ] From eec39dda25d51e7a041ed6f0ccdd7e574baac1f0 Mon Sep 17 00:00:00 2001 From: Sean Hellum Date: Mon, 28 Oct 2019 00:50:52 -0500 Subject: [PATCH 1076/1381] Added package NimTacToe (#1223) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index ece839d..59095f7 100644 --- a/packages.json +++ b/packages.json @@ -14967,5 +14967,16 @@ "description": "OwO text convewtew fow Nim", "license": "MIT", "web": "https://github.com/lmariscal/owo" + }, + { + "name": "NimTacToe", + "url": "https://github.com/JesterOrNot/Nim-Tac-Toe", + "method": "git", + "tags": [ + "no" + ], + "description": "A new awesome nimble package", + "license": "MIT", + "web": "https://github.com/JesterOrNot/Nim-Tac-Toe" } ] From 6ab80c24cb536742668e628f4b850e44a318e097 Mon Sep 17 00:00:00 2001 From: Manuel Philipp Date: Mon, 28 Oct 2019 21:18:30 +0100 Subject: [PATCH 1077/1381] Added package nimagehide (#1224) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 59095f7..694a57e 100644 --- a/packages.json +++ b/packages.json @@ -14978,5 +14978,21 @@ "description": "A new awesome nimble package", "license": "MIT", "web": "https://github.com/JesterOrNot/Nim-Tac-Toe" + }, + { + "name": "nimagehide", + "url": "https://github.com/MnlPhlp/nimagehide", + "method": "git", + "tags": [ + "library", + "cli", + "staganography", + "image", + "hide", + "secret" + ], + "description": "A library to hide data in images. Usable as library or cli tool.", + "license": "MIT", + "web": "https://github.com/MnlPhlp/nimagehide" } ] From 7264c968c71875908683a142fb91ab187905d7aa Mon Sep 17 00:00:00 2001 From: hectormonacci Date: Tue, 29 Oct 2019 01:53:59 -0300 Subject: [PATCH 1078/1381] Added hectormonacci/tsv2json (#1225) tsv2json is a terminal utility writenn entirely in Nim. It takes a file or stream with a TSV header and zero or more TSV records and returns the same information, formatted as JSON --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 694a57e..00367fa 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,16 @@ [ + { + "name": "tsv2json", + "url": "https://github.com/hectormonacci/tsv2json", + "method": "git", + "tags": [ + "TSV", + "JSON" + ], + "description": "Turn TSV file or stream into JSON file or stream", + "license": "MIT", + "web": "https://github.com/hectormonacci/tsv2json" + }, { "name": "nimler", "url": "https://github.com/wltsmrz/nimler", From a2883af696d662a203c0f4c72df7b782d7016c87 Mon Sep 17 00:00:00 2001 From: Gampol T Date: Tue, 29 Oct 2019 18:45:59 +0700 Subject: [PATCH 1079/1381] Added package srv (#1226) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 00367fa..2a29fa0 100644 --- a/packages.json +++ b/packages.json @@ -15006,5 +15006,16 @@ "description": "A library to hide data in images. Usable as library or cli tool.", "license": "MIT", "web": "https://github.com/MnlPhlp/nimagehide" + }, + { + "name": "srv", + "url": "https://github.com/me7/srv", + "method": "git", + "tags": [ + "web-server" + ], + "description": "A tiny static file web server.", + "license": "MIT", + "web": "https://github.com/me7/srv" } ] From 54e8c8bb28401ea40e2da243e4320ebcd6cf0854 Mon Sep 17 00:00:00 2001 From: Michal Kijowski Date: Tue, 29 Oct 2019 23:40:47 +0100 Subject: [PATCH 1080/1381] Added package autotyper --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 2a29fa0..393f237 100644 --- a/packages.json +++ b/packages.json @@ -15017,5 +15017,18 @@ "description": "A tiny static file web server.", "license": "MIT", "web": "https://github.com/me7/srv" + }, + { + "name": "autotyper", + "url": "https://github.com/kijowski/autotyper", + "method": "git", + "tags": [ + "terminal", + "cli", + "typing-emulator" + ], + "description": "Keyboard typing emulator", + "license": "MIT", + "web": "https://github.com/kijowski/autotyper" } ] From 91cef4571a735c412a851f10bc6af5eabf7bf326 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 31 Oct 2019 02:44:26 -0300 Subject: [PATCH 1081/1381] Added package dnsprotec (#1228) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 393f237..7842943 100644 --- a/packages.json +++ b/packages.json @@ -15030,5 +15030,17 @@ "description": "Keyboard typing emulator", "license": "MIT", "web": "https://github.com/kijowski/autotyper" + }, + { + "name": "dnsprotec", + "url": "https://github.com/juancarlospaco/nim-dnsprotec", + "method": "git", + "tags": [ + "dns", + "hosts" + ], + "description": "DNS /etc/hosts file manager, Block 1 Million malicious domains with 1 command", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-dnsprotec" } ] From cf35f67699541471bfe5e06a2d0f6e57082dbffe Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Fri, 1 Nov 2019 03:03:23 +0700 Subject: [PATCH 1082/1381] Added package fastcgi (#1229) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7842943..3107524 100644 --- a/packages.json +++ b/packages.json @@ -15042,5 +15042,18 @@ "description": "DNS /etc/hosts file manager, Block 1 Million malicious domains with 1 command", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-dnsprotec" + }, + { + "name": "fastcgi", + "url": "https://github.com/ba0f3/fastcgi.nim", + "method": "git", + "tags": [ + "fastcgi", + "fcgi", + "cgi" + ], + "description": "FastCGI library for Nim", + "license": "MIT", + "web": "https://github.com/ba0f3/fastcgi.nim" } ] From 9eda7130bcf0cf22d695e4f51ab07f2fa1cda7d5 Mon Sep 17 00:00:00 2001 From: genotrance Date: Fri, 1 Nov 2019 02:04:13 -0500 Subject: [PATCH 1083/1381] Added package nimgraphql (#1231) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 3107524..be9e890 100644 --- a/packages.json +++ b/packages.json @@ -15043,6 +15043,17 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-dnsprotec" }, + { + "name": "nimgraphql", + "url": "https://github.com/genotrance/nimgraphql", + "method": "git", + "tags": [ + "graphql" + ], + "description": "libgraphqlparser wrapper for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/nimgraphql" + }, { "name": "fastcgi", "url": "https://github.com/ba0f3/fastcgi.nim", From 0452606d666e39889420096a4a14918cc3d37afc Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 1 Nov 2019 04:39:01 -0300 Subject: [PATCH 1084/1381] Added package chonker (#1232) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index be9e890..e32682b 100644 --- a/packages.json +++ b/packages.json @@ -15066,5 +15066,18 @@ "description": "FastCGI library for Nim", "license": "MIT", "web": "https://github.com/ba0f3/fastcgi.nim" + }, + { + "name": "chonker", + "url": "https://github.com/juancarlospaco/nim-chonker", + "method": "git", + "tags": [ + "arch", + "linux", + "pacman" + ], + "description": "Arch Linux Pacman Optimizer", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-chonker" } ] From 78369a1303007c7afa4e39b1b9b5e071d26696ac Mon Sep 17 00:00:00 2001 From: jiro Date: Sat, 2 Nov 2019 15:46:36 +0900 Subject: [PATCH 1085/1381] Added package maze (#1234) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e32682b..065adcd 100644 --- a/packages.json +++ b/packages.json @@ -15079,5 +15079,19 @@ "description": "Arch Linux Pacman Optimizer", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-chonker" + }, + { + "name": "maze", + "url": "https://github.com/jiro4989/maze", + "method": "git", + "tags": [ + "maze", + "cli", + "library", + "algorithm" + ], + "description": "A command and library to generate mazes", + "license": "MIT", + "web": "https://github.com/jiro4989/maze" } ] From bdf9f0b1f91b39fb3005d3cd075a98b2a8aad581 Mon Sep 17 00:00:00 2001 From: Miran Date: Mon, 4 Nov 2019 09:04:59 +0100 Subject: [PATCH 1086/1381] add package 'sorta' (#1236) --- packages.json | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 065adcd..7eed6a2 100644 --- a/packages.json +++ b/packages.json @@ -9364,7 +9364,24 @@ ], "description": "Itertools for Nim", "license": "MIT", - "web": "https://github.com/narimiran/itertools" + "web": "https://narimiran.github.io/itertools/" + }, + { + "name": "sorta", + "url": "https://github.com/narimiran/sorta", + "method": "git", + "tags": [ + "sort", + "sorted", + "table", + "sorted-table", + "b-tree", + "btree", + "ordered" + ], + "description": "Sorted Tables for Nim, based on B-Trees", + "license": "MIT", + "web": "https://narimiran.github.io/sorta/" }, { "name": "typelists", From 510a9c82dc358ec3646b0cd4726c7f4f22dcb659 Mon Sep 17 00:00:00 2001 From: markspanbroek Date: Mon, 4 Nov 2019 11:01:32 +0100 Subject: [PATCH 1087/1381] Added package monocypher (#1237) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 7eed6a2..67278f4 100644 --- a/packages.json +++ b/packages.json @@ -15110,5 +15110,17 @@ "description": "A command and library to generate mazes", "license": "MIT", "web": "https://github.com/jiro4989/maze" + }, + { + "name": "monocypher", + "url": "https://github.com/markspanbroek/monocypher.nim", + "method": "git", + "tags": [ + "monocypher", + "crypto" + ], + "description": "Monocypher", + "license": "MIT", + "web": "https://github.com/markspanbroek/monocypher.nim" } ] From 374aaff04d5afdd7979d9f3cdf4bd85bb90ef4c7 Mon Sep 17 00:00:00 2001 From: Manuel Philipp Date: Tue, 5 Nov 2019 14:16:50 +0100 Subject: [PATCH 1088/1381] Added package cli_menu (#1238) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 67278f4..7d26adc 100644 --- a/packages.json +++ b/packages.json @@ -15122,5 +15122,20 @@ "description": "Monocypher", "license": "MIT", "web": "https://github.com/markspanbroek/monocypher.nim" + }, + { + "name": "cli_menu", + "url": "https://github.com/MnlPhlp/cli_menu", + "method": "git", + "tags": [ + "menu", + "library", + "cli", + "interactive", + "userinput" + ], + "description": "A library to create interactive commandline menus without writing boilerplate code.", + "license": "MIT", + "web": "https://github.com/MnlPhlp/cli_menu" } ] From bc3dcb0437012fc012c5e2355330b049715893c4 Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Thu, 7 Nov 2019 02:07:24 +0700 Subject: [PATCH 1089/1381] Added package sim (#1239) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 7d26adc..4e53a3c 100644 --- a/packages.json +++ b/packages.json @@ -15137,5 +15137,18 @@ "description": "A library to create interactive commandline menus without writing boilerplate code.", "license": "MIT", "web": "https://github.com/MnlPhlp/cli_menu" + }, + { + "name": "sim", + "url": "https://github.com/ba0f3/sim.nim", + "method": "git", + "tags": [ + "config", + "parser", + "parsing" + ], + "description": "Parse config by defining an object", + "license": "MIT", + "web": "https://github.com/ba0f3/sim.nim" } ] From 9a76fefd349f98ca37c9d6417e382ec05d823622 Mon Sep 17 00:00:00 2001 From: Zed Date: Thu, 7 Nov 2019 07:27:25 +0100 Subject: [PATCH 1090/1381] Added package redpool (#1241) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4e53a3c..6bd971f 100644 --- a/packages.json +++ b/packages.json @@ -15150,5 +15150,17 @@ "description": "Parse config by defining an object", "license": "MIT", "web": "https://github.com/ba0f3/sim.nim" + }, + { + "name": "redpool", + "url": "https://github.com/zedeus/redpool", + "method": "git", + "tags": [ + "redis", + "pool" + ], + "description": "Redis connection pool", + "license": "MIT", + "web": "https://github.com/zedeus/redpool" } ] From cbdae7c8e20f76cde23cd1c14144a10b2a0b9ffd Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Thu, 7 Nov 2019 07:02:09 +0000 Subject: [PATCH 1091/1381] Add libu2f (#1240) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 6bd971f..aa4bf14 100644 --- a/packages.json +++ b/packages.json @@ -15138,6 +15138,21 @@ "license": "MIT", "web": "https://github.com/MnlPhlp/cli_menu" }, + { + "name": "libu2f", + "url": "", + "method": "git", + "tags": [ + "u2f", + "library", + "security", + "authentication", + "fido" + ], + "description": "A wrapper for libu2f, a library for FIDO/U2F", + "license": "LGPLv3", + "web": "https://github.com/FedericoCeratto/nim-libu2f" + }, { "name": "sim", "url": "https://github.com/ba0f3/sim.nim", @@ -15163,4 +15178,5 @@ "license": "MIT", "web": "https://github.com/zedeus/redpool" } + ] From 54b2556c518519d7ef1e7b81406bbe045668cfbc Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 9 Nov 2019 12:47:14 +0000 Subject: [PATCH 1092/1381] Fix libu2f url --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index aa4bf14..768866d 100644 --- a/packages.json +++ b/packages.json @@ -15140,7 +15140,7 @@ }, { "name": "libu2f", - "url": "", + "url": "https://github.com/FedericoCeratto/nim-libu2f", "method": "git", "tags": [ "u2f", From a224fb12524e63033dd29e4d4d9e4b603f6c108f Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Sat, 9 Nov 2019 13:48:47 -0600 Subject: [PATCH 1093/1381] Add bson and mongopool (#1243) --- packages.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/packages.json b/packages.json index 768866d..82ad365 100644 --- a/packages.json +++ b/packages.json @@ -15177,6 +15177,36 @@ "description": "Redis connection pool", "license": "MIT", "web": "https://github.com/zedeus/redpool" + }, + { + "name": "bson", + "url": "https://github.com/JohnAD/bson", + "method": "git", + "tags": [ + "bson", + "serialize", + "parser", + "json" + ], + "description": "BSON Binary JSON Serialization", + "license": "MIT", + "web": "https://github.com/JohnAD/bson" + }, + { + "name": "mongopool", + "url": "https://github.com/JohnAD/mongopool", + "method": "git", + "tags": [ + "mongodb", + "mongo", + "database", + "driver", + "client", + "nosql" + ], + "description": "MongoDb pooled driver", + "license": "MIT", + "web": "https://github.com/JohnAD/mongopool" } ] From 6f10e0fe1ae544d3474b42b8fb1d531918d276eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zieli=C5=84ski?= Date: Sun, 10 Nov 2019 18:11:42 +0100 Subject: [PATCH 1094/1381] add leveldb bindings (#1244) --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 82ad365..2c92413 100644 --- a/packages.json +++ b/packages.json @@ -15207,6 +15207,17 @@ "description": "MongoDb pooled driver", "license": "MIT", "web": "https://github.com/JohnAD/mongopool" + }, + { + "name": "leveldb", + "url": "https://github.com/zielmicha/leveldb.nim", + "method": "git", + "tags": [ + "leveldb", + "database" + ], + "description": "LevelDB bindings", + "license": "MIT", + "web": "https://github.com/zielmicha/leveldb.nim" } - ] From 98271063fa0e02c25a0aa9c09eff1da593851f02 Mon Sep 17 00:00:00 2001 From: lqdev Date: Sun, 10 Nov 2019 18:45:04 +0100 Subject: [PATCH 1095/1381] Added package euwren (#1245) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 2c92413..8e38cc8 100644 --- a/packages.json +++ b/packages.json @@ -15208,6 +15208,21 @@ "license": "MIT", "web": "https://github.com/JohnAD/mongopool" }, + { + "name": "euwren", + "url": "https://github.com/liquid600pgm/euwren", + "method": "git", + "tags": [ + "wren", + "embedded", + "scripting", + "language", + "wrapper" + ], + "description": "High-level Wren wrapper", + "license": "MIT", + "web": "https://github.com/liquid600pgm/euwren" + }, { "name": "leveldb", "url": "https://github.com/zielmicha/leveldb.nim", From 8a9bc2038cd0f55a159fae28af89cd62fd10bf63 Mon Sep 17 00:00:00 2001 From: juancarlospaco Date: Mon, 11 Nov 2019 19:43:42 -0300 Subject: [PATCH 1096/1381] Added package requirementstxt --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8e38cc8..969a5c9 100644 --- a/packages.json +++ b/packages.json @@ -15234,5 +15234,18 @@ "description": "LevelDB bindings", "license": "MIT", "web": "https://github.com/zielmicha/leveldb.nim" + }, + { + "name": "requirementstxt", + "url": "https://github.com/juancarlospaco/nim-requirementstxt", + "method": "git", + "tags": [ + "python", + "pip", + "requirements" + ], + "description": "Python requirements.txt generic parser for Nim", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-requirementstxt" } ] From 24e7c88f7ec0671edad3e45188396b7f84ceba51 Mon Sep 17 00:00:00 2001 From: jiro Date: Wed, 13 Nov 2019 02:42:35 +0900 Subject: [PATCH 1097/1381] Added package edens (#1247) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 969a5c9..62983d1 100644 --- a/packages.json +++ b/packages.json @@ -15247,5 +15247,20 @@ "description": "Python requirements.txt generic parser for Nim", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-requirementstxt" + }, + { + "name": "edens", + "url": "https://github.com/jiro4989/edens", + "method": "git", + "tags": [ + "cli", + "command", + "encode", + "decode", + "joke" + ], + "description": "A command to encode / decode text with your dictionary", + "license": "MIT", + "web": "https://github.com/jiro4989/edens" } ] From 935490c850719df1bee8909fa021941c2f593f54 Mon Sep 17 00:00:00 2001 From: PMunch Date: Wed, 13 Nov 2019 11:48:18 +0100 Subject: [PATCH 1098/1381] Add getmac package (#1248) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 62983d1..51b6b5c 100644 --- a/packages.json +++ b/packages.json @@ -1272,6 +1272,19 @@ "license": "MIT", "web": "https://github.com/PMunch/nim-optionsutils" }, + { + "name": "getmac", + "url": "https://github.com/PMunch/getmac", + "method": "git", + "tags": [ + "network", + "mac", + "ip" + ], + "description": "A package to get the MAC address of a local IP address", + "license": "MIT", + "web": "https://github.com/PMunch/getmac" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 093a199aea6a533d9c6e9e074408539476389786 Mon Sep 17 00:00:00 2001 From: Ahrotahn <40727284+Ahrotahn@users.noreply.github.com> Date: Wed, 13 Nov 2019 13:25:16 -0600 Subject: [PATCH 1099/1381] Add argon2 package (#1249) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 51b6b5c..0012c36 100644 --- a/packages.json +++ b/packages.json @@ -15275,5 +15275,21 @@ "description": "A command to encode / decode text with your dictionary", "license": "MIT", "web": "https://github.com/jiro4989/edens" + }, + { + "name": "argon2", + "url": "https://github.com/Ahrotahn/argon2", + "method": "git", + "tags": [ + "argon2", + "crypto", + "hash", + "library", + "password", + "wrapper" + ], + "description": "A nim wrapper for the Argon2 hashing library", + "license": "MIT", + "web": "https://github.com/Ahrotahn/argon2" } ] From 6470cb5f7157b9d0a882057cd43447d4b3c6ee49 Mon Sep 17 00:00:00 2001 From: madprops <206498+madprops@users.noreply.github.com> Date: Fri, 15 Nov 2019 11:53:56 -0600 Subject: [PATCH 1100/1381] Added package nap (#1250) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 0012c36..8ce1980 100644 --- a/packages.json +++ b/packages.json @@ -15291,5 +15291,19 @@ "description": "A nim wrapper for the Argon2 hashing library", "license": "MIT", "web": "https://github.com/Ahrotahn/argon2" + }, + { + "name": "nap", + "url": "https://github.com/madprops/nap", + "method": "git", + "tags": [ + "arguments", + "parser", + "opts", + "library" + ], + "description": "Argument parser", + "license": "MIT", + "web": "https://github.com/madprops/nap" } ] From 7b913acdf90985b4f04ce40a83e43a04d9fc55ec Mon Sep 17 00:00:00 2001 From: Matt Cavalier Date: Sun, 17 Nov 2019 02:14:53 -0600 Subject: [PATCH 1101/1381] Added package illwill_unsafe (#1251) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8ce1980..1fb8720 100644 --- a/packages.json +++ b/packages.json @@ -15305,5 +15305,18 @@ "description": "Argument parser", "license": "MIT", "web": "https://github.com/madprops/nap" + }, + { + "name": "illwill_unsafe", + "url": "https://github.com/matthewjcavalier/illwill_unsafe", + "method": "git", + "tags": [ + "illWill_fork", + "terminal", + "ncurses" + ], + "description": "A fork of John Novak (john@johnnovak.net)'s illwill package that is less safe numbers wise", + "license": "WTFPL", + "web": "https://github.com/matthewjcavalier/illwill_unsafe" } ] From a43a1097caacc1b00cbfba053dfb12fdfa645484 Mon Sep 17 00:00:00 2001 From: Evgeniy Vasilev Date: Sun, 17 Nov 2019 17:36:38 +0100 Subject: [PATCH 1102/1381] Added package sparkline (#1252) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1fb8720..cb29616 100644 --- a/packages.json +++ b/packages.json @@ -15318,5 +15318,18 @@ "description": "A fork of John Novak (john@johnnovak.net)'s illwill package that is less safe numbers wise", "license": "WTFPL", "web": "https://github.com/matthewjcavalier/illwill_unsafe" + }, + { + "name": "sparkline", + "url": "https://github.com/aquilax/sparkline-nim", + "method": "git", + "tags": [ + "library", + "sparkline", + "console" + ], + "description": "Sparkline library", + "license": "MIT", + "web": "https://github.com/aquilax/sparkline-nim" } ] From 38d8f9d7e7510e22452db9f6839da7c44c1e73cf Mon Sep 17 00:00:00 2001 From: John Novak Date: Thu, 21 Nov 2019 22:55:27 +1000 Subject: [PATCH 1103/1381] Switch from old abandoned NanoVG package to a currently maintained one (#1253) --- packages.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index cb29616..c16ff89 100644 --- a/packages.json +++ b/packages.json @@ -3365,8 +3365,8 @@ "web": "https://github.com/rnowley/nim-ncurses" }, { - "name": "nanovg.nim", - "url": "https://github.com/fowlmouth/nanovg.nim", + "name": "nanovg", + "url": "https://github.com/johnnovak/nim-nanovg", "method": "git", "tags": [ "wrapper", @@ -3374,9 +3374,9 @@ "vector graphics", "opengl" ], - "description": "A wrapper for NanoVG vector graphics rendering", + "description": "Nim wrapper for the C NanoVG antialiased vector graphics rendering library for OpenGL", "license": "MIT", - "web": "https://github.com/fowlmouth/nanovg.nim" + "web": "https://github.com/johnnovak/nim-nanovg" }, { "name": "pwd", From d94273a4d53671c83b4d387ebf001843c0384627 Mon Sep 17 00:00:00 2001 From: Andreas Wilm Date: Fri, 22 Nov 2019 20:23:29 +0800 Subject: [PATCH 1104/1381] Added package readfq (#1254) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index c16ff89..5064378 100644 --- a/packages.json +++ b/packages.json @@ -15331,5 +15331,20 @@ "description": "Sparkline library", "license": "MIT", "web": "https://github.com/aquilax/sparkline-nim" + }, + { + "name": "readfq", + "url": "https://github.com/andreas-wilm/nimreadfq", + "method": "git", + "tags": [ + "fasta", + "fastq", + "parser", + "kseq", + "readfq" + ], + "description": "Wrapper for Heng Li's kseq", + "license": "MIT", + "web": "https://github.com/andreas-wilm/nimreadfq" } ] From d5e19da570913c08fcef84e959479deb11ac8fc6 Mon Sep 17 00:00:00 2001 From: Miran Date: Fri, 22 Nov 2019 15:03:48 +0100 Subject: [PATCH 1105/1381] add `lc` (list comprehension) (#1255) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 5064378..713a62e 100644 --- a/packages.json +++ b/packages.json @@ -11371,6 +11371,22 @@ "license": "MIT", "web": "https://github.com/nim-lang/graveyard/tree/master/xmldomparser" }, + { + "name": "list_comprehension", + "url": "https://github.com/nim-lang/graveyard?subdir=lc", + "method": "git", + "tags": [ + "graveyard", + "lc", + "list", + "comprehension", + "list_comp", + "list_comprehension" + ], + "description": "List comprehension, for creating sequences.", + "license": "MIT", + "web": "https://github.com/nim-lang/graveyard/tree/master/lc" + }, { "name": "result", "url": "https://github.com/arnetheduck/nim-result", From 582cf453604d53b7bbdf49a04d5161bfee79a346 Mon Sep 17 00:00:00 2001 From: Xie Yanbo Date: Fri, 22 Nov 2019 22:48:12 +0800 Subject: [PATCH 1106/1381] Add googlesearch package (#1256) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 713a62e..716bccd 100644 --- a/packages.json +++ b/packages.json @@ -15362,5 +15362,17 @@ "description": "Wrapper for Heng Li's kseq", "license": "MIT", "web": "https://github.com/andreas-wilm/nimreadfq" + }, + { + "name": "googlesearch", + "url": "https://github.com/xyb/googlesearch.nim", + "method": "git", + "tags": [ + "google", + "search" + ], + "description": "library for scraping google search results", + "license": "MIT", + "web": "https://github.com/xyb/googlesearch.nim" } ] From fd40eaa2130fe6825a42f4bf701e1910c223e9ec Mon Sep 17 00:00:00 2001 From: Benjamin Summerton Date: Sat, 23 Nov 2019 02:27:47 -0500 Subject: [PATCH 1107/1381] Fix stb_image `url` (#1257) https://gitlab.com/define-private-public/stb_image-Nim/issues/9 User was having trouble installing the package via nimble. Suggested I add `.git` at the end of this package's `url` to fix it. --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 716bccd..fac3326 100644 --- a/packages.json +++ b/packages.json @@ -6501,7 +6501,7 @@ }, { "name": "stb_image", - "url": "https://gitlab.com/define-private-public/stb_image-Nim", + "url": "https://gitlab.com/define-private-public/stb_image-Nim.git", "method": "git", "tags": [ "stb", From 7f25e79af5b7fa0f0ec667dcee1c6346375862dd Mon Sep 17 00:00:00 2001 From: lqdev Date: Sun, 24 Nov 2019 17:44:21 +0100 Subject: [PATCH 1108/1381] Added package rdgui (#1258) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fac3326..15b2458 100644 --- a/packages.json +++ b/packages.json @@ -15374,5 +15374,19 @@ "description": "library for scraping google search results", "license": "MIT", "web": "https://github.com/xyb/googlesearch.nim" + }, + { + "name": "rdgui", + "url": "https://github.com/liquid600pgm/rdgui", + "method": "git", + "tags": [ + "modular", + "retained", + "gui", + "toolkit" + ], + "description": "A modular GUI toolkit for rapid", + "license": "MIT", + "web": "https://github.com/liquid600pgm/rdgui" } ] From d297fa01065fb3053b93eef6324e8584c4b939d1 Mon Sep 17 00:00:00 2001 From: chocobo333 Date: Tue, 26 Nov 2019 00:31:30 +0900 Subject: [PATCH 1109/1381] Added package asciitype (#1259) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 15b2458..8cfc390 100644 --- a/packages.json +++ b/packages.json @@ -15388,5 +15388,16 @@ "description": "A modular GUI toolkit for rapid", "license": "MIT", "web": "https://github.com/liquid600pgm/rdgui" + }, + { + "name": "asciitype", + "url": "https://github.com/chocobo333/asciitype", + "method": "git", + "tags": [ + "library" + ], + "description": "This module performs character tests.", + "license": "MIT", + "web": "https://github.com/chocobo333/asciitype" } ] From 7bd4a6f2d7dcdb2ec57ecea1485dccad14e63c94 Mon Sep 17 00:00:00 2001 From: Ade Date: Tue, 26 Nov 2019 18:16:58 +0100 Subject: [PATCH 1110/1381] add gen boilerplate generator (#1260) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 8cfc390..21b8c67 100644 --- a/packages.json +++ b/packages.json @@ -15399,5 +15399,19 @@ "description": "This module performs character tests.", "license": "MIT", "web": "https://github.com/chocobo333/asciitype" + }, + { + "name": "gen", + "url": "https://github.com/Adeohluwa/gen", + "method": "git", + "tags": [ + "library", + "jester", + "boilerplate", + "generator" + ], + "description": "Boilerplate generator for Jester web framework", + "license": "MIT", + "web": "https://github.com/Adeohluwa/gen" } ] From 125a52b70f770b76ca23746d269aa11e95624004 Mon Sep 17 00:00:00 2001 From: Tumeo Date: Thu, 28 Nov 2019 03:34:59 -0300 Subject: [PATCH 1111/1381] Added package chronopipe (#1261) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 21b8c67..e78a5b1 100644 --- a/packages.json +++ b/packages.json @@ -15413,5 +15413,18 @@ "description": "Boilerplate generator for Jester web framework", "license": "MIT", "web": "https://github.com/Adeohluwa/gen" + }, + { + "name": "chronopipe", + "url": "https://github.com/williamd1k0/chrono", + "method": "git", + "tags": [ + "cli", + "timer", + "pipe" + ], + "description": "Show start/end datetime and duration of a command-line process using pipe.", + "license": "MIT", + "web": "https://github.com/williamd1k0/chrono" } ] From a57d3f35fc75f114c670e8fc3612358e104956f6 Mon Sep 17 00:00:00 2001 From: Iain King Date: Fri, 29 Nov 2019 14:27:02 +0000 Subject: [PATCH 1112/1381] Added package simple_parseopt (#1262) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index e78a5b1..f04e456 100644 --- a/packages.json +++ b/packages.json @@ -15426,5 +15426,23 @@ "description": "Show start/end datetime and duration of a command-line process using pipe.", "license": "MIT", "web": "https://github.com/williamd1k0/chrono" + }, + { + "name": "simple_parseopt", + "url": "https://github.com/onelivesleft/simple_parseopt", + "method": "git", + "tags": [ + "parseopt", + "command", + "line", + "simple", + "options", + "arguments", + "parameters", + "library" + ], + "description": "Nim module which provides clean, zero-effort command line parsing.", + "license": "MIT", + "web": "https://github.com/onelivesleft/simple_parseopt" } ] From 440e2e1204c58d3adc8bf6b9891fb57e283d2e40 Mon Sep 17 00:00:00 2001 From: Blake Nedved Date: Sat, 30 Nov 2019 23:40:14 -0600 Subject: [PATCH 1113/1381] Add nimnoise package (#1264) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index f04e456..f0b0a2b 100644 --- a/packages.json +++ b/packages.json @@ -15444,5 +15444,21 @@ "description": "Nim module which provides clean, zero-effort command line parsing.", "license": "MIT", "web": "https://github.com/onelivesleft/simple_parseopt" + }, + { + "name": "nimnoise", + "url": "https://github.com/blakeanedved/nimnoise", + "method": "git", + "tags": [ + "nimnoise", + "noise", + "coherent", + "libnoise", + "library" + ], + "description": "A port of libnoise into pure nim, heavily inspired by Libnoise.Unity, but true to the original Libnoise", + "license": "MIT", + "web": "https://github.com/blakeanedved/nimnoise", + "doc": "https://lib-nimnoise.web.app/" } ] From 76e8ae16b6d0bdeafc568bce736a952ca23ed382 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sun, 1 Dec 2019 01:02:03 -0500 Subject: [PATCH 1114/1381] Added package github (#1265) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index f0b0a2b..cc56405 100644 --- a/packages.json +++ b/packages.json @@ -15445,6 +15445,23 @@ "license": "MIT", "web": "https://github.com/onelivesleft/simple_parseopt" }, + { + "name": "github", + "url": "https://github.com/disruptek/github", + "method": "git", + "tags": [ + "github", + "api", + "rest", + "openapi", + "client", + "http", + "library" + ], + "description": "github api", + "license": "MIT", + "web": "https://github.com/disruptek/github" + }, { "name": "nimnoise", "url": "https://github.com/blakeanedved/nimnoise", From 21d9e0d200599aa21ab845bae8dc16cb223bf1aa Mon Sep 17 00:00:00 2001 From: chocobo333 Date: Thu, 5 Dec 2019 00:16:02 +0900 Subject: [PATCH 1115/1381] Added package mcmurry (#1266) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index cc56405..bba7980 100644 --- a/packages.json +++ b/packages.json @@ -15477,5 +15477,19 @@ "license": "MIT", "web": "https://github.com/blakeanedved/nimnoise", "doc": "https://lib-nimnoise.web.app/" + }, + { + "name": "mcmurry", + "url": "https://github.com/chocobo333/mcmurry", + "method": "git", + "tags": [ + "parser", + "parsergenerator", + "library", + "lexer" + ], + "description": "A module for generating lexer/parser.", + "license": "MIT", + "web": "https://github.com/chocobo333/mcmurry" } ] From fcc67a58fe8e36e3aafd6743eddfeeef5197bbd3 Mon Sep 17 00:00:00 2001 From: BinHong Lee Date: Mon, 9 Dec 2019 02:17:01 -0500 Subject: [PATCH 1116/1381] Added package stones (#1267) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index bba7980..df36482 100644 --- a/packages.json +++ b/packages.json @@ -15491,5 +15491,21 @@ "description": "A module for generating lexer/parser.", "license": "MIT", "web": "https://github.com/chocobo333/mcmurry" + }, + { + "name": "stones", + "url": "https://github.com/binhonglee/stones", + "method": "git", + "tags": [ + "library", + "tools", + "string", + "hashset", + "table", + "log" + ], + "description": "A library of useful functions and tools for nim.", + "license": "MIT", + "web": "https://github.com/binhonglee/stones" } ] From 03fca8baf7919978f9ce42c9dd7f422bf07ada13 Mon Sep 17 00:00:00 2001 From: sealmove <47466000+sealmove@users.noreply.github.com> Date: Tue, 10 Dec 2019 16:34:08 +0200 Subject: [PATCH 1117/1381] Added package kaitai_struct_nim_runtime (#1268) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index df36482..add8f17 100644 --- a/packages.json +++ b/packages.json @@ -15507,5 +15507,16 @@ "description": "A library of useful functions and tools for nim.", "license": "MIT", "web": "https://github.com/binhonglee/stones" + }, + { + "name": "kaitai_struct_nim_runtime", + "url": "https://github.com/kaitai-io/kaitai_struct_nim_runtime", + "method": "git", + "tags": [ + "library" + ], + "description": "Kaitai Struct runtime library for Nim", + "license": "MIT", + "web": "https://github.com/kaitai-io/kaitai_struct_nim_runtime" } ] From 2038b1ed77ff99b45af172636096796fbac4ac5b Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 14 Dec 2019 20:30:51 +0800 Subject: [PATCH 1118/1381] Added package docx (#1270) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index add8f17..b6ae8bc 100644 --- a/packages.json +++ b/packages.json @@ -15518,5 +15518,17 @@ "description": "Kaitai Struct runtime library for Nim", "license": "MIT", "web": "https://github.com/kaitai-io/kaitai_struct_nim_runtime" + }, + { + "name": "docx", + "url": "https://github.com/xflywind/docx", + "method": "git", + "tags": [ + "docx", + "reader" + ], + "description": "A simple docx reader.", + "license": "MIT", + "web": "https://github.com/xflywind/docx" } ] From ee88bd47e7bbe786bc7434a3784adf0cd0deabcb Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Sun, 15 Dec 2019 08:05:58 +0100 Subject: [PATCH 1119/1381] Added package synthesis (#1272) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index b6ae8bc..7143d20 100644 --- a/packages.json +++ b/packages.json @@ -15530,5 +15530,22 @@ "description": "A simple docx reader.", "license": "MIT", "web": "https://github.com/xflywind/docx" + }, + { + "name": "synthesis", + "url": "https://github.com/mratsim/Synthesis", + "method": "git", + "tags": [ + "finite-state-machine", + "state-machine", + "fsm", + "event-driven", + "reactive-programming", + "embedded", + "actor" + ], + "description": "A compile-time, compact, fast, without allocation, state-machine generator.", + "license": "MIT or Apache License 2.0", + "web": "https://github.com/mratsim/Synthesis" } ] From c21bae97937005f71777cabd00d32796dccc3199 Mon Sep 17 00:00:00 2001 From: treeform Date: Sat, 14 Dec 2019 23:20:10 -0800 Subject: [PATCH 1120/1381] Add a word2vec, steganography, mpeg, mddoc, and digitalocean library. (#1271) --- packages.json | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/packages.json b/packages.json index 7143d20..81750c6 100644 --- a/packages.json +++ b/packages.json @@ -15531,6 +15531,68 @@ "license": "MIT", "web": "https://github.com/xflywind/docx" }, + { + "name": "word2vec", + "url": "https://github.com/treeform/word2vec", + "method": "git", + "tags": [ + "nlp", + "natural-language-processing" + ], + "description": "Word2vec implemented in nim.", + "license": "MIT", + "web": "https://github.com/treeform/word2vec" + }, + { + "name": "steganography", + "url": "https://github.com/treeform/steganography", + "method": "git", + "tags": [ + "images", + "cryptography" + ], + "description": "Steganography - hide data inside an image.", + "license": "MIT", + "web": "https://github.com/treeform/steganography" + }, + { + "name": "mpeg", + "url": "https://github.com/treeform/mpeg", + "method": "git", + "tags": [ + "video", + "formats", + "file" + ], + "description": "Nim wrapper for pl_mpeg single header mpeg library.", + "license": "MIT", + "web": "https://github.com/treeform/mpeg" + }, + { + "name": "mddoc", + "url": "https://github.com/treeform/mddoc", + "method": "git", + "tags": [ + "documentation", + "markdown" + ], + "description": "Generated Nim's API docs in markdown for github's README.md files. Great for small libraries with simple APIs.", + "license": "MIT", + "web": "https://github.com/treeform/mddoc" + }, + { + "name": "digitalocean", + "url": "https://github.com/treeform/digitalocean", + "method": "git", + "tags": [ + "digitalocean", + "servers", + "api" + ], + "description": "Wrapper for DigitalOcean HTTP API.", + "license": "MIT", + "web": "https://github.com/treeform/digitalocean" + }, { "name": "synthesis", "url": "https://github.com/mratsim/Synthesis", From 0717875dad1c727ffe3fff7ae7bb12a812fe70b1 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Sun, 15 Dec 2019 19:55:35 +0100 Subject: [PATCH 1121/1381] Added package weave (#1273) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 81750c6..d4a55ab 100644 --- a/packages.json +++ b/packages.json @@ -15609,5 +15609,23 @@ "description": "A compile-time, compact, fast, without allocation, state-machine generator.", "license": "MIT or Apache License 2.0", "web": "https://github.com/mratsim/Synthesis" + }, + { + "name": "weave", + "url": "https://github.com/mratsim/weave", + "method": "git", + "tags": [ + "multithreading", + "parallelism", + "task-scheduler", + "scheduler", + "runtime", + "task-parallelism", + "data-parallelism", + "threadpool" + ], + "description": "a state-of-the-art ùultithreading runtime", + "license": "MIT or Apache License 2.0", + "web": "https://github.com/mratsim/weave" } ] From 61e522b57527015a53fba878afcb4d90ed347434 Mon Sep 17 00:00:00 2001 From: Konstantin Epishev Date: Tue, 17 Dec 2019 09:24:26 +0300 Subject: [PATCH 1122/1381] Added package anycase (#1275) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d4a55ab..b1b81f0 100644 --- a/packages.json +++ b/packages.json @@ -15627,5 +15627,19 @@ "description": "a state-of-the-art ùultithreading runtime", "license": "MIT or Apache License 2.0", "web": "https://github.com/mratsim/weave" + }, + { + "name": "anycase", + "url": "https://github.com/lamartire/anycase", + "method": "git", + "tags": [ + "camelcase", + "kebabcase", + "snakecase", + "case" + ], + "description": "Convert strings to any case", + "license": "MIT", + "web": "https://github.com/lamartire/anycase" } ] From 8512401f6811bc21b1ce9476e624a82387f5a22a Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 17 Dec 2019 13:25:05 +0700 Subject: [PATCH 1123/1381] rename evmjit to evmc (#1274) * rename evmjit to emvc * add alias for 'evmc' package --- packages.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index b1b81f0..b8a9ed4 100644 --- a/packages.json +++ b/packages.json @@ -6318,7 +6318,11 @@ }, { "name": "evmjit", - "url": "https://github.com/status-im/nim-evmjit", + "alias": "evmc" + }, + { + "name": "evmc", + "url": "https://github.com/status-im/nim-evmc", "method": "git", "tags": [ "library", @@ -6327,9 +6331,9 @@ "jit", "wrapper" ], - "description": "A wrapper for the The Ethereum EVM JIT library", + "description": "A wrapper for the The Ethereum EVMC library", "license": "Apache License 2.0", - "web": "https://github.com/status-im/nim-evmjit" + "web": "https://github.com/status-im/nim-evmc" }, { "name": "keccak_tiny", From 71613f30c5c99b93d7d37d58eb22ee2d42a256a6 Mon Sep 17 00:00:00 2001 From: Iain King Date: Tue, 17 Dec 2019 12:02:43 +0000 Subject: [PATCH 1124/1381] Add some tags to simple_parseopt (#1276) --- packages.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages.json b/packages.json index b8a9ed4..ad1355e 100644 --- a/packages.json +++ b/packages.json @@ -15440,6 +15440,9 @@ "command", "line", "simple", + "option", + "argument", + "parameter", "options", "arguments", "parameters", From 4aaedc10e77cef0b8fbf15e298f22929af73b29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Wed, 18 Dec 2019 07:01:52 +0100 Subject: [PATCH 1125/1381] add libbacktrace (#1277) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ad1355e..fa6805c 100644 --- a/packages.json +++ b/packages.json @@ -15648,5 +15648,17 @@ "description": "Convert strings to any case", "license": "MIT", "web": "https://github.com/lamartire/anycase" + }, + { + "name": "libbacktrace", + "url": "https://github.com/status-im/nim-libbacktrace", + "method": "git", + "tags": [ + "library", + "wrapper" + ], + "description": "Nim wrapper for libbacktrace", + "license": "Apache License 2.0 or MIT", + "web": "https://github.com/status-im/nim-libbacktrace" } ] From b6567b7ab36ef85a70ea9611c67176b4d29f010e Mon Sep 17 00:00:00 2001 From: vycb Date: Wed, 18 Dec 2019 16:23:38 +0200 Subject: [PATCH 1126/1381] add package gdbmc (#1278) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index fa6805c..cb20556 100644 --- a/packages.json +++ b/packages.json @@ -15660,5 +15660,20 @@ "description": "Nim wrapper for libbacktrace", "license": "Apache License 2.0 or MIT", "web": "https://github.com/status-im/nim-libbacktrace" + }, + { + "name": "gdbmc", + "url": "https://github.com/vycb/gdbmc.nim", + "method": "git", + "tags": [ + "gdbm", + "key-value", + "nosql", + "library", + "wrapper" + ], + "description": "This library is a wrapper to C GDBM library", + "license": "MIT", + "web": "https://github.com/vycb/gdbmc.nim" } ] From 11a0104f79c9301d0cb19c130940a5feeed97646 Mon Sep 17 00:00:00 2001 From: Mark Date: Thu, 19 Dec 2019 09:37:13 +0000 Subject: [PATCH 1127/1381] Add package diff (#1279) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index cb20556..6d5c8ef 100644 --- a/packages.json +++ b/packages.json @@ -15675,5 +15675,17 @@ "description": "This library is a wrapper to C GDBM library", "license": "MIT", "web": "https://github.com/vycb/gdbmc.nim" + }, + { + "name": "diff", + "url": "https://github.com/mark-summerfield/diff", + "method": "hg", + "tags": [ + "diff", + "sequencematcher" + ], + "description": "Library for finding the differences between two sequences", + "license": "Apache-2.0", + "web": "https://github.com/mark-summerfield/diff" } ] From a258f33a867fc57388dd42fbd7d3248ec05f6013 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Fri, 20 Dec 2019 09:54:20 +0000 Subject: [PATCH 1128/1381] Fix vcs protocol for diff --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 6d5c8ef..a8be961 100644 --- a/packages.json +++ b/packages.json @@ -15679,7 +15679,7 @@ { "name": "diff", "url": "https://github.com/mark-summerfield/diff", - "method": "hg", + "method": "git", "tags": [ "diff", "sequencematcher" From 716a6c05cc7f54e3f70372b34ebffc95ad8584b4 Mon Sep 17 00:00:00 2001 From: Miran Date: Thu, 26 Dec 2019 15:22:09 +0100 Subject: [PATCH 1129/1381] add multiple packages (#1291) --- packages.json | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) diff --git a/packages.json b/packages.json index a8be961..868d70e 100644 --- a/packages.json +++ b/packages.json @@ -15687,5 +15687,112 @@ "description": "Library for finding the differences between two sequences", "license": "Apache-2.0", "web": "https://github.com/mark-summerfield/diff" + }, + { + "name": "importc_helpers", + "url": "https://github.com/couven92/nim-importc-helpers.git", + "method": "git", + "tags": [ + "import", + "c", + "helper" + ], + "description": "Helpers for supporting and simplifying import of symbols from C into Nim", + "license": "MIT", + "web": "https://github.com/couven92/nim-importc-helpers" + }, + { + "name": "taps", + "url": "https://git.sr.ht/~ehmry/nim_taps", + "method": "git", + "tags": [ + "networking", + "udp", + "tcp", + "sctp" + ], + "description": "Transport Services Interface", + "license": "BSD-3-Clause", + "web": "https://datatracker.ietf.org/wg/taps/about/" + }, + { + "name": "validator", + "url": "https://github.com/Adeohluwa/validator", + "method": "git", + "tags": [ + "strings", + "validation", + "types" + ], + "description": "Functions for string validation", + "license": "MIT", + "web": "https://github.com/Adeohluwa/validator" + }, + { + "name": "simhash", + "url": "https://github.com/bung87/simhash-nim", + "method": "git", + "tags": [ + "simhash", + "algoritim" + ], + "description": "Nim implementation of simhash algoritim", + "license": "MIT", + "web": "https://github.com/bung87/simhash-nim" + }, + { + "name": "minhash", + "url": "https://github.com/bung87/minhash", + "method": "git", + "tags": [ + "minhash", + "algoritim" + ], + "description": "Nim implementation of minhash algoritim", + "license": "MIT", + "web": "https://github.com/bung87/minhash" + }, + { + "name": "fasttext", + "url": "https://github.com/bung87/fastText", + "method": "git", + "tags": [ + "nlp,text", + "process,text", + "classification" + ], + "description": "fastText porting in Nim", + "license": "MIT", + "web": "https://github.com/bung87/fastText" + }, + { + "name": "woocommerce-api-nim", + "url": "https://github.com/mrhdias/woocommerce-api-nim", + "method": "git", + "tags": [ + "e-commerce", + "woocommerce", + "rest-api", + "wrapper" + ], + "description": "A Nim wrapper for the WooCommerce REST API", + "license": "MIT", + "web": "https://github.com/mrhdias/woocommerce-api-nim" + }, + { + "name": "lq", + "url": "https://github.com/madprops/lq", + "method": "git", + "tags": [ + "directory", + "file", + "listing", + "ls", + "tree", + "stats" + ], + "description": "Directory listing tool", + "license": "GPL-2.0", + "web": "https://github.com/madprops/lq" } ] From 05420d55dad314e7d79a649fcdf7ce26176cb22c Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 28 Dec 2019 16:20:35 +0800 Subject: [PATCH 1130/1381] Add package xlsx (#1292) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 868d70e..449ecc6 100644 --- a/packages.json +++ b/packages.json @@ -15794,5 +15794,18 @@ "description": "Directory listing tool", "license": "GPL-2.0", "web": "https://github.com/madprops/lq" + }, + { + "name": "xlsx", + "url": "https://github.com/xflywind/xlsx", + "method": "git", + "tags": [ + "xlsx", + "excel", + "reader" + ], + "description": "Read and parse Excel files", + "license": "MIT", + "web": "https://github.com/xflywind/xlsx" } ] From e688beac1025cba0c7dfd710f51be9da02f53b5a Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Sun, 29 Dec 2019 02:01:23 -0600 Subject: [PATCH 1131/1381] Add package diffoutput (#1293) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 449ecc6..0fcb015 100644 --- a/packages.json +++ b/packages.json @@ -15688,6 +15688,19 @@ "license": "Apache-2.0", "web": "https://github.com/mark-summerfield/diff" }, + { + "name": "diffoutput", + "url": "https://github.com/JohnAD/diffoutput", + "method": "git", + "tags": [ + "diff", + "stringification", + "reversal" + ], + "description": "Collection of Diff stringifications (and reversals)", + "license": "MIT", + "web": "https://github.com/JohnAD/diffoutput" + }, { "name": "importc_helpers", "url": "https://github.com/couven92/nim-importc-helpers.git", From f5686073011bf3baf3f9d0c323bd2fb3ca2eccf1 Mon Sep 17 00:00:00 2001 From: jiro Date: Mon, 30 Dec 2019 20:27:52 +0900 Subject: [PATCH 1132/1381] Added package faker (#1294) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 0fcb015..ab73e89 100644 --- a/packages.json +++ b/packages.json @@ -15820,5 +15820,20 @@ "description": "Read and parse Excel files", "license": "MIT", "web": "https://github.com/xflywind/xlsx" + }, + { + "name": "faker", + "url": "https://github.com/jiro4989/faker", + "method": "git", + "tags": [ + "faker", + "library", + "cli", + "generator", + "fakedata" + ], + "description": "A new awesome nimble package", + "license": "MIT", + "web": "https://github.com/jiro4989/faker" } ] From 32fc0fa6b1042b340ab41687be4e5ebf7afe166e Mon Sep 17 00:00:00 2001 From: jiro Date: Mon, 30 Dec 2019 22:14:41 +0900 Subject: [PATCH 1133/1381] Update description (#1295) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ab73e89..5918396 100644 --- a/packages.json +++ b/packages.json @@ -15832,7 +15832,7 @@ "generator", "fakedata" ], - "description": "A new awesome nimble package", + "description": "faker is a Nim package that generates fake data for you.", "license": "MIT", "web": "https://github.com/jiro4989/faker" } From 88cbfafada6bed2cbec47bc7a462127f6b8a7dee Mon Sep 17 00:00:00 2001 From: jiro Date: Wed, 1 Jan 2020 02:20:37 +0900 Subject: [PATCH 1134/1381] Added package gyaric (#1296) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 5918396..2579280 100644 --- a/packages.json +++ b/packages.json @@ -15835,5 +15835,21 @@ "description": "faker is a Nim package that generates fake data for you.", "license": "MIT", "web": "https://github.com/jiro4989/faker" + }, + { + "name": "gyaric", + "url": "https://github.com/jiro4989/gyaric", + "method": "git", + "tags": [ + "joke", + "library", + "cli", + "gyaru", + "encoder", + "text" + ], + "description": "gyaric is a module to encode/decode text to unreadable gyaru's text.", + "license": "MIT", + "web": "https://github.com/jiro4989/gyaric" } ] From 16d95c02432932535811b3e3e25097ff9d793269 Mon Sep 17 00:00:00 2001 From: b3liever <43617260+b3liever@users.noreply.github.com> Date: Wed, 1 Jan 2020 19:34:11 +0200 Subject: [PATCH 1135/1381] Add new package (#1297) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 2579280..61244bd 100644 --- a/packages.json +++ b/packages.json @@ -15851,5 +15851,17 @@ "description": "gyaric is a module to encode/decode text to unreadable gyaru's text.", "license": "MIT", "web": "https://github.com/jiro4989/gyaric" + }, + { + "name": "patgraph", + "url": "https://github.com/b3liever/patgraph", + "method": "git", + "tags": [ + "datastructures", + "library" + ], + "description": "Graph data structure library", + "license": "MIT", + "web": "https://github.com/b3liever/patgraph" } ] From b8c8b38e5aaec9a49bbce9b3f5e33709406a1cbc Mon Sep 17 00:00:00 2001 From: Kanenobu Mitsuru Date: Thu, 2 Jan 2020 16:04:07 +0900 Subject: [PATCH 1136/1381] Add package gimei (#1299) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 61244bd..170f0ed 100644 --- a/packages.json +++ b/packages.json @@ -15863,5 +15863,18 @@ "description": "Graph data structure library", "license": "MIT", "web": "https://github.com/b3liever/patgraph" + }, + { + "name": "gimei", + "url": "https://github.com/mkanenobu/nim-gimei", + "method": "git", + "tags": [ + "japanese", + "library", + "testing" + ], + "description": "random Japanese name and address generator", + "license": "MIT", + "web": "https://github.com/mkanenobu/nim-gimei" } ] From 5389030c22b82400e60cdfc721fb076926ee09c1 Mon Sep 17 00:00:00 2001 From: Skrylar Date: Thu, 2 Jan 2020 07:28:49 +0000 Subject: [PATCH 1137/1381] add skbintext and skyhash (#1298) --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 170f0ed..ea83f45 100644 --- a/packages.json +++ b/packages.json @@ -15864,6 +15864,32 @@ "license": "MIT", "web": "https://github.com/b3liever/patgraph" }, + { + "name": "skbintext", + "url": "https://github.com/skrylar/skbintext", + "method": "git", + "tags": [ + "hexdigest", + "hexadecimal", + "binary" + ], + "description": "Binary <-> text conversion.", + "license": "MPL", + "web": "https://github.com/Skrylar/skbintext" + }, + { + "name": "skyhash", + "url": "https://github.com/Skrylar/skyhash", + "method": "git", + "tags": [ + "blake2b", + "blake2s", + "spookyhash" + ], + "description": "Collection of hash algorithms ported to Nim", + "license": "CC0", + "web": "https://github.com/Skrylar/skyhash" + }, { "name": "gimei", "url": "https://github.com/mkanenobu/nim-gimei", From 270a37ce40f22e7d0e7e752f998b2a1452f69b08 Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Thu, 2 Jan 2020 20:39:41 +0800 Subject: [PATCH 1138/1381] Added package cache (#1300) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index ea83f45..1dcd142 100644 --- a/packages.json +++ b/packages.json @@ -15902,5 +15902,16 @@ "description": "random Japanese name and address generator", "license": "MIT", "web": "https://github.com/mkanenobu/nim-gimei" + }, + { + "name": "cache", + "url": "https://github.com/planety/cached", + "method": "git", + "tags": [ + "cache" + ], + "description": "A cache library.", + "license": "MIT", + "web": "https://github.com/planety/cached" } ] From 2ed018d7ebbd240f33b1c08a0596ebf92a7fbba4 Mon Sep 17 00:00:00 2001 From: jiro Date: Thu, 2 Jan 2020 21:59:15 +0900 Subject: [PATCH 1139/1381] Added package envconfig (#1301) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1dcd142..f36bbdb 100644 --- a/packages.json +++ b/packages.json @@ -15903,6 +15903,19 @@ "license": "MIT", "web": "https://github.com/mkanenobu/nim-gimei" }, + { + "name": "envconfig", + "url": "https://github.com/jiro4989/envconfig", + "method": "git", + "tags": [ + "library", + "config", + "environment-variables" + ], + "description": "envconfig provides a function to get config objects from environment variables.", + "license": "MIT", + "web": "https://github.com/jiro4989/envconfig" + }, { "name": "cache", "url": "https://github.com/planety/cached", From a71045d1ed66aa4404976366412fdf9115c91840 Mon Sep 17 00:00:00 2001 From: Kace Cottam Date: Thu, 2 Jan 2020 22:33:14 -0800 Subject: [PATCH 1140/1381] Added package basedOn (#1302) --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index f36bbdb..856238b 100644 --- a/packages.json +++ b/packages.json @@ -15926,5 +15926,24 @@ "description": "A cache library.", "license": "MIT", "web": "https://github.com/planety/cached" + }, + { + "name": "basedOn", + "url": "https://github.com/KaceCottam/basedOn", + "method": "git", + "tags": [ + "nim", + "object-oriented", + "tuple", + "object", + "functional", + "syntax", + "macro", + "nimble", + "package" + ], + "description": "A library for cleanly creating an object or tuple based on another object or tuple", + "license": "MIT", + "web": "https://github.com/KaceCottam/basedOn" } ] From 6f2212423dfcc243178d6da3f913232b4d731879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Sat, 4 Jan 2020 08:16:06 +0100 Subject: [PATCH 1141/1381] Add onedrive library (#1303) This is a simple library to get information on files and folders in OneDrive. The library requires a public shared url to your OneDrive folder, which allows public access to files. When querying your OneDrive data, you get the data on the folder, and information on possible sub-folders and files. Normal querying only travel 1 level down, but the lib includes a deep-diver, which currently goes 3 levels down. The library output objects for files (OnedriveFile) and for folders (OnedriveFolder). The library uses the ole URL https://api.onedrive.com/v1.0/shares/u! which is not requiring any external libraries or accounts at OneDrive. This library does not support Microsoft Graph at the moment. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 856238b..6b010f1 100644 --- a/packages.json +++ b/packages.json @@ -15945,5 +15945,17 @@ "description": "A library for cleanly creating an object or tuple based on another object or tuple", "license": "MIT", "web": "https://github.com/KaceCottam/basedOn" + }, + { + "name": "onedrive", + "url": "https://github.com/ThomasTJdev/nim_onedrive", + "method": "git", + "tags": [ + "onedrive", + "cloud" + ], + "description": "Get information on files and folders in OneDrive", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_onedrive" } ] From 9de14384d69bd9415872cd1ba27898a7ecf7a8bd Mon Sep 17 00:00:00 2001 From: Beshr Kayali Date: Sun, 5 Jan 2020 17:33:48 +0100 Subject: [PATCH 1142/1381] Added package webdavclient (#1304) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6b010f1..3cadbf9 100644 --- a/packages.json +++ b/packages.json @@ -15957,5 +15957,18 @@ "description": "Get information on files and folders in OneDrive", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_onedrive" + }, + { + "name": "webdavclient", + "url": "https://github.com/beshrkayali/webdavclient", + "method": "git", + "tags": [ + "webdav", + "library", + "async" + ], + "description": "WebDAV Client for Nim", + "license": "MIT", + "web": "https://github.com/beshrkayali/webdavclient" } ] From 056a22831bd446dff7d1d9ebc1e8c22759bc4cb1 Mon Sep 17 00:00:00 2001 From: Lolo Iccl Date: Wed, 8 Jan 2020 08:10:12 +0900 Subject: [PATCH 1143/1381] update the description and tags of nimly --- packages.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 3cadbf9..fec2deb 100644 --- a/packages.json +++ b/packages.json @@ -13173,14 +13173,16 @@ "url": "https://github.com/loloiccl/nimly", "method": "git", "tags": [ - "BNF", - "EBNF", "lexer", "parser", "lexer-generator", - "parser-generator" + "parser-generator", + "lex", + "yacc", + "BNF", + "EBNF" ], - "description": "A lexer generator and parser generator package work in Nim.", + "description": "Lexer Generator and Parser Generator as a library in Nim.", "license": "GPL-3.0", "web": "https://github.com/loloiccl/nimly" }, From 53db7fd4ce4abcf4fb6eec07de4fe7a5e515955e Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Wed, 8 Jan 2020 10:52:55 -0300 Subject: [PATCH 1144/1381] Added package bcra (#1306) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fec2deb..1e9456b 100644 --- a/packages.json +++ b/packages.json @@ -15972,5 +15972,18 @@ "description": "WebDAV Client for Nim", "license": "MIT", "web": "https://github.com/beshrkayali/webdavclient" + }, + { + "name": "bcra", + "url": "https://github.com/juancarlospaco/nim-bcra", + "method": "git", + "tags": [ + "argentina", + "bank", + "api" + ], + "description": "Central Bank of Argentina Gov API Client with debtor corporations info", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-bcra" } ] From f7ea28b18e07863b8e7eb4f134dd7685c15f66be Mon Sep 17 00:00:00 2001 From: flenniken Date: Wed, 8 Jan 2020 22:03:55 -0800 Subject: [PATCH 1145/1381] Added package metar (#1308) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1e9456b..6158c98 100644 --- a/packages.json +++ b/packages.json @@ -15985,5 +15985,19 @@ "description": "Central Bank of Argentina Gov API Client with debtor corporations info", "license": "MIT", "web": "https://github.com/juancarlospaco/nim-bcra" + }, + { + "name": "metar", + "url": "https://github.com/flenniken/metar", + "method": "git", + "tags": [ + "metadate", + "image", + "python", + "library" + ], + "description": "Metadata Reader for Images", + "license": "MIT", + "web": "https://github.com/flenniken/metar" } ] From 82a4f0fb378b2cfa19ccc26a7d917a8ae6e78e7e Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Fri, 10 Jan 2020 13:12:27 +0700 Subject: [PATCH 1146/1381] Added package saya (#1310) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 6158c98..cfa9cb9 100644 --- a/packages.json +++ b/packages.json @@ -15999,5 +15999,17 @@ "description": "Metadata Reader for Images", "license": "MIT", "web": "https://github.com/flenniken/metar" + }, + { + "name": "saya", + "url": "https://github.com/Ethosa/saya_nim", + "method": "git", + "tags": [ + "VK", + "framework" + ], + "description": "Nim framework for VK", + "license": "LGPLv3", + "web": "https://github.com/Ethosa/saya_nim" } ] From 999e3a79b4fae753c1cfa2f3ab2ef0152609ef11 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Fri, 10 Jan 2020 03:31:07 -0300 Subject: [PATCH 1147/1381] Added package smnar (#1312) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index cfa9cb9..34dedb7 100644 --- a/packages.json +++ b/packages.json @@ -16000,6 +16000,19 @@ "license": "MIT", "web": "https://github.com/flenniken/metar" }, + { + "name": "smnar", + "url": "https://github.com/juancarlospaco/nim-smnar", + "method": "git", + "tags": [ + "argentina", + "weather", + "api" + ], + "description": "Servicio Meteorologico Nacional Argentina API Client", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nim-smnar" + }, { "name": "saya", "url": "https://github.com/Ethosa/saya_nim", From 45c95a6cac80543379c61628282193219f7ad4c6 Mon Sep 17 00:00:00 2001 From: ducdetronquito Date: Sat, 11 Jan 2020 14:17:05 +0100 Subject: [PATCH 1148/1381] Added package phoon (#1314) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 34dedb7..43ddcd4 100644 --- a/packages.json +++ b/packages.json @@ -16024,5 +16024,18 @@ "description": "Nim framework for VK", "license": "LGPLv3", "web": "https://github.com/Ethosa/saya_nim" + }, + { + "name": "phoon", + "url": "https://github.com/ducdetronquito/phoon", + "method": "git", + "tags": [ + "web", + "framework", + "http" + ], + "description": "A web framework inspired by ExpressJS 🐇⚡", + "license": "Public Domain", + "web": "https://github.com/ducdetronquito/phoon" } ] From fe6b0fac0337f8705cabc0a2afe54a50b4b66c5d Mon Sep 17 00:00:00 2001 From: flenniken Date: Sat, 11 Jan 2020 21:42:53 -0800 Subject: [PATCH 1149/1381] Added package nimlist (#1317) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 43ddcd4..591ad9a 100644 --- a/packages.json +++ b/packages.json @@ -16037,5 +16037,16 @@ "description": "A web framework inspired by ExpressJS 🐇⚡", "license": "Public Domain", "web": "https://github.com/ducdetronquito/phoon" + }, + { + "name": "nimlist", + "url": "https://github.com/flenniken/nimlist", + "method": "git", + "tags": [ + "exe" + ], + "description": "Browse nim packages in your browser.", + "license": "MIT", + "web": "https://github.com/flenniken/nimlist" } ] From b1ddeb88a76a737f68e538ed97dac4d98887ca6b Mon Sep 17 00:00:00 2001 From: genotrance Date: Sun, 12 Jan 2020 00:41:48 -0600 Subject: [PATCH 1150/1381] Added package choosenim (#1315) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 591ad9a..c5938e6 100644 --- a/packages.json +++ b/packages.json @@ -16038,6 +16038,22 @@ "license": "Public Domain", "web": "https://github.com/ducdetronquito/phoon" }, + { + "name": "choosenim", + "url": "https://github.com/dom96/choosenim", + "method": "git", + "tags": [ + "install", + "multiple", + "multiplexer", + "pyenv", + "rustup", + "toolchain" + ], + "description": "The Nim toolchain installer.", + "license": "MIT", + "web": "https://github.com/dom96/choosenim" + }, { "name": "nimlist", "url": "https://github.com/flenniken/nimlist", From 4731c1284578af11a9cb09d195c0f8696882def6 Mon Sep 17 00:00:00 2001 From: ebran Date: Sun, 12 Jan 2020 18:03:51 +0100 Subject: [PATCH 1151/1381] Added package grim (#1318) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c5938e6..fbbd275 100644 --- a/packages.json +++ b/packages.json @@ -16064,5 +16064,18 @@ "description": "Browse nim packages in your browser.", "license": "MIT", "web": "https://github.com/flenniken/nimlist" + }, + { + "name": "grim", + "url": "https://github.com/ebran/grim", + "method": "git", + "tags": [ + "graph", + "data", + "library" + ], + "description": "Graphs in nim!", + "license": "MIT", + "web": "https://github.com/ebran/grim" } ] From ac580e746ccb2e8c53bcbe52a60c5423b5daa1cb Mon Sep 17 00:00:00 2001 From: Michedev Date: Mon, 13 Jan 2020 06:37:03 +0100 Subject: [PATCH 1152/1381] Add decisiontree package (#1320) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fbbd275..bde4018 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,18 @@ [ + { + "name": "decisiontree", + "url": "https://github.com/Michedev/DecisionTreeNim", + "method": "git", + "tags": [ + "Decision tree", + "Machine learning", + "Random forest", + "CART" + ], + "description": "Decision tree and Random forest CART implementation in Nim", + "license": "GPL-3.0", + "web": "https://github.com/Michedev/DecisionTreeNim" + }, { "name": "tsv2json", "url": "https://github.com/hectormonacci/tsv2json", From 4de5e86cec3e132fec2d978057f5edf956780111 Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Wed, 15 Jan 2020 19:06:14 +0700 Subject: [PATCH 1153/1381] Added package retranslator (#1321) --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index bde4018..58f9dea 100644 --- a/packages.json +++ b/packages.json @@ -1,5 +1,5 @@ [ - { + { "name": "decisiontree", "url": "https://github.com/Michedev/DecisionTreeNim", "method": "git", @@ -16091,5 +16091,18 @@ "description": "Graphs in nim!", "license": "MIT", "web": "https://github.com/ebran/grim" + }, + { + "name": "retranslator", + "url": "https://github.com/linksplatform/RegularExpressions.Transformer", + "method": "git", + "tags": [ + "regular", + "expressions", + "transformer" + ], + "description": "Transformer", + "license": "LGPLv3", + "web": "https://github.com/linksplatform/RegularExpressions.Transformer" } ] From d8017dc47fab5e904d9e635941752a33100b2d09 Mon Sep 17 00:00:00 2001 From: Duncan Clarke Date: Wed, 15 Jan 2020 12:26:20 -0500 Subject: [PATCH 1154/1381] barcode library (#1323) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 58f9dea..338181e 100644 --- a/packages.json +++ b/packages.json @@ -16104,5 +16104,17 @@ "description": "Transformer", "license": "LGPLv3", "web": "https://github.com/linksplatform/RegularExpressions.Transformer" + }, + { + "name": "barcode", + "url": "https://github.com/bunkford/barcode", + "method": "git", + "tags": [ + "barcode" + ], + "description": "Nim barcode library", + "license": "MIT", + "web": "https://github.com/bunkford/barcode", + "doc": "https://bunkford.github.io/barcode/barcode.html" } ] From f872aec8b2914aa58785c534c44a6536d391fcb8 Mon Sep 17 00:00:00 2001 From: treeform Date: Wed, 15 Jan 2020 22:41:34 -0800 Subject: [PATCH 1155/1381] Add quickjwt and staticglfw libraries (#1324) --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 338181e..35d1211 100644 --- a/packages.json +++ b/packages.json @@ -16116,5 +16116,31 @@ "license": "MIT", "web": "https://github.com/bunkford/barcode", "doc": "https://bunkford.github.io/barcode/barcode.html" + }, + { + "name": "quickjwt", + "url": "https://github.com/treeform/quickjwt.git", + "method": "git", + "tags": [ + "crypto", + "hash" + ], + "description": "JSON Web Tokens for Nim", + "license": "MIT", + "web": "https://github.com/treeform/quickjwt" + }, + { + "name": "staticglfw", + "url": "https://github.com/treeform/staticglfw.git", + "method": "git", + "tags": [ + "glfw", + "opengl", + "windowing", + "game" + ], + "description": "Static GLFW for nim", + "license": "MIT", + "web": "https://github.com/treeform/staticglfw" } ] From 370704f1ef35fab8eabd5079542e4a3902fec9e2 Mon Sep 17 00:00:00 2001 From: treeform Date: Thu, 16 Jan 2020 22:11:16 -0800 Subject: [PATCH 1156/1381] Add googleapi and fidget, remove .git from URLs of my pkgs. (#1327) --- packages.json | 40 ++++++++++++++++++++++++++++++++++------ 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index 35d1211..fff32f9 100644 --- a/packages.json +++ b/packages.json @@ -10691,7 +10691,7 @@ }, { "name": "print", - "url": "https://github.com/treeform/print.git", + "url": "https://github.com/treeform/print", "method": "git", "tags": [ "pretty" @@ -10702,7 +10702,7 @@ }, { "name": "vmath", - "url": "https://github.com/treeform/vmath.git", + "url": "https://github.com/treeform/vmath", "method": "git", "tags": [ "math", @@ -10716,7 +10716,7 @@ }, { "name": "flippy", - "url": "https://github.com/treeform/flippy.git", + "url": "https://github.com/treeform/flippy", "method": "git", "tags": [ "image", @@ -10729,7 +10729,7 @@ }, { "name": "typography", - "url": "https://github.com/treeform/typography.git", + "url": "https://github.com/treeform/typography", "method": "git", "tags": [ "font", @@ -16119,7 +16119,7 @@ }, { "name": "quickjwt", - "url": "https://github.com/treeform/quickjwt.git", + "url": "https://github.com/treeform/quickjwt", "method": "git", "tags": [ "crypto", @@ -16131,7 +16131,7 @@ }, { "name": "staticglfw", - "url": "https://github.com/treeform/staticglfw.git", + "url": "https://github.com/treeform/staticglfw", "method": "git", "tags": [ "glfw", @@ -16142,5 +16142,33 @@ "description": "Static GLFW for nim", "license": "MIT", "web": "https://github.com/treeform/staticglfw" + }, + { + "name": "googleapi", + "url": "https://github.com/treeform/googleapi", + "method": "git", + "tags": [ + "jwt", + "google" + ], + "description": "Google API for nim", + "license": "MIT", + "web": "https://github.com/treeform/googleapi" + }, + { + "name": "fidget", + "url": "https://github.com/treeform/fidget", + "method": "git", + "tags": [ + "ui", + "glfw", + "opengl", + "js", + "android", + "ios" + ], + "description": "Figma based UI library for nim, with HTML and OpenGL backends.", + "license": "MIT", + "web": "https://github.com/treeform/fidget" } ] From 0976c5e7c8093ecd707ee678ed3b140e1ab1d631 Mon Sep 17 00:00:00 2001 From: Hitesh Jasani Date: Fri, 17 Jan 2020 02:29:01 -0500 Subject: [PATCH 1157/1381] Add pg_util (#1326) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fff32f9..c75fbff 100644 --- a/packages.json +++ b/packages.json @@ -16143,6 +16143,19 @@ "license": "MIT", "web": "https://github.com/treeform/staticglfw" }, + { + "name": "pg_util", + "url": "https://github.com/hiteshjasani/nim-pg-util.git", + "method": "git", + "tags": [ + "postgresql", + "postgres", + "pg" + ], + "description": "Postgres utility functions", + "license": "MIT", + "web": "https://github.com/hiteshjasani/nim-pg-util" + }, { "name": "googleapi", "url": "https://github.com/treeform/googleapi", From 869c13cf8999b506353fb1dd5899422f3193f96e Mon Sep 17 00:00:00 2001 From: itsumura-h <39766805+itsumura-h@users.noreply.github.com> Date: Sat, 18 Jan 2020 19:11:20 +0900 Subject: [PATCH 1158/1381] Added package allographer (#1328) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index c75fbff..60593a3 100644 --- a/packages.json +++ b/packages.json @@ -16183,5 +16183,22 @@ "description": "Figma based UI library for nim, with HTML and OpenGL backends.", "license": "MIT", "web": "https://github.com/treeform/fidget" + }, + { + "name": "allographer", + "url": "https://github.com/itsumura-h/nim-allographer", + "method": "git", + "tags": [ + "database", + "sqlite", + "mysql", + "postgres", + "rdb", + "query_buulder", + "orm" + ], + "description": "A Nim query builder library inspired by Laravel/PHP and Orator/Python", + "license": "MIT", + "web": "https://github.com/itsumura-h/nim-allographer" } ] From a9c98b0e6cbf0c477d8e9d46387a02b54dd41eaf Mon Sep 17 00:00:00 2001 From: itsumura-h <39766805+itsumura-h@users.noreply.github.com> Date: Sat, 18 Jan 2020 21:53:45 +0900 Subject: [PATCH 1159/1381] fix tag (#1329) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 60593a3..7aa2524 100644 --- a/packages.json +++ b/packages.json @@ -16194,7 +16194,7 @@ "mysql", "postgres", "rdb", - "query_buulder", + "query_builder", "orm" ], "description": "A Nim query builder library inspired by Laravel/PHP and Orator/Python", From 0bc5b6d618a3df481a2e99644c8670118314c996 Mon Sep 17 00:00:00 2001 From: treeform Date: Sat, 18 Jan 2020 12:04:51 -0800 Subject: [PATCH 1160/1381] Add euphony, steamworks, sysinfo, and ptest libs. (#1330) --- packages.json | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/packages.json b/packages.json index 7aa2524..2ea65b7 100644 --- a/packages.json +++ b/packages.json @@ -16200,5 +16200,54 @@ "description": "A Nim query builder library inspired by Laravel/PHP and Orator/Python", "license": "MIT", "web": "https://github.com/itsumura-h/nim-allographer" + }, + { + "name": "euphony", + "url": "https://github.com/treeform/euphony", + "method": "git", + "tags": [ + "sound", + "OpenAL" + ], + "description": "A 3d sound API for nim.", + "license": "MIT", + "web": "https://github.com/treeform/euphony" + }, + { + "name": "steamworks", + "url": "https://github.com/treeform/steamworks", + "method": "git", + "tags": [ + "steamworks", + "game" + ], + "description": "Steamworks SDK API for shipping games on Steam.", + "license": "MIT", + "web": "https://github.com/treeform/steamworks" + }, + { + "name": "sysinfo", + "url": "https://github.com/treeform/sysinfo", + "method": "git", + "tags": [ + "system", + "cpu", + "gpu", + "net" + ], + "description": "Cross platform system information.", + "license": "MIT", + "web": "https://github.com/treeform/sysinfo" + }, + { + "name": "ptest", + "url": "https://github.com/treeform/ptest", + "method": "git", + "tags": [ + "test" + ], + "description": "Print-testing for nim.", + "license": "MIT", + "web": "https://github.com/treeform/ptest" } ] From 7ed3ab7dcc9aac975faa4cf81cef2154d63f7aa8 Mon Sep 17 00:00:00 2001 From: flenniken Date: Sat, 18 Jan 2020 22:42:50 -0800 Subject: [PATCH 1161/1381] Update nimlist package tags and description. (#1331) --- packages.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 2ea65b7..f188242 100644 --- a/packages.json +++ b/packages.json @@ -16073,9 +16073,11 @@ "url": "https://github.com/flenniken/nimlist", "method": "git", "tags": [ - "exe" + "cli", + "terminal", + "html" ], - "description": "Browse nim packages in your browser.", + "description": "View nim packages in your browser.", "license": "MIT", "web": "https://github.com/flenniken/nimlist" }, From eb450a3bafd80423c5d79e414adcc8a667900a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kayra=20G=C3=BCne=C5=9F?= <44123298+KayraG@users.noreply.github.com> Date: Sun, 19 Jan 2020 18:36:56 +0300 Subject: [PATCH 1162/1381] Update packages.json (#1332) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f188242..91d7237 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,19 @@ [ + { + "name":"nio", + "url":"https://github.com/KayraG/nio", + "method":"git", + "tags":[ + "server", + "framework", + "express", + "http", + "library" + ], + "description":"", + "license":"MIT", + "web":"https://github.com/KayraG/nio" + }, { "name": "decisiontree", "url": "https://github.com/Michedev/DecisionTreeNim", From a29c7b928ad9259832e275fc10d3459aa548445d Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 19 Jan 2020 22:49:52 +0000 Subject: [PATCH 1163/1381] Add description to nio package --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 91d7237..1c47eaa 100644 --- a/packages.json +++ b/packages.json @@ -10,7 +10,7 @@ "http", "library" ], - "description":"", + "description":"A Mini Server Framework for Nim language", "license":"MIT", "web":"https://github.com/KayraG/nio" }, From 00a7d8b54cb4767379b78417df6b67f43678c10e Mon Sep 17 00:00:00 2001 From: flenniken Date: Sun, 19 Jan 2020 22:07:55 -0800 Subject: [PATCH 1164/1381] Update tags and description for metar. (#1333) --- packages.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 1c47eaa..635a8bd 100644 --- a/packages.json +++ b/packages.json @@ -16020,12 +16020,14 @@ "url": "https://github.com/flenniken/metar", "method": "git", "tags": [ - "metadate", + "metadata", "image", "python", + "cli", + "terminal", "library" ], - "description": "Metadata Reader for Images", + "description": "Read metadata from jpeg and tiff images.", "license": "MIT", "web": "https://github.com/flenniken/metar" }, From 9ea9b4eaf6c435539eaff6dcae2e4ec5978205a6 Mon Sep 17 00:00:00 2001 From: Vindaar Date: Tue, 21 Jan 2020 15:31:22 +0100 Subject: [PATCH 1165/1381] update `polynumeric` to a working state (#1334) --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 635a8bd..ba8eff4 100644 --- a/packages.json +++ b/packages.json @@ -8587,7 +8587,7 @@ }, { "name": "polynumeric", - "url": "https://github.com/lcrees/polynumeric", + "url": "https://github.com/Vindaar/polynumeric", "method": "git", "tags": [ "polynomial", @@ -8595,7 +8595,7 @@ ], "description": "Polynomial operations", "license": "MIT", - "web": "https://github.com/lcrees/polynumeric" + "web": "https://github.com/Vindaar/polynumeric" }, { "name": "unicodedb", From 303a6a79e8095f2b32497cc2bcfba641d84346ff Mon Sep 17 00:00:00 2001 From: Mark Baggett Date: Tue, 21 Jan 2020 10:14:09 -0500 Subject: [PATCH 1166/1381] Add oaitools. (#1335) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ba8eff4..c3c04b2 100644 --- a/packages.json +++ b/packages.json @@ -16268,5 +16268,19 @@ "description": "Print-testing for nim.", "license": "MIT", "web": "https://github.com/treeform/ptest" + }, + { + "name": "oaitools", + "url": "https://github.com/markpbaggett/oaitools.nim", + "method": "git", + "tags": [ + "metadata", + "harvester", + "oai-pmh" + ], + "description": "A high-level OAI-PMH library.", + "license": "GPL-3.0", + "doc": "https://markpbaggett.github.io/oaitools.nim/", + "web": "https://github.com/markpbaggett/oaitools.nim" } ] From 2943efddb6142a61dbdfa08d0e7d22dc9cb89f29 Mon Sep 17 00:00:00 2001 From: Ryan Burmeister-Morrison <12453590+rburmorrison@users.noreply.github.com> Date: Wed, 22 Jan 2020 05:35:02 -0500 Subject: [PATCH 1167/1381] Added package pych (#1337) --- packages.json | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/packages.json b/packages.json index c3c04b2..ecd7e86 100644 --- a/packages.json +++ b/packages.json @@ -1,18 +1,18 @@ [ { - "name":"nio", - "url":"https://github.com/KayraG/nio", - "method":"git", - "tags":[ + "name": "nio", + "url": "https://github.com/KayraG/nio", + "method": "git", + "tags": [ "server", "framework", "express", "http", "library" ], - "description":"A Mini Server Framework for Nim language", - "license":"MIT", - "web":"https://github.com/KayraG/nio" + "description": "A Mini Server Framework for Nim language", + "license": "MIT", + "web": "https://github.com/KayraG/nio" }, { "name": "decisiontree", @@ -16282,5 +16282,17 @@ "license": "GPL-3.0", "doc": "https://markpbaggett.github.io/oaitools.nim/", "web": "https://github.com/markpbaggett/oaitools.nim" + }, + { + "name": "pych", + "url": "https://github.com/rburmorrison/pych", + "method": "git", + "tags": [ + "python", + "monitor" + ], + "description": "A tool that watches Python files and re-runs them on change.", + "license": "MIT", + "web": "https://github.com/rburmorrison/pych" } ] From cb5f481e6ed8bea58d255fe21aef030e64403176 Mon Sep 17 00:00:00 2001 From: Matt Haggard Date: Thu, 23 Jan 2020 00:57:15 -0500 Subject: [PATCH 1168/1381] Add keyring package (#1340) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ecd7e86..41d9c0a 100644 --- a/packages.json +++ b/packages.json @@ -11545,6 +11545,18 @@ "license": "MIT", "doc": "https://www.iffycan.com/nim-argparse/argparse.html" }, + { + "name": "keyring", + "url": "https://github.com/iffy/nim-keyring", + "method": "git", + "tags": [ + "keyring", + "security" + ], + "description": "Cross-platform access to OS keychain", + "license": "MIT", + "web": "https://github.com/iffy/nim-keyring" + }, { "name": "markdown", "url": "https://github.com/soasme/nim-markdown", From 8d272ce88824696971526d662f0f521b4030b114 Mon Sep 17 00:00:00 2001 From: Danil Yarantsev <21169548+Yardanico@users.noreply.github.com> Date: Thu, 23 Jan 2020 14:22:58 +0300 Subject: [PATCH 1169/1381] Added package adb (#1341) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 41d9c0a..3521beb 100644 --- a/packages.json +++ b/packages.json @@ -16306,5 +16306,18 @@ "description": "A tool that watches Python files and re-runs them on change.", "license": "MIT", "web": "https://github.com/rburmorrison/pych" + }, + { + "name": "adb", + "url": "https://github.com/Yardanico/nim-adb", + "method": "git", + "tags": [ + "adb", + "protocol", + "android" + ], + "description": "ADB protocol implementation in Nim", + "license": "MIT", + "web": "https://github.com/Yardanico/nim-adb" } ] From cc3b2bf6f0fac15faf83a3d2f724f2ddac615ac1 Mon Sep 17 00:00:00 2001 From: Double_oxygeN Date: Sun, 26 Jan 2020 00:34:45 +0900 Subject: [PATCH 1170/1381] Added package z3nim (#1342) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 3521beb..5c7f1ec 100644 --- a/packages.json +++ b/packages.json @@ -16319,5 +16319,19 @@ "description": "ADB protocol implementation in Nim", "license": "MIT", "web": "https://github.com/Yardanico/nim-adb" + }, + { + "name": "z3nim", + "url": "https://github.com/Double-oxygeN/z3nim", + "method": "git", + "tags": [ + "z3", + "smt", + "wrapper", + "library" + ], + "description": "Z3 binding for Nim", + "license": "MIT", + "web": "https://github.com/Double-oxygeN/z3nim" } ] From f9a27b2e663647552bf6183deb5cbb84fa43af89 Mon Sep 17 00:00:00 2001 From: jiro Date: Sun, 26 Jan 2020 15:27:16 +0900 Subject: [PATCH 1171/1381] Added package wave (#1343) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 5c7f1ec..f10561f 100644 --- a/packages.json +++ b/packages.json @@ -16333,5 +16333,20 @@ "description": "Z3 binding for Nim", "license": "MIT", "web": "https://github.com/Double-oxygeN/z3nim" + }, + { + "name": "wave", + "url": "https://github.com/jiro4989/wave", + "method": "git", + "tags": [ + "library", + "sound", + "media", + "parser", + "wave" + ], + "description": "wave is a tiny WAV sound module", + "license": "MIT", + "web": "https://github.com/jiro4989/wave" } ] From bc91b854a96bd56c5f600e4d0642623782de1c0a Mon Sep 17 00:00:00 2001 From: D-Nice Date: Mon, 27 Jan 2020 01:35:37 -0500 Subject: [PATCH 1172/1381] Add package nbaser (#1344) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index f10561f..bccd3f4 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,21 @@ [ + { + "name": "nbaser", + "url": "https://github.com/D-Nice/nbaser", + "method": "git", + "tags": [ + "encode", + "decode", + "base", + "unicode", + "base58", + "base-x" + ], + "description": "Encode/decode arbitrary unicode bases from size 2 to 256", + "license": "Apache-2.0", + "web": "https://github.com/D-Nice/nbaser", + "doc": "https://d-nice.github.io/nbaser/" + }, { "name": "nio", "url": "https://github.com/KayraG/nio", From 344fbfb7f0c7e529d6885626a7defdcfe5552f0f Mon Sep 17 00:00:00 2001 From: Kristian Mandrup Date: Tue, 28 Jan 2020 12:21:58 +0000 Subject: [PATCH 1173/1381] added react-16 (#1345) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index bccd3f4..7128563 100644 --- a/packages.json +++ b/packages.json @@ -5799,12 +5799,30 @@ "react", "frontend", "ui", + "vdom", "single page application" ], "description": "React.js bindings for Nim", "license": "Apache License 2.0", "web": "https://github.com/andreaferretti/react.nim" }, + { + "name": "react16", + "url": "https://github.com/kristianmandrup/react-16.nim", + "method": "git", + "tags": [ + "js", + "react", + "frontend", + "ui", + "vdom", + "hooks", + "single page application" + ], + "description": "React.js 16.x bindings for Nim", + "license": "Apache License 2.0", + "web": "https://github.com/kristianmandrup/react-16.nim" + }, { "name": "oauth", "url": "https://github.com/CORDEA/oauth", From 81f66a05a65ff0c476f504383628eca84c233247 Mon Sep 17 00:00:00 2001 From: c-blake Date: Thu, 30 Jan 2020 00:42:48 -0500 Subject: [PATCH 1174/1381] Add kslog (#1347) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 7128563..fcb8d8f 100644 --- a/packages.json +++ b/packages.json @@ -16383,5 +16383,20 @@ "description": "wave is a tiny WAV sound module", "license": "MIT", "web": "https://github.com/jiro4989/wave" + }, + { + "name": "kslog", + "url": "https://github.com/c-blake/kslog.git", + "method": "git", + "tags": [ + "command-line", + "logging", + "syslog", + "syslogd", + "klogd" + ], + "description": "Minimalistic Kernel-Syslogd For Linux in Nim", + "license": "MIT", + "web": "https://github.com/c-blake/kslog" } ] From d89a6758f35ee7d01b509e3b8e2d94cbf51a7465 Mon Sep 17 00:00:00 2001 From: Esteban Castro Borsani Date: Sat, 1 Feb 2020 04:12:41 -0300 Subject: [PATCH 1175/1381] Added package nregex (#1348) --- packages.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fcb8d8f..378002c 100644 --- a/packages.json +++ b/packages.json @@ -5822,7 +5822,7 @@ "description": "React.js 16.x bindings for Nim", "license": "Apache License 2.0", "web": "https://github.com/kristianmandrup/react-16.nim" - }, + }, { "name": "oauth", "url": "https://github.com/CORDEA/oauth", @@ -16398,5 +16398,16 @@ "description": "Minimalistic Kernel-Syslogd For Linux in Nim", "license": "MIT", "web": "https://github.com/c-blake/kslog" + }, + { + "name": "nregex", + "url": "https://github.com/nitely/nregex", + "method": "git", + "tags": [ + "regex" + ], + "description": "A DFA based regex engine", + "license": "MIT", + "web": "https://github.com/nitely/nregex" } ] From 3c45f15c29440db7170209477f3366dcfcf621e7 Mon Sep 17 00:00:00 2001 From: lqdev Date: Sun, 2 Feb 2020 16:32:17 +0100 Subject: [PATCH 1176/1381] Added package delight (#1349) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 378002c..6306b1e 100644 --- a/packages.json +++ b/packages.json @@ -16409,5 +16409,19 @@ "description": "A DFA based regex engine", "license": "MIT", "web": "https://github.com/nitely/nregex" + }, + { + "name": "delight", + "url": "https://github.com/liquid600pgm/delight", + "method": "git", + "tags": [ + "raycasting", + "math", + "light", + "library" + ], + "description": "Engine-agnostic library for computing 2D raycasted lights", + "license": "MIT", + "web": "https://github.com/liquid600pgm/delight" } ] From c38db024887e24b1e252fc4e05cfe780f932d6ec Mon Sep 17 00:00:00 2001 From: c6h4clch3 Date: Wed, 5 Feb 2020 14:55:20 +0900 Subject: [PATCH 1177/1381] Added package nimsuite (#1351) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 6306b1e..ab61ec4 100644 --- a/packages.json +++ b/packages.json @@ -16423,5 +16423,16 @@ "description": "Engine-agnostic library for computing 2D raycasted lights", "license": "MIT", "web": "https://github.com/liquid600pgm/delight" + }, + { + "name": "nimsuite", + "url": "https://github.com/c6h4clch3/NimSuite", + "method": "git", + "tags": [ + "unittest" + ], + "description": "a simple test framework for nim.", + "license": "MIT", + "web": "https://github.com/c6h4clch3/NimSuite" } ] From c71981fb2dd010c7424d766a6626a79799689131 Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 8 Feb 2020 15:23:21 +0800 Subject: [PATCH 1178/1381] Added package prologue (#1352) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index ab61ec4..fd83262 100644 --- a/packages.json +++ b/packages.json @@ -16434,5 +16434,19 @@ "description": "a simple test framework for nim.", "license": "MIT", "web": "https://github.com/c6h4clch3/NimSuite" + }, + { + "name": "prologue", + "url": "https://github.com/planety/Prologue", + "method": "git", + "tags": [ + "web", + "prologue", + "starlight", + "jester" + ], + "description": "Another micro web framework.", + "license": "MIT", + "web": "https://github.com/planety/Prologue" } ] From 1b2a33fd739f9bcd204ad3cd01e0489ce0aa2ab8 Mon Sep 17 00:00:00 2001 From: Joey Date: Sun, 9 Feb 2020 13:44:20 -0700 Subject: [PATCH 1179/1381] Added package mort (#1353) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index fd83262..71c2d8d 100644 --- a/packages.json +++ b/packages.json @@ -16448,5 +16448,20 @@ "description": "Another micro web framework.", "license": "MIT", "web": "https://github.com/planety/Prologue" + }, + { + "name": "mort", + "url": "https://github.com/jyapayne/mort", + "method": "git", + "tags": [ + "macro", + "library", + "deadcode", + "dead", + "code" + ], + "description": "A dead code locator for Nim", + "license": "MIT", + "web": "https://github.com/jyapayne/mort" } ] From c3c21c61fb5e6a2f4950bac32a613bb5840e3b3a Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 15 Feb 2020 01:22:18 +0800 Subject: [PATCH 1180/1381] Added package gungnir (#1355) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 71c2d8d..fda46c9 100644 --- a/packages.json +++ b/packages.json @@ -16463,5 +16463,20 @@ "description": "A dead code locator for Nim", "license": "MIT", "web": "https://github.com/jyapayne/mort" + }, + { + "name": "gungnir", + "url": "https://github.com/planety/gungnir", + "method": "git", + "tags": [ + "web", + "starlight", + "prologue", + "signing", + "Cryptographic" + ], + "description": "Cryptographic signing for Nim.", + "license": "BSD-3-Clause", + "web": "https://github.com/planety/gungnir" } ] From 81e43da4fac5f9c65d67d23016d7defd3c27c743 Mon Sep 17 00:00:00 2001 From: mashingan Date: Sun, 16 Feb 2020 01:05:00 +0700 Subject: [PATCH 1181/1381] add anonimongo entry (#1356) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index fda46c9..4a869ed 100644 --- a/packages.json +++ b/packages.json @@ -16478,5 +16478,21 @@ "description": "Cryptographic signing for Nim.", "license": "BSD-3-Clause", "web": "https://github.com/planety/gungnir" + }, + { + "name": "anonimongo", + "url": "https://github.com/mashingan/anonimongo", + "method": "git", + "tags": [ + "mongo", + "mongodb", + "driver", + "pure", + "library", + "bson" + ], + "description": "ANOther pure NIm MONGO driver.", + "license": "MIT", + "web": "https://mashingan.github.io/anonimongo/src/htmldocs/anonimongo.html" } ] From 4da651607761005c2200b8b618a6598100454175 Mon Sep 17 00:00:00 2001 From: Esteban Castro Borsani Date: Sat, 15 Feb 2020 16:35:00 -0300 Subject: [PATCH 1182/1381] Added package segmentation (#1357) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4a869ed..93c3865 100644 --- a/packages.json +++ b/packages.json @@ -16479,6 +16479,18 @@ "license": "BSD-3-Clause", "web": "https://github.com/planety/gungnir" }, + { + "name": "segmentation", + "url": "https://github.com/nitely/nim-segmentation", + "method": "git", + "tags": [ + "unicode", + "text-segmentation" + ], + "description": "Unicode text segmentation tr29", + "license": "MIT", + "web": "https://github.com/nitely/nim-segmentation" + }, { "name": "anonimongo", "url": "https://github.com/mashingan/anonimongo", From 89d9b742360d4e754764e12dc4075efad3725d05 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Mon, 17 Feb 2020 20:20:33 +0100 Subject: [PATCH 1183/1381] Added package sqlite3_abi (#1360) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 93c3865..3ab8c07 100644 --- a/packages.json +++ b/packages.json @@ -16506,5 +16506,18 @@ "description": "ANOther pure NIm MONGO driver.", "license": "MIT", "web": "https://mashingan.github.io/anonimongo/src/htmldocs/anonimongo.html" + }, + { + "name": "sqlite3_abi", + "url": "https://github.com/arnetheduck/nim-sqlite3-abi", + "method": "git", + "tags": [ + "sqlite", + "sqlite3", + "database" + ], + "description": "A wrapper for SQLite", + "license": "Apache License 2.0 or MIT", + "web": "https://github.com/arnetheduck/nim-sqlite3-abi" } ] From 0ed2069649e063e212fe64995d14b6bd07508be8 Mon Sep 17 00:00:00 2001 From: Zach Oakes Date: Tue, 18 Feb 2020 01:12:54 -0500 Subject: [PATCH 1184/1381] Update packages.json (#1361) --- packages.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/packages.json b/packages.json index 3ab8c07..5363ff9 100644 --- a/packages.json +++ b/packages.json @@ -16507,6 +16507,28 @@ "license": "MIT", "web": "https://mashingan.github.io/anonimongo/src/htmldocs/anonimongo.html" }, + { + "name": "paranim", + "url": "https://github.com/paranim/paranim", + "method": "git", + "tags": [ + "games", + "opengl" + ], + "description": "A game library", + "license": "Public Domain" + }, + { + "name": "pararules", + "url": "https://github.com/paranim/pararules", + "method": "git", + "tags": [ + "rules", + "rete" + ], + "description": "A rules engine", + "license": "Public Domain" + }, { "name": "sqlite3_abi", "url": "https://github.com/arnetheduck/nim-sqlite3-abi", From c3faefed641b1eca4b8c7d5cfb754f8dd9d76fd6 Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Tue, 18 Feb 2020 13:13:53 +0700 Subject: [PATCH 1185/1381] Added package anime (#1362) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 5363ff9..0703e0c 100644 --- a/packages.json +++ b/packages.json @@ -16541,5 +16541,17 @@ "description": "A wrapper for SQLite", "license": "Apache License 2.0 or MIT", "web": "https://github.com/arnetheduck/nim-sqlite3-abi" + }, + { + "name": "anime", + "url": "https://github.com/ethosa/anime", + "method": "git", + "tags": [ + "tracemoe", + "framework" + ], + "description": "The Nim wrapper for tracemoe.", + "license": "AGPLv3", + "web": "https://github.com/ethosa/anime" } ] From efcffd971bcdb569ad1f002609ef40fa26982a1b Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Tue, 18 Feb 2020 20:02:00 +0700 Subject: [PATCH 1186/1381] added package shizuka (#1363) package `saya` was abandoned. --- packages.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 0703e0c..3afae84 100644 --- a/packages.json +++ b/packages.json @@ -16093,11 +16093,11 @@ }, { "name": "saya", + "alias": "shizuka", "url": "https://github.com/Ethosa/saya_nim", "method": "git", "tags": [ - "VK", - "framework" + "abandoned" ], "description": "Nim framework for VK", "license": "LGPLv3", @@ -16553,5 +16553,18 @@ "description": "The Nim wrapper for tracemoe.", "license": "AGPLv3", "web": "https://github.com/ethosa/anime" + }, + { + "name": "shizuka", + "url": "https://github.com/ethosa/shizuka", + "method": "git", + "tags": [ + "vk", + "api", + "framework" + ], + "description": "The Nim framework for VK API.", + "license": "AGPLv3", + "web": "https://github.com/ethosa/shizuka" } ] From 983466022f302ea142256d59d99160b098e85cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Wed, 19 Feb 2020 17:40:46 +0100 Subject: [PATCH 1187/1381] Add qr package (#1364) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 3afae84..4779eb4 100644 --- a/packages.json +++ b/packages.json @@ -16566,5 +16566,18 @@ "description": "The Nim framework for VK API.", "license": "AGPLv3", "web": "https://github.com/ethosa/shizuka" + }, + { + "name": "qr", + "url": "https://github.com/ThomasTJdev/nim_qr", + "method": "git", + "tags": [ + "qr", + "qrcode", + "svg" + ], + "description": "Create SVG-files with QR-codes from strings.", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_qr" } ] From 5b368dd47bc42da284829e182eeb48fdd0d33dbb Mon Sep 17 00:00:00 2001 From: Amru Rosyada Date: Thu, 20 Feb 2020 04:18:24 +0700 Subject: [PATCH 1188/1381] Add nimble package uri3 (#1365) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4779eb4..e5a8535 100644 --- a/packages.json +++ b/packages.json @@ -16579,5 +16579,18 @@ "description": "Create SVG-files with QR-codes from strings.", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_qr" + }, + { + "name": "uri3", + "url": "https://github.com/zendbit/nim.uri3", + "method": "git", + "tags": [ + "uri", + "url", + "library" + ], + "description": "nim.uri3 is a Nim module that provides improved way for working with URIs. It is based on the uri module in the Nim standard library and fork from nim-uri2", + "license": "MIT", + "web": "https://github.com/zendbit/nim.uri3" } ] From 1c0d5dec8e0c4c0739a1a230d4ae67d266503e59 Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Thu, 20 Feb 2020 22:03:32 +0700 Subject: [PATCH 1189/1381] Added package triplets (#1366) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index e5a8535..5300a02 100644 --- a/packages.json +++ b/packages.json @@ -16592,5 +16592,19 @@ "description": "nim.uri3 is a Nim module that provides improved way for working with URIs. It is based on the uri module in the Nim standard library and fork from nim-uri2", "license": "MIT", "web": "https://github.com/zendbit/nim.uri3" + }, + { + "name": "triplets", + "url": "https://github.com/linksplatform/Data.Triplets", + "method": "git", + "tags": [ + "triplets", + "database", + "C", + "bindings" + ], + "description": "The Nim bindings for linksplatform/Data.Triplets.Kernel.", + "license": "AGPLv3", + "web": "https://github.com/linksplatform/Data.Triplets" } ] From cefa4e80f5f833e0197eaa01da8dac4dd7a5c285 Mon Sep 17 00:00:00 2001 From: D-Nice Date: Fri, 21 Feb 2020 01:02:52 -0500 Subject: [PATCH 1190/1381] Add package argon2_bind (#1367) --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index 5300a02..1c447ae 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,23 @@ [ + { + "name": "argon2_bind", + "url": "https://github.com/D-Nice/argon2_bind", + "method": "git", + "tags": [ + "argon2", + "kdf", + "hash", + "crypto", + "phc", + "c", + "ffi", + "cryptography" + ], + "description": "Bindings to the high-level Argon2 C API", + "license": "Apache-2.0", + "web": "https://github.com/D-Nice/argon2_bind", + "doc": "https://d-nice.github.io/argon2_bind/" + }, { "name": "nbaser", "url": "https://github.com/D-Nice/nbaser", From 21982af3fec7063c8a6873230a915e08660f259d Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Fri, 21 Feb 2020 22:29:26 +0800 Subject: [PATCH 1191/1381] Added package kview (#1368) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1c447ae..cc49352 100644 --- a/packages.json +++ b/packages.json @@ -16625,5 +16625,19 @@ "description": "The Nim bindings for linksplatform/Data.Triplets.Kernel.", "license": "AGPLv3", "web": "https://github.com/linksplatform/Data.Triplets" + }, + { + "name": "kview", + "url": "https://github.com/planety/kview", + "method": "git", + "tags": [ + "prologue", + "starlight", + "karax", + "web" + ], + "description": "For karax html preview.", + "license": "BSD-3-Clause", + "web": "https://github.com/planety/kview" } ] From e1897e82fb37a2bc76600ef3b00eef4d95c732e4 Mon Sep 17 00:00:00 2001 From: John Novak Date: Sat, 22 Feb 2020 00:43:14 +1000 Subject: [PATCH 1192/1381] Added package osdialog (#1369) --- packages.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/packages.json b/packages.json index cc49352..ae65330 100644 --- a/packages.json +++ b/packages.json @@ -16626,6 +16626,30 @@ "license": "AGPLv3", "web": "https://github.com/linksplatform/Data.Triplets" }, + { + "name": "osdialog", + "url": "https://github.com/johnnovak/nim-osdialog", + "method": "git", + "tags": [ + "ui,", + "gui,", + "dialog,", + "wrapper,", + "cross-platform,", + "windows,", + "mac,", + "osx,", + "linux,", + "gtk,", + "gtk2,", + "gtk3,", + "zenity,", + "file" + ], + "description": "Nim wrapper for the osdialog library", + "license": "WTFPL", + "web": "https://github.com/johnnovak/nim-osdialog" + }, { "name": "kview", "url": "https://github.com/planety/kview", From 8c4e3fce3f03b46cc8ed72c45a837e830480956e Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Fri, 21 Feb 2020 22:04:37 +0700 Subject: [PATCH 1193/1381] Added package badgemaker (#1370) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index ae65330..7b32060 100644 --- a/packages.json +++ b/packages.json @@ -16626,6 +16626,19 @@ "license": "AGPLv3", "web": "https://github.com/linksplatform/Data.Triplets" }, + { + "name": "badgemaker", + "url": "https://github.com/ethosa/badgemaker", + "method": "git", + "tags": [ + "badge", + "badge-generator", + "tool" + ], + "description": "The Nim badgemaker tool.", + "license": "AGPLv3", + "web": "https://github.com/ethosa/badgemaker" + }, { "name": "osdialog", "url": "https://github.com/johnnovak/nim-osdialog", From 7f71a3e5fba81b78e6ea50dba82ff37637ea62e2 Mon Sep 17 00:00:00 2001 From: Beshr Kayali Date: Sat, 22 Feb 2020 07:49:10 +0100 Subject: [PATCH 1194/1381] Added package loki (#1371) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 7b32060..fccbcfe 100644 --- a/packages.json +++ b/packages.json @@ -16676,5 +16676,19 @@ "description": "For karax html preview.", "license": "BSD-3-Clause", "web": "https://github.com/planety/kview" + }, + { + "name": "loki", + "url": "https://github.com/beshrkayali/loki", + "method": "git", + "tags": [ + "cmd", + "shell", + "cli", + "interpreter" + ], + "description": "A small library for writing cli programs in Nim.", + "license": "Zlib", + "web": "https://github.com/beshrkayali/loki" } ] From d44babdb48225e16e7bedfd96dca3013d0fbf66f Mon Sep 17 00:00:00 2001 From: loloicci Date: Sun, 23 Feb 2020 00:24:23 +0900 Subject: [PATCH 1195/1381] modify nimly's information (#1372) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index fccbcfe..fc2a6b4 100644 --- a/packages.json +++ b/packages.json @@ -13265,7 +13265,7 @@ }, { "name": "nimly", - "url": "https://github.com/loloiccl/nimly", + "url": "https://github.com/loloicci/nimly", "method": "git", "tags": [ "lexer", From f339843a6f383db1c92f14a5d33b4bf43f4a7ef1 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Mon, 24 Feb 2020 15:03:15 +0200 Subject: [PATCH 1196/1381] Add testutils; More consisten use of tags in all unit-testing packages --- packages.json | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/packages.json b/packages.json index fc2a6b4..bde100c 100644 --- a/packages.json +++ b/packages.json @@ -3205,7 +3205,7 @@ "method": "git", "tags": [ "fuzzing", - "testing", + "unit-testing", "hacking", "security" ], @@ -5201,7 +5201,7 @@ "url": "https://github.com/shaunc/cucumber_nim", "method": "git", "tags": [ - "testing", + "unit-testing", "cucumber", "bdd" ], @@ -6538,6 +6538,23 @@ "license": "Apache License 2.0", "web": "https://github.com/status-im/nim-ttmath" }, + { + "name": "testutils", + "url": "https://github.com/status-im/nim-testutils", + "method": "git", + "tags": [ + "library", + "tests", + "unit-testing", + "integration-testing", + "compilation-tests", + "fuzzing", + "doctest" + ], + "description": "A comprehensive toolkit for all your testing needs", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-testutils" + }, { "name": "nimbus", "url": "https://github.com/status-im/nimbus", @@ -8122,8 +8139,7 @@ "safety", "test", "tests", - "testing", - "unittest" + "unit-testing" ], "description": "Design by Contract (DbC) library with minimal runtime.", "license": "MIT", @@ -9968,8 +9984,7 @@ "tags": [ "test", "tests", - "testing", - "unit" + "unit-testing" ], "description": "A helper module for writing unit tests in Nim with nake or similar build system.", "license": "ISC", @@ -15994,7 +16009,7 @@ "tags": [ "japanese", "library", - "testing" + "unit-testing" ], "description": "random Japanese name and address generator", "license": "MIT", @@ -16329,7 +16344,9 @@ "url": "https://github.com/treeform/ptest", "method": "git", "tags": [ - "test" + "tests", + "unit-testing", + "integration-testing" ], "description": "Print-testing for nim.", "license": "MIT", From 9cc583d11c0df49d1698ccf34661a9e384bf9d3d Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Tue, 25 Feb 2020 22:37:55 +0700 Subject: [PATCH 1197/1381] Added package yukiko (#1375) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index bde100c..6e69816 100644 --- a/packages.json +++ b/packages.json @@ -16707,5 +16707,19 @@ "description": "A small library for writing cli programs in Nim.", "license": "Zlib", "web": "https://github.com/beshrkayali/loki" + }, + { + "name": "yukiko", + "url": "https://github.com/ethosa/yukiko", + "method": "git", + "tags": [ + "gui", + "async", + "framework", + "sdl2" + ], + "description": "The Nim GUI asynchronous framework based on SDL2.", + "license": "AGPLv3", + "web": "https://github.com/ethosa/yukiko" } ] From 15bd04adcbbc797c3168bffba0ee0a0494375809 Mon Sep 17 00:00:00 2001 From: Zach Oakes Date: Tue, 25 Feb 2020 15:20:30 -0500 Subject: [PATCH 1198/1381] Add paratext (#1373) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 6e69816..6ae451a 100644 --- a/packages.json +++ b/packages.json @@ -16565,6 +16565,17 @@ "description": "A rules engine", "license": "Public Domain" }, + { + "name": "paratext", + "url": "https://github.com/paranim/paratext", + "method": "git", + "tags": [ + "text", + "opengl" + ], + "description": "A library for rendering text with paranim", + "license": "Public Domain" + }, { "name": "sqlite3_abi", "url": "https://github.com/arnetheduck/nim-sqlite3-abi", From ac399ebc483f76581e299ccc8b16b6764f923122 Mon Sep 17 00:00:00 2001 From: Federico Ceratto Date: Wed, 26 Feb 2020 18:52:52 +0000 Subject: [PATCH 1199/1381] Add Socks5 library (#1307) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 6ae451a..99cc6a4 100644 --- a/packages.json +++ b/packages.json @@ -16096,6 +16096,20 @@ "license": "MIT", "web": "https://github.com/juancarlospaco/nim-bcra" }, + { + "name": "socks", + "url": "https://github.com/FedericoCeratto/nim-socks5", + "method": "git", + "tags": [ + "socks", + "library", + "networking", + "socks5" + ], + "description": "Socks5 client and server library", + "license": "MPLv2", + "web": "https://github.com/FedericoCeratto/nim-socks5" + }, { "name": "metar", "url": "https://github.com/flenniken/metar", From 1ad79aadb5247e2c7d566ab4d2959b5fb5e92dd7 Mon Sep 17 00:00:00 2001 From: Manav Date: Thu, 27 Feb 2020 02:35:23 +0530 Subject: [PATCH 1200/1381] Added package luhny (#1376) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 99cc6a4..13b3a8f 100644 --- a/packages.json +++ b/packages.json @@ -16746,5 +16746,17 @@ "description": "The Nim GUI asynchronous framework based on SDL2.", "license": "AGPLv3", "web": "https://github.com/ethosa/yukiko" + }, + { + "name": "luhny", + "url": "https://github.com/sigmapie8/luhny", + "method": "git", + "tags": [ + "library", + "algorithm" + ], + "description": "Luhn's Algorithm implementation in Nim", + "license": "MIT", + "web": "https://github.com/sigmapie8/luhny" } ] From 16e39de3a345efc1d172d3fc0dd230eadb8d2f65 Mon Sep 17 00:00:00 2001 From: Zach Oakes Date: Thu, 27 Feb 2020 02:08:15 -0500 Subject: [PATCH 1201/1381] Add pvim (#1377) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 13b3a8f..51f2a2c 100644 --- a/packages.json +++ b/packages.json @@ -16590,6 +16590,17 @@ "description": "A library for rendering text with paranim", "license": "Public Domain" }, + { + "name": "pvim", + "url": "https://github.com/paranim/pvim", + "method": "git", + "tags": [ + "editor", + "vim" + ], + "description": "A vim-based editor", + "license": "Public Domain" + }, { "name": "sqlite3_abi", "url": "https://github.com/arnetheduck/nim-sqlite3-abi", From 3aa4626a62705d2f6f4a57e199bbf8061ffd626d Mon Sep 17 00:00:00 2001 From: Volodymyr Melnychuk Date: Sat, 29 Feb 2020 08:28:19 +0200 Subject: [PATCH 1202/1381] add nimwebp package (#1378) Co-authored-by: bromund <60217815+bromund@users.noreply.github.com> --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 51f2a2c..6ed63d8 100644 --- a/packages.json +++ b/packages.json @@ -16769,5 +16769,18 @@ "description": "Luhn's Algorithm implementation in Nim", "license": "MIT", "web": "https://github.com/sigmapie8/luhny" + }, + { + "name": "nimwebp", + "url": "https://github.com/tormund/nimwebp", + "method": "git", + "tags": [ + "webp", + "encoder", + "decoder" + ], + "description": "Webp encoder and decoder bindings for Nim", + "license": "MIT", + "web": "https://github.com/tormund/nimwebp" } ] From 4ef388e5d0253810acb13b8d3d3a7ae84d08dfd9 Mon Sep 17 00:00:00 2001 From: jiro Date: Mon, 2 Mar 2020 00:47:50 +0900 Subject: [PATCH 1203/1381] Added package svgo (#1379) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 6ed63d8..ef57811 100644 --- a/packages.json +++ b/packages.json @@ -16782,5 +16782,20 @@ "description": "Webp encoder and decoder bindings for Nim", "license": "MIT", "web": "https://github.com/tormund/nimwebp" + }, + { + "name": "svgo", + "url": "https://github.com/jiro4989/svgo", + "method": "git", + "tags": [ + "svg", + "cli", + "awk", + "jo", + "shell" + ], + "description": "SVG output from a shell.", + "license": "MIT", + "web": "https://github.com/jiro4989/svgo" } ] From 47badbff8360a1c642889e29b931f9df494981f3 Mon Sep 17 00:00:00 2001 From: Duncan Clarke Date: Mon, 2 Mar 2020 15:40:42 -0500 Subject: [PATCH 1204/1381] add winserial (#1380) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ef57811..5ac57b1 100644 --- a/packages.json +++ b/packages.json @@ -16797,5 +16797,17 @@ "description": "SVG output from a shell.", "license": "MIT", "web": "https://github.com/jiro4989/svgo" + },{ + "name": "winserial", + "url": "https://github.com/bunkford/winserial", + "method": "git", + "tags": [ + "windows", + "serial" + ], + "description": "Serial library for Windows.", + "license": "MIT", + "web": "https://github.com/bunkford/winserial", + "doc": "https://bunkford.github.io/winserial/winserial.html" } ] From 15c1f599f7a1a0a1e2be120633d5890cdf026450 Mon Sep 17 00:00:00 2001 From: Paul Nameless Date: Tue, 3 Mar 2020 07:44:31 +0800 Subject: [PATCH 1205/1381] Added package nimbler --- packages.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 5ac57b1..ac554ee 100644 --- a/packages.json +++ b/packages.json @@ -16797,7 +16797,8 @@ "description": "SVG output from a shell.", "license": "MIT", "web": "https://github.com/jiro4989/svgo" - },{ + }, + { "name": "winserial", "url": "https://github.com/bunkford/winserial", "method": "git", @@ -16809,5 +16810,20 @@ "license": "MIT", "web": "https://github.com/bunkford/winserial", "doc": "https://bunkford.github.io/winserial/winserial.html" + }, + { + "name": "nimbler", + "url": "https://github.com/paul-nameless/nimbler", + "method": "git", + "tags": [ + "web", + "http", + "rest", + "api", + "library" + ], + "description": "A new awesome nimble package", + "license": "MIT", + "web": "https://github.com/paul-nameless/nimbler" } ] From c2d6c95ee787ce166bc83cbc55412161995ab64f Mon Sep 17 00:00:00 2001 From: Nameless Date: Tue, 3 Mar 2020 07:57:12 +0800 Subject: [PATCH 1206/1381] Update packages.json Co-Authored-By: Clyybber --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index ac554ee..1164f1f 100644 --- a/packages.json +++ b/packages.json @@ -16822,7 +16822,7 @@ "api", "library" ], - "description": "A new awesome nimble package", + "description": "A library to help you write rest APIs", "license": "MIT", "web": "https://github.com/paul-nameless/nimbler" } From c49800933fe65cc8e1d0254b4e8da56e263cc339 Mon Sep 17 00:00:00 2001 From: genotrance Date: Mon, 2 Mar 2020 18:30:16 -0600 Subject: [PATCH 1207/1381] Added package plugins (#1381) Co-authored-by: Clyybber --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1164f1f..1b9f8d7 100644 --- a/packages.json +++ b/packages.json @@ -16825,5 +16825,17 @@ "description": "A library to help you write rest APIs", "license": "MIT", "web": "https://github.com/paul-nameless/nimbler" + }, + { + "name": "plugins", + "url": "https://github.com/genotrance/plugins", + "method": "git", + "tags": [ + "plugin", + "shared" + ], + "description": "Plugin system for Nim", + "license": "MIT", + "web": "https://github.com/genotrance/plugins" } ] From 90e65116b8eed20c9b69ed33e78994adffb6b6d4 Mon Sep 17 00:00:00 2001 From: Nameless Date: Tue, 3 Mar 2020 08:42:51 +0800 Subject: [PATCH 1208/1381] Added package libfswatch (#1385) Co-authored-by: Clyybber --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 1b9f8d7..96c7137 100644 --- a/packages.json +++ b/packages.json @@ -16837,5 +16837,20 @@ "description": "Plugin system for Nim", "license": "MIT", "web": "https://github.com/genotrance/plugins" + }, + { + "name": "libfswatch", + "url": "https://github.com/paul-nameless/nim-fswatch", + "method": "git", + "tags": [ + "fswatch", + "libfswatch", + "inotify", + "fs" + ], + "description": "Nim binding to libfswatch", + "license": "MIT", + "web": "https://github.com/paul-nameless/nim-fswatch" + } ] From ee49fba57388b454fc87f36c9c7bb7191e82391c Mon Sep 17 00:00:00 2001 From: Amru Rosyada Date: Fri, 6 Mar 2020 13:38:15 +0700 Subject: [PATCH 1209/1381] add zfcore nimble package (#1387) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 96c7137..7a73f13 100644 --- a/packages.json +++ b/packages.json @@ -16852,5 +16852,20 @@ "license": "MIT", "web": "https://github.com/paul-nameless/nim-fswatch" + }, + { + "name": "zfcore", + "url": "https://github.com/zendbit/nim.zfcore", + "method": "git", + "tags": [ + "web", + "http", + "framework", + "api", + "asynchttpserver" + ], + "description": "zfcore is high performance asynchttpserver and web framework for nim lang", + "license": "BSD", + "web": "https://github.com/zendbit/nim.zfcore" } ] From d18fb17081c25df48a2936432bf7e363424e703b Mon Sep 17 00:00:00 2001 From: Mark Pinese Date: Tue, 10 Mar 2020 17:16:17 +1100 Subject: [PATCH 1210/1381] Added package nimpress (#1389) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 7a73f13..84f4db1 100644 --- a/packages.json +++ b/packages.json @@ -16867,5 +16867,22 @@ "description": "zfcore is high performance asynchttpserver and web framework for nim lang", "license": "BSD", "web": "https://github.com/zendbit/nim.zfcore" + }, + { + "name": "nimpress", + "url": "https://github.com/mpinese/nimpress", + "method": "git", + "tags": [ + "dna", + "genetics", + "genomics", + "gwas", + "polygenic", + "risk", + "vcf" + ], + "description": "Fast and simple calculation of polygenic scores", + "license": "MIT", + "web": "https://github.com/mpinese/nimpress/" } ] From 49b158b18535658fd091fa487640004a295f9eeb Mon Sep 17 00:00:00 2001 From: AzamShafiul <61971183+AzamShafiul@users.noreply.github.com> Date: Tue, 10 Mar 2020 15:45:25 +0600 Subject: [PATCH 1211/1381] Adding new package named as weightedgraph (#1391) --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 84f4db1..c883ef8 100644 --- a/packages.json +++ b/packages.json @@ -16884,5 +16884,19 @@ "description": "Fast and simple calculation of polygenic scores", "license": "MIT", "web": "https://github.com/mpinese/nimpress/" - } + }, + { + "name": "weightedgraph", + "url": "https://github.com/AzamShafiul/weighted_graph", + "method": "git", + "tags": [ + "graph", + "weighted", + "weighted_graph", + "adjacency list" + ], + "description": "Graph With Weight Libary", + "license": "MIT", + "web": "https://github.com/AzamShafiul/weighted_graph" + } ] From 87ea432ae6ac275e9f53e1ea2dc0bec51b9fb9a1 Mon Sep 17 00:00:00 2001 From: Constantine Molchanov Date: Thu, 12 Mar 2020 17:50:42 +0400 Subject: [PATCH 1212/1381] Added package norman (#1392) --- packages.json | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/packages.json b/packages.json index c883ef8..1f78136 100644 --- a/packages.json +++ b/packages.json @@ -16851,7 +16851,6 @@ "description": "Nim binding to libfswatch", "license": "MIT", "web": "https://github.com/paul-nameless/nim-fswatch" - }, { "name": "zfcore", @@ -16894,9 +16893,24 @@ "weighted", "weighted_graph", "adjacency list" - ], - "description": "Graph With Weight Libary", - "license": "MIT", - "web": "https://github.com/AzamShafiul/weighted_graph" - } + ], + "description": "Graph With Weight Libary", + "license": "MIT", + "web": "https://github.com/AzamShafiul/weighted_graph" + }, + { + "name": "norman", + "url": "https://github.com/moigagoo/norman", + "method": "git", + "tags": [ + "orm", + "migration", + "norm", + "sqlite", + "postgres" + ], + "description": "Migration manager for Norm.", + "license": "MIT", + "web": "https://github.com/moigagoo/norman" + } ] From 50b6dec3284145e53f8d6b403cfb477a6ccb832d Mon Sep 17 00:00:00 2001 From: Kyohei Atarashi Date: Fri, 13 Mar 2020 00:02:52 +0900 Subject: [PATCH 1213/1381] Add nimfm library (#1393) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1f78136..838ad63 100644 --- a/packages.json +++ b/packages.json @@ -16912,5 +16912,17 @@ "description": "Migration manager for Norm.", "license": "MIT", "web": "https://github.com/moigagoo/norman" + }, + { + "name": "nimfm", + "url": "https://github.com/neonnnnn/nimfm", + "method": "git", + "tags": [ + "machine-learning", + "factorization-machine" + ], + "description": "A library for factorization machines in Nim.", + "license": "MIT", + "web": "https://github.com/neonnnnn/nimfm" } ] From 35676003d59dfd6a53c0101288a1302cd73f2845 Mon Sep 17 00:00:00 2001 From: Amru Rosyada Date: Fri, 13 Mar 2020 02:34:23 +0700 Subject: [PATCH 1214/1381] add zfblast nimble package (#1394) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 838ad63..094d8e8 100644 --- a/packages.json +++ b/packages.json @@ -16924,5 +16924,19 @@ "description": "A library for factorization machines in Nim.", "license": "MIT", "web": "https://github.com/neonnnnn/nimfm" + }, + { + "name": "zfblast", + "url": "https://github.com/zendbit/nim.zfblast", + "method": "git", + "tags": [ + "web", + "http", + "server", + "asynchttpserver" + ], + "description": "High performance http server (https://tools.ietf.org/html/rfc2616) with persistent connection for nim language.", + "license": "BSD", + "web": "https://github.com/zendbit/nim.zfblast" } ] From ed7cc9a0e24b56284cc9f7ec6215cd70f8a1e0a0 Mon Sep 17 00:00:00 2001 From: Zach Oakes Date: Thu, 12 Mar 2020 21:44:38 -0400 Subject: [PATCH 1215/1381] Add paravim (#1395) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 094d8e8..01faba4 100644 --- a/packages.json +++ b/packages.json @@ -16938,5 +16938,16 @@ "description": "High performance http server (https://tools.ietf.org/html/rfc2616) with persistent connection for nim language.", "license": "BSD", "web": "https://github.com/zendbit/nim.zfblast" + }, + { + "name": "paravim", + "url": "https://github.com/paranim/paravim", + "method": "git", + "tags": [ + "editor", + "games" + ], + "description": "An embedded text editor for paranim games", + "license": "Public Domain" } ] From 19658f16e8fae2f3c3ffb22f15ebba1b81430a1f Mon Sep 17 00:00:00 2001 From: BarrOff <58253563+BarrOff@users.noreply.github.com> Date: Sat, 14 Mar 2020 08:32:11 +0100 Subject: [PATCH 1216/1381] Added package roots (#1396) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 01faba4..cb109ba 100644 --- a/packages.json +++ b/packages.json @@ -16949,5 +16949,19 @@ ], "description": "An embedded text editor for paranim games", "license": "Public Domain" + }, + { + "name": "roots", + "url": "https://github.com/BarrOff/roots", + "method": "git", + "tags": [ + "math", + "numerical", + "scientific", + "root" + ], + "description": "Root finding functions for Nim", + "license": "MIT", + "web": "https://github.com/BarrOff/roots" } ] From c55a272180c3dbe040fd00b9f966c7a3b75f845d Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Sat, 14 Mar 2020 15:00:55 +0700 Subject: [PATCH 1217/1381] Added package akane (#1397) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index cb109ba..89bb645 100644 --- a/packages.json +++ b/packages.json @@ -16950,6 +16950,19 @@ "description": "An embedded text editor for paranim games", "license": "Public Domain" }, + { + "name": "akane", + "url": "https://github.com/ethosa/akane", + "method": "git", + "tags": [ + "async", + "web", + "framework" + ], + "description": "The Nim asynchronous web framework.", + "license": "MIT", + "web": "https://github.com/ethosa/akane" + }, { "name": "roots", "url": "https://github.com/BarrOff/roots", From f057ca6335c2cc56173d7840e72b66ffceb89694 Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Sat, 14 Mar 2020 11:04:14 +0100 Subject: [PATCH 1218/1381] Added package nmqtt (#1398) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 89bb645..371b003 100644 --- a/packages.json +++ b/packages.json @@ -16976,5 +16976,18 @@ "description": "Root finding functions for Nim", "license": "MIT", "web": "https://github.com/BarrOff/roots" + }, + { + "name": "nmqtt", + "url": "https://github.com/zevv/nmqtt", + "method": "git", + "tags": [ + "MQTT", + "IoT", + "MQTT3" + ], + "description": "Native MQTT client library", + "license": "MIT", + "web": "https://github.com/zevv/nmqtt" } ] From 3ff207453fffbe331df6d4a7adc1b7d76779effc Mon Sep 17 00:00:00 2001 From: sealmove <47466000+sealmove@users.noreply.github.com> Date: Mon, 16 Mar 2020 14:56:15 +0100 Subject: [PATCH 1219/1381] Added package testify (#1399) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 371b003..249ea0e 100644 --- a/packages.json +++ b/packages.json @@ -16989,5 +16989,16 @@ "description": "Native MQTT client library", "license": "MIT", "web": "https://github.com/zevv/nmqtt" + }, + { + "name": "testify", + "url": "https://github.com/sealmove/testify", + "method": "git", + "tags": [ + "testing" + ], + "description": "File-based unit testing system", + "license": "MIT", + "web": "https://github.com/sealmove/testify" } ] From afa5a2c30085838b07dc9e5b16d9b6881172194d Mon Sep 17 00:00:00 2001 From: markspanbroek Date: Mon, 16 Mar 2020 17:14:32 +0100 Subject: [PATCH 1220/1381] Added package sss (#1401) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 249ea0e..3a865f7 100644 --- a/packages.json +++ b/packages.json @@ -16990,6 +16990,19 @@ "license": "MIT", "web": "https://github.com/zevv/nmqtt" }, + { + "name": "sss", + "url": "https://github.com/markspanbroek/sss.nim", + "method": "git", + "tags": [ + "shamir", + "secret", + "sharing" + ], + "description": "Shamir secret sharing", + "license": "MIT", + "web": "https://github.com/markspanbroek/sss.nim" + }, { "name": "testify", "url": "https://github.com/sealmove/testify", From 9f4ab1351d925da696583505b491b9d8e13ee311 Mon Sep 17 00:00:00 2001 From: Sergio Tapia Date: Tue, 17 Mar 2020 01:36:33 -0400 Subject: [PATCH 1221/1381] Add filesize package (#1402) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 3a865f7..4b0cbb2 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,17 @@ [ + { + "name": "filesize", + "url": "https://github.com/sergiotapia/filesize", + "method": "git", + "tags": [ + "filesize", + "size" + ], + "description": "A Nim package to convert filesizes into other units, and turns filesizes into human readable strings.", + "license": "MIT", + "web": "https://github.com/sergiotapia/filesize", + "doc": "https://github.com/sergiotapia/filesize" + }, { "name": "argon2_bind", "url": "https://github.com/D-Nice/argon2_bind", From 8332f0b743016252766989ebe5ea42d35e49d801 Mon Sep 17 00:00:00 2001 From: PMunch Date: Tue, 17 Mar 2020 14:55:30 +0100 Subject: [PATCH 1222/1381] Add macroutils package (#1403) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 4b0cbb2..117f5c0 100644 --- a/packages.json +++ b/packages.json @@ -1363,6 +1363,21 @@ "license": "MIT", "web": "https://github.com/PMunch/getmac" }, + { + "name": "macroutils", + "url": "https://github.com/PMunch/macroutils", + "method": "git", + "tags": [ + "macros", + "ast", + "metaprogramming", + "library", + "utility" + ], + "description": "A package that makes creating macros easier", + "license": "MIT", + "web": "https://github.com/PMunch/macroutils" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From bd0d7b0669fc17c58529c0a38a00daf0dd14ae73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Mon, 23 Mar 2020 07:26:04 +0100 Subject: [PATCH 1223/1381] Add nordnet (#1405) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 117f5c0..b4ccd19 100644 --- a/packages.json +++ b/packages.json @@ -17041,5 +17041,18 @@ "description": "File-based unit testing system", "license": "MIT", "web": "https://github.com/sealmove/testify" + }, + { + "name": "nordnet", + "url": "https://github.com/ThomasTJdev/nim_nordnet_api", + "method": "git", + "tags": [ + "nordnet", + "stocks", + "scrape" + ], + "description": "Scraping API for www.nordnet.dk ready to integrate with Home Assistant (Hassio)", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_nordnet_api" } ] From 2ca7074c8edf7dbf42715c059ff65f20301382c8 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 23 Mar 2020 04:03:34 -0300 Subject: [PATCH 1224/1381] Added package nimbug (#1407) Co-authored-by: Miran --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index b4ccd19..9eb829c 100644 --- a/packages.json +++ b/packages.json @@ -17042,6 +17042,17 @@ "license": "MIT", "web": "https://github.com/sealmove/testify" }, + { + "name": "nimbug", + "url": "https://github.com/juancarlospaco/nimbug", + "method": "git", + "tags": [ + "bug" + ], + "description": "Nim Semi-Auto Bug Report Tool", + "license": "MIT", + "web": "https://github.com/juancarlospaco/nimbug" + }, { "name": "nordnet", "url": "https://github.com/ThomasTJdev/nim_nordnet_api", From c5ae523abfd92ef351f9f771f236da124dcccfee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Mon, 23 Mar 2020 08:40:32 +0100 Subject: [PATCH 1225/1381] Add eloverblik (#1406) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9eb829c..f6565a2 100644 --- a/packages.json +++ b/packages.json @@ -17042,6 +17042,19 @@ "license": "MIT", "web": "https://github.com/sealmove/testify" }, + { + "name": "eloverblik", + "url": "https://github.com/ThomasTJdev/nim_eloverblik_api", + "method": "git", + "tags": [ + "api", + "elforbrug", + "eloverblik" + ], + "description": "API for www.eloverblik.dk", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/nim_eloverblik_api" + }, { "name": "nimbug", "url": "https://github.com/juancarlospaco/nimbug", From 5a8cc8e7709149a122f199f27aa7f4a2bda1ec75 Mon Sep 17 00:00:00 2001 From: markspanbroek Date: Mon, 23 Mar 2020 09:20:20 +0100 Subject: [PATCH 1226/1381] Added package mnemonic (#1408) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index f6565a2..d5bbc68 100644 --- a/packages.json +++ b/packages.json @@ -17042,6 +17042,18 @@ "license": "MIT", "web": "https://github.com/sealmove/testify" }, + { + "name": "mnemonic", + "url": "https://github.com/markspanbroek/mnemonic", + "method": "git", + "tags": [ + "mnemonic", + "bip-39" + ], + "description": "Create memorable sentences from byte sequences.", + "license": "MIT", + "web": "https://github.com/markspanbroek/mnemonic" + }, { "name": "eloverblik", "url": "https://github.com/ThomasTJdev/nim_eloverblik_api", From 75fd7d4a4450de207cdc6c130b78e39013be18af Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Mon, 23 Mar 2020 05:56:22 -0300 Subject: [PATCH 1227/1381] Added package libarchibi (#1409) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index d5bbc68..addf906 100644 --- a/packages.json +++ b/packages.json @@ -17042,6 +17042,18 @@ "license": "MIT", "web": "https://github.com/sealmove/testify" }, + { + "name": "libarchibi", + "url": "https://github.com/juancarlospaco/libarchibi", + "method": "git", + "tags": [ + "zip", + "libarchive" + ], + "description": "Libarchive at compile-time, Libarchive Chibi Edition", + "license": "MIT", + "web": "https://github.com/juancarlospaco/libarchibi" + }, { "name": "mnemonic", "url": "https://github.com/markspanbroek/mnemonic", From 61edd8564e7330b3829b666a3f49aa64578b32e6 Mon Sep 17 00:00:00 2001 From: Manuel Philipp Date: Tue, 24 Mar 2020 20:04:24 +0100 Subject: [PATCH 1228/1381] Added package pomTimer (#1411) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index addf906..5855e4a 100644 --- a/packages.json +++ b/packages.json @@ -17102,5 +17102,21 @@ "description": "Scraping API for www.nordnet.dk ready to integrate with Home Assistant (Hassio)", "license": "MIT", "web": "https://github.com/ThomasTJdev/nim_nordnet_api" + }, + { + "name": "pomTimer", + "url": "https://github.com/MnlPhlp/pomTimer", + "method": "git", + "tags": [ + "timer", + "pomodoro", + "pomodoro-technique", + "pomodoro-timer", + "cli", + "pomodoro-cli" + ], + "description": "A simple pomodoro timer for the comandline with cli-output and notifications.", + "license": "MIT", + "web": "https://github.com/MnlPhlp/pomTimer" } ] From 78dfa8e4596d2a16a28344f953930a24aad67267 Mon Sep 17 00:00:00 2001 From: RMT Date: Wed, 25 Mar 2020 09:05:05 +0100 Subject: [PATCH 1229/1381] Added package alut (#1412) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 5855e4a..fa50682 100644 --- a/packages.json +++ b/packages.json @@ -17118,5 +17118,19 @@ "description": "A simple pomodoro timer for the comandline with cli-output and notifications.", "license": "MIT", "web": "https://github.com/MnlPhlp/pomTimer" + }, + { + "name": "alut", + "url": "https://github.com/rmt/alut", + "method": "git", + "tags": [ + "alut", + "openal", + "audio", + "sound" + ], + "description": "OpenAL Utility Toolkit (ALUT)", + "license": "LGPL-2.1", + "web": "https://github.com/rmt/alut" } ] From 07ea349960a9cf06d11d20b5e8772968c0c24104 Mon Sep 17 00:00:00 2001 From: jiro Date: Fri, 27 Mar 2020 02:21:30 +0900 Subject: [PATCH 1230/1381] Added package rena (#1413) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fa50682..fa32197 100644 --- a/packages.json +++ b/packages.json @@ -17132,5 +17132,18 @@ "description": "OpenAL Utility Toolkit (ALUT)", "license": "LGPL-2.1", "web": "https://github.com/rmt/alut" + }, + { + "name": "rena", + "url": "https://github.com/jiro4989/rena", + "method": "git", + "tags": [ + "cli", + "command", + "rename" + ], + "description": "rena is a tiny fire/directory renaming command.", + "license": "MIT", + "web": "https://github.com/jiro4989/rena" } ] From c79818052afa54851c2e3cfd6cc1c716944a8341 Mon Sep 17 00:00:00 2001 From: Danil Yarantsev <21169548+Yardanico@users.noreply.github.com> Date: Fri, 27 Mar 2020 10:53:16 +0300 Subject: [PATCH 1231/1381] Added package libvlc (#1414) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index fa32197..03eda62 100644 --- a/packages.json +++ b/packages.json @@ -17145,5 +17145,22 @@ "description": "rena is a tiny fire/directory renaming command.", "license": "MIT", "web": "https://github.com/jiro4989/rena" + }, + { + "name": "libvlc", + "url": "https://github.com/Yardanico/nim-libvlc", + "method": "git", + "tags": [ + "vlc", + "libvlc", + "music", + "video", + "audio", + "media", + "wrapper" + ], + "description": "libvlc bindings for Nim", + "license": "MIT", + "web": "https://github.com/Yardanico/nim-libvlc" } ] From 4ecdc0c116f1d1aa89f1dd1d8e35e8c04cdcd221 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Fri, 27 Mar 2020 23:12:32 +0530 Subject: [PATCH 1232/1381] Add package nimcoon (#1415) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 03eda62..6f1abec 100644 --- a/packages.json +++ b/packages.json @@ -17162,5 +17162,20 @@ "description": "libvlc bindings for Nim", "license": "MIT", "web": "https://github.com/Yardanico/nim-libvlc" + }, + { + "name": "nimcoon", + "url": "https://njoseph.me/gitweb/nimcoon.git", + "method": "git", + "tags": [ + "cli", + "youtube", + "streaming", + "downloader", + "magnet" + ], + "description": "A command-line YouTube player and more", + "license": "GPL-3.0", + "web": "https://gitlab.com/njoseph/nimcoon" } ] From 261020cc3cc89198cc97f21f1a3c0b278eddd27e Mon Sep 17 00:00:00 2001 From: Ethosa <49402667+Ethosa@users.noreply.github.com> Date: Sat, 28 Mar 2020 13:09:40 +0700 Subject: [PATCH 1233/1381] Added package nimage (#1416) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 6f1abec..ad925d5 100644 --- a/packages.json +++ b/packages.json @@ -17177,5 +17177,16 @@ "description": "A command-line YouTube player and more", "license": "GPL-3.0", "web": "https://gitlab.com/njoseph/nimcoon" + }, + { + "name": "nimage", + "url": "https://github.com/ethosa/nimage", + "method": "git", + "tags": [ + "image" + ], + "description": "The image management library written in Nim.", + "license": "MIT", + "web": "https://github.com/ethosa/nimage" } ] From fb54af4ca0b906a15c72e7c1c540ec4f931d09f7 Mon Sep 17 00:00:00 2001 From: c-blake Date: Sun, 29 Mar 2020 12:49:47 -0400 Subject: [PATCH 1234/1381] Add AdIx. (#1417) --- packages.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages.json b/packages.json index ad925d5..dabf7bc 100644 --- a/packages.json +++ b/packages.json @@ -17188,5 +17188,25 @@ "description": "The image management library written in Nim.", "license": "MIT", "web": "https://github.com/ethosa/nimage" + }, + { + "name": "adix", + "url": "https://github.com/c-blake/adix", + "method": "git", + "tags": [ + "library", + "dictionary", + "hash tables", + "data structures", + "hash", + "compact", + "Fenwick tree", + "BIST", + "binary trees", + "B-Tree" + ], + "description": "An Adaptive Index Library For Nim", + "license": "MIT", + "web": "https://github.com/c-blake/adix" } ] From 0d11b7a59a22c0b6effd588be8ed8f55a3995758 Mon Sep 17 00:00:00 2001 From: pietroppeter Date: Mon, 30 Mar 2020 08:07:20 +0200 Subject: [PATCH 1235/1381] Added package nimoji (#1418) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index dabf7bc..21d0254 100644 --- a/packages.json +++ b/packages.json @@ -17208,5 +17208,18 @@ "description": "An Adaptive Index Library For Nim", "license": "MIT", "web": "https://github.com/c-blake/adix" + }, + { + "name": "nimoji", + "url": "https://github.com/pietroppeter/nimoji", + "method": "git", + "tags": [ + "emoji", + "library", + "binary" + ], + "description": "🍕🍺 emoji support for Nim 👑 and the world 🌍", + "license": "MIT", + "web": "https://github.com/pietroppeter/nimoji" } ] From 686f78da0924af9afea4cb58616aef8c377d7781 Mon Sep 17 00:00:00 2001 From: Michael Fiano Date: Mon, 30 Mar 2020 02:59:42 -0400 Subject: [PATCH 1236/1381] Add origin (#1419) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 21d0254..c517b14 100644 --- a/packages.json +++ b/packages.json @@ -17221,5 +17221,20 @@ "description": "🍕🍺 emoji support for Nim 👑 and the world 🌍", "license": "MIT", "web": "https://github.com/pietroppeter/nimoji" + }, + { + "name": "origin", + "url": "https://github.com/mfiano/origin.nim", + "method": "git", + "tags": [ + "gamedev", + "library", + "math", + "matrix", + "vector" + ], + "description": "A graphics math library", + "license": "MIT", + "web": "https://github.com/mfiano/origin" } ] From 382aa3308f634cf4dc240bdba0beb1ce7d6bbc5d Mon Sep 17 00:00:00 2001 From: Michael Fiano Date: Mon, 30 Mar 2020 04:43:43 -0400 Subject: [PATCH 1237/1381] origin: Fix web link typo (#1420) --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c517b14..fdee7d0 100644 --- a/packages.json +++ b/packages.json @@ -17235,6 +17235,6 @@ ], "description": "A graphics math library", "license": "MIT", - "web": "https://github.com/mfiano/origin" + "web": "https://github.com/mfiano/origin.nim" } ] From 32d0a1cc0a126bf5dbd5fc7a74df27558cf6a1a5 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 2 Apr 2020 01:53:08 -0300 Subject: [PATCH 1238/1381] Added package xpm (#1421) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index fdee7d0..3b5a4f1 100644 --- a/packages.json +++ b/packages.json @@ -17236,5 +17236,17 @@ "description": "A graphics math library", "license": "MIT", "web": "https://github.com/mfiano/origin.nim" + }, + { + "name": "xpm", + "url": "https://github.com/juancarlospaco/xpm", + "method": "git", + "tags": [ + "netpbm", + "xpm" + ], + "description": "X-Pixmap & NetPBM", + "license": "MIT", + "web": "https://github.com/juancarlospaco/xpm" } ] From 6e34b7d3e1855ea98eb8b7dac12daee6e345f14e Mon Sep 17 00:00:00 2001 From: Miran Date: Sun, 5 Apr 2020 19:59:42 +0200 Subject: [PATCH 1239/1381] add multiple packages (#1426) --- packages.json | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/packages.json b/packages.json index 3b5a4f1..693572d 100644 --- a/packages.json +++ b/packages.json @@ -17237,6 +17237,21 @@ "license": "MIT", "web": "https://github.com/mfiano/origin.nim" }, + { + "name": "webgui", + "url": "https://github.com/juancarlospaco/webgui", + "method": "git", + "tags": [ + "web", + "webview", + "css", + "js", + "gui" + ], + "description": "Web Technologies based Crossplatform GUI, modified wrapper for modified webview.h", + "license": "MIT", + "web": "https://github.com/juancarlospaco/webgui" + }, { "name": "xpm", "url": "https://github.com/juancarlospaco/xpm", @@ -17248,5 +17263,61 @@ "description": "X-Pixmap & NetPBM", "license": "MIT", "web": "https://github.com/juancarlospaco/xpm" + }, + { + "name": "omnimax", + "url": "https://github.com/vitreo12/omnimax", + "method": "git", + "tags": [ + "dsl", + "dsp", + "audio", + "sound", + "maxmsp" + ], + "description": "Max wrapper for omni.", + "license": "MIT", + "web": "https://github.com/vitreo12/omnimax" + }, + { + "name": "omnicollider", + "url": "https://github.com/vitreo12/omnicollider", + "method": "git", + "tags": [ + "dsl", + "dsp", + "audio", + "sound", + "supercollider" + ], + "description": "SuperCollider wrapper for omni.", + "license": "MIT", + "web": "https://github.com/vitreo12/omnicollider" + }, + { + "name": "omni", + "url": "https://github.com/vitreo12/omni", + "method": "git", + "tags": [ + "dsl", + "dsp", + "audio", + "sound" + ], + "description": "omni is a DSL for low-level audio programming.", + "license": "MIT", + "web": "https://github.com/vitreo12/omni" + }, + { + "name": "mui", + "url": "https://github.com/angluca/mui", + "method": "git", + "tags": [ + "ui", + "microui" + ], + "description": "A tiny immediate-mode UI library", + "license": "MIT", + "web": "https://github.com/angluca/mui" } ] From 46d6a99185845ef0e9081f8c15f4df9ac8208253 Mon Sep 17 00:00:00 2001 From: Kermit Alexander II Date: Mon, 6 Apr 2020 10:51:19 -0500 Subject: [PATCH 1240/1381] Added package nimatic (#1428) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 693572d..15449d3 100644 --- a/packages.json +++ b/packages.json @@ -17319,5 +17319,19 @@ "description": "A tiny immediate-mode UI library", "license": "MIT", "web": "https://github.com/angluca/mui" + }, + { + "name": "nimatic", + "url": "https://github.com/DangerOnTheRanger/nimatic", + "method": "git", + "tags": [ + "static", + "generator", + "web", + "markdown" + ], + "description": "A static site generator written in Nim", + "license": "2-clause BSD", + "web": "https://github.com/DangerOnTheRanger/nimatic" } ] From 5b8ed34959598a5be355bad5ff6a333d3d7cd85f Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Tue, 7 Apr 2020 17:09:45 -0300 Subject: [PATCH 1241/1381] Added package ballena_itcher (#1429) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 15449d3..9bd97fa 100644 --- a/packages.json +++ b/packages.json @@ -17333,5 +17333,16 @@ "description": "A static site generator written in Nim", "license": "2-clause BSD", "web": "https://github.com/DangerOnTheRanger/nimatic" + }, + { + "name": "ballena_itcher", + "url": "https://github.com/juancarlospaco/ballena-itcher", + "method": "git", + "tags": [ + "iso" + ], + "description": "Flash ISO images to SD cards & USB drives, safely and easily.", + "license": "MIT", + "web": "https://github.com/juancarlospaco/ballena-itcher" } ] From b6a848c525c5f074192d8c52807d31b9f72f7d85 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Wed, 8 Apr 2020 09:51:35 -0300 Subject: [PATCH 1242/1381] Added package parselicense (#1430) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 9bd97fa..d59acc3 100644 --- a/packages.json +++ b/packages.json @@ -17344,5 +17344,18 @@ "description": "Flash ISO images to SD cards & USB drives, safely and easily.", "license": "MIT", "web": "https://github.com/juancarlospaco/ballena-itcher" + }, + { + "name": "parselicense", + "url": "https://github.com/juancarlospaco/parselicense", + "method": "git", + "tags": [ + "spdx", + "license", + "parser" + ], + "description": "Parse Standard SPDX Licenses from string to Enum", + "license": "MIT", + "web": "https://github.com/juancarlospaco/parselicense" } ] From eaadf112c2d22bfaf73ed7769c8eab0bbed3d186 Mon Sep 17 00:00:00 2001 From: Andrei Regiani Date: Wed, 8 Apr 2020 18:51:18 +0200 Subject: [PATCH 1243/1381] Updated INim, moved to organization account (#1431) Moved from AndreiRegiani/INim -> inim-repl/INim --- packages.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d59acc3..a12d8fa 100644 --- a/packages.json +++ b/packages.json @@ -9358,7 +9358,7 @@ }, { "name": "inim", - "url": "https://github.com/AndreiRegiani/INim", + "url": "https://github.com/inim-repl/INim", "method": "git", "tags": [ "repl", From 24419500421b10aa595c77d8c75c3909ba555c59 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Sat, 11 Apr 2020 08:41:36 +0300 Subject: [PATCH 1244/1381] Added darwin package (#1432) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a12d8fa..b0aacbe 100644 --- a/packages.json +++ b/packages.json @@ -17357,5 +17357,18 @@ "description": "Parse Standard SPDX Licenses from string to Enum", "license": "MIT", "web": "https://github.com/juancarlospaco/parselicense" + }, + { + "name": "darwin", + "url": "https://github.com/yglukhov/darwin", + "method": "git", + "tags": [ + "macos", + "ios", + "binding" + ], + "description": "Bindings to MacOS and iOS frameworks", + "license": "MIT", + "web": "https://github.com/yglukhov/darwin" } ] From 632a265262198ee4feda39fd2c60d8bafadfcb15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Sun, 12 Apr 2020 07:37:24 +0200 Subject: [PATCH 1245/1381] Added choosenimgui (#1433) A simple GUI for choosenim with https://juancarlospaco.github.io/webgui/. --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index b0aacbe..b43eea1 100644 --- a/packages.json +++ b/packages.json @@ -17370,5 +17370,17 @@ "description": "Bindings to MacOS and iOS frameworks", "license": "MIT", "web": "https://github.com/yglukhov/darwin" + }, + { + "name": "choosenimgui", + "url": "https://github.com/ThomasTJdev/choosenim_gui", + "method": "git", + "tags": [ + "choosenim", + "toolchain" + ], + "description": "A simple GUI for choosenim.", + "license": "MIT", + "web": "https://github.com/ThomasTJdev/choosenim_gui" } ] From f0aa0c2ffbbd4f23aad6418d7f32a6baba61b12b Mon Sep 17 00:00:00 2001 From: Jack Tang <1190545+jackhftang@users.noreply.github.com> Date: Mon, 13 Apr 2020 13:45:05 +0800 Subject: [PATCH 1246/1381] Added package lrucache (#1434) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index b43eea1..33e971b 100644 --- a/packages.json +++ b/packages.json @@ -17382,5 +17382,18 @@ "description": "A simple GUI for choosenim.", "license": "MIT", "web": "https://github.com/ThomasTJdev/choosenim_gui" + }, + { + "name": "lrucache", + "url": "https://github.com/jackhftang/lrucache", + "method": "git", + "tags": [ + "cache", + "lru", + "data structure" + ], + "description": "Least recently used (LRU) cache", + "license": "MIT", + "web": "https://github.com/jackhftang/lrucache" } ] From c388e3ca899cea55697b34fc7665952ccf297d5a Mon Sep 17 00:00:00 2001 From: Nagee Elghassein Date: Sun, 12 Apr 2020 23:03:09 -0700 Subject: [PATCH 1247/1381] Added package hsluv (#1435) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 33e971b..73d911d 100644 --- a/packages.json +++ b/packages.json @@ -17383,6 +17383,20 @@ "license": "MIT", "web": "https://github.com/ThomasTJdev/choosenim_gui" }, + { + "name": "hsluv", + "url": "https://github.com/isthisnagee/hsluv-nim", + "method": "git", + "tags": [ + "color", + "hsl", + "hsluv", + "hpluv" + ], + "description": "A port of HSLuv, a human friendly alternative to HSL.", + "license": "MIT", + "web": "https://github.com/isthisnagee/hsluv-nim" + }, { "name": "lrucache", "url": "https://github.com/jackhftang/lrucache", From 71425f66c1e81617908b8d6081239271f91cfa0a Mon Sep 17 00:00:00 2001 From: rockcavera Date: Thu, 16 Apr 2020 01:59:00 -0300 Subject: [PATCH 1248/1381] Added package iputils (#1436) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 73d911d..62cfe33 100644 --- a/packages.json +++ b/packages.json @@ -17409,5 +17409,19 @@ "description": "Least recently used (LRU) cache", "license": "MIT", "web": "https://github.com/jackhftang/lrucache" + }, + { + "name": "iputils", + "url": "https://github.com/rockcavera/nim-iputils", + "method": "git", + "tags": [ + "ip", + "ipv4", + "ipv6", + "cidr" + ], + "description": "Utilities for use with IP. It has functions for IPv4, IPv6 and CIDR.", + "license": "MIT", + "web": "https://github.com/rockcavera/nim-iputils" } ] From 9e57214a7a0714131a42e6da91acfaeff15c8f6e Mon Sep 17 00:00:00 2001 From: Danil Yarantsev <21169548+Yardanico@users.noreply.github.com> Date: Fri, 17 Apr 2020 17:10:46 +0300 Subject: [PATCH 1249/1381] Added package strenc (#1437) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 62cfe33..68e4573 100644 --- a/packages.json +++ b/packages.json @@ -17423,5 +17423,17 @@ "description": "Utilities for use with IP. It has functions for IPv4, IPv6 and CIDR.", "license": "MIT", "web": "https://github.com/rockcavera/nim-iputils" + }, + { + "name": "strenc", + "url": "https://github.com/Yardanico/nim-strenc", + "method": "git", + "tags": [ + "encryption", + "obfuscation" + ], + "description": "A library to automatically encrypt all string constants in your programs", + "license": "MIT", + "web": "https://github.com/Yardanico/nim-strenc" } ] From 8898b43d4abeffd7b4ce22e186b08200ae03743f Mon Sep 17 00:00:00 2001 From: wltsmrz Date: Mon, 20 Apr 2020 16:23:09 +0900 Subject: [PATCH 1250/1381] Add package zstd (#1439) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 68e4573..a46b134 100644 --- a/packages.json +++ b/packages.json @@ -101,6 +101,18 @@ "license": "MIT", "web": "https://github.com/wltsmrz/nimler" }, + { + "name": "zstd", + "url": "https://github.com/wltsmrz/nim_zstd", + "method": "git", + "tags": [ + "zstd", + "compression" + ], + "description": "Bindings for zstd", + "license": "MIT", + "web": "https://github.com/wltsmrz/nim_zstd" + }, { "name": "QuickJS4nim", "url": "https://github.com/ImVexed/quickjs4nim", From eedf96e453c5d662433fe389533d507388bc6512 Mon Sep 17 00:00:00 2001 From: gecko Date: Tue, 21 Apr 2020 15:22:01 +0100 Subject: [PATCH 1251/1381] Add package trick (#1440) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index a46b134..8d84d7f 100644 --- a/packages.json +++ b/packages.json @@ -17447,5 +17447,21 @@ "description": "A library to automatically encrypt all string constants in your programs", "license": "MIT", "web": "https://github.com/Yardanico/nim-strenc" + }, + { + "name": "trick", + "url": "https://github.com/exelotl/trick", + "method": "git", + "tags": [ + "gba", + "nds", + "nintendo", + "image", + "conversion" + ], + "description": "Game Boy Advance image conversion library and more", + "license": "zlib", + "web": "https://github.com/exelotl/trick", + "doc": "https://exelotl.github.io/trick/trick.html" } ] From e92522539ffe61a4707c8c77ef6391fb1135797a Mon Sep 17 00:00:00 2001 From: Ward Date: Thu, 23 Apr 2020 13:58:05 +0800 Subject: [PATCH 1252/1381] Update packages.json (#1442) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 8d84d7f..f14cd2f 100644 --- a/packages.json +++ b/packages.json @@ -17463,5 +17463,22 @@ "license": "zlib", "web": "https://github.com/exelotl/trick", "doc": "https://exelotl.github.io/trick/trick.html" + }, + { + "name": "wAuto", + "url": "https://github.com/khchen/wAuto", + "method": "git", + "tags": [ + "automation", + "windows", + "keyboard", + "mouse", + "registry", + "process" + ], + "description": "Windows automation module", + "license": "MIT", + "web": "https://github.com/khchen/wAuto", + "doc": "https://khchen.github.io/wAuto" } ] From 7c3e2f465ffea7414dd899a13e8935b57a1785d4 Mon Sep 17 00:00:00 2001 From: misebox Date: Thu, 23 Apr 2020 15:55:56 +0900 Subject: [PATCH 1253/1381] Added package pdba (#1443) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index f14cd2f..79c753d 100644 --- a/packages.json +++ b/packages.json @@ -17464,6 +17464,19 @@ "web": "https://github.com/exelotl/trick", "doc": "https://exelotl.github.io/trick/trick.html" }, + { + "name": "pdba", + "url": "https://github.com/misebox/pdba", + "method": "git", + "tags": [ + "db", + "library", + "wrapper" + ], + "description": "A postgres DB adapter for nim.", + "license": "MIT", + "web": "https://github.com/misebox/pdba" + }, { "name": "wAuto", "url": "https://github.com/khchen/wAuto", From 56f2e8e7af6c706e6c3a120080cb3ea9feab0c06 Mon Sep 17 00:00:00 2001 From: faulander <38588197+faulander@users.noreply.github.com> Date: Thu, 23 Apr 2020 15:44:09 +0200 Subject: [PATCH 1254/1381] added nimqt (#1441) --- packages.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 79c753d..c6b0693 100644 --- a/packages.json +++ b/packages.json @@ -17464,6 +17464,20 @@ "web": "https://github.com/exelotl/trick", "doc": "https://exelotl.github.io/trick/trick.html" }, + { + "name": "nimQBittorrent", + "url": "https://github.com/faulander/nimQBittorrent", + "method": "git", + "tags": [ + "torrent", + "qbittorrent", + "api", + "wrapper" + ], + "description": "a wrapper for the QBittorrent WebAPI for NIM.", + "license": "MIT", + "web": "https://github.com/faulander/nimQBittorrent" + }, { "name": "pdba", "url": "https://github.com/misebox/pdba", @@ -17494,4 +17508,4 @@ "web": "https://github.com/khchen/wAuto", "doc": "https://khchen.github.io/wAuto" } -] +] \ No newline at end of file From 4e32812f06d9a052929c0a7991afda65f8a6797f Mon Sep 17 00:00:00 2001 From: KrispPurg <34076219+krisppurg@users.noreply.github.com> Date: Fri, 24 Apr 2020 12:07:27 +0100 Subject: [PATCH 1255/1381] Add package dimscord (#1446) --- packages.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c6b0693..aff0208 100644 --- a/packages.json +++ b/packages.json @@ -17507,5 +17507,21 @@ "license": "MIT", "web": "https://github.com/khchen/wAuto", "doc": "https://khchen.github.io/wAuto" + }, + { + "name": "dimscord", + "url": "https://github.com/krisppurg/dimscord", + "method": "git", + "tags": [ + "discord", + "api", + "library", + "rest", + "gateway", + "client" + ], + "description": "A Discord Bot & REST Library.", + "license": "MIT", + "web": "https://github.com/krisppurg/dimscord" } -] \ No newline at end of file +] From 98dfb6d4abdcebba305a19d78270aebfe53415b0 Mon Sep 17 00:00:00 2001 From: awr1 <41453959+awr1@users.noreply.github.com> Date: Fri, 24 Apr 2020 14:12:34 -0500 Subject: [PATCH 1256/1381] Add cpuwhat package (#1449) --- packages.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/packages.json b/packages.json index aff0208..8e8ca8f 100644 --- a/packages.json +++ b/packages.json @@ -17523,5 +17523,28 @@ "description": "A Discord Bot & REST Library.", "license": "MIT", "web": "https://github.com/krisppurg/dimscord" + }, + { + "name": "cpuwhat", + "url": "https://github.com/awr1/cpuwhat", + "method": "git", + "tags": [ + "cpu", + "cpuid", + "hardware", + "intrinsics", + "simd", + "sse", + "avx", + "avx2", + "x86", + "arm", + "architecture", + "arch", + "nim" + ], + "description": "Nim utilities for advanced CPU operations: CPU identification, bindings to assorted intrinsics", + "license": "ISC", + "web": "https://github.com/awr1/cpuwhat" } ] From 331795460164b78dd843806c3ae47d0d6194527a Mon Sep 17 00:00:00 2001 From: Daniel E Cook Date: Fri, 24 Apr 2020 15:35:19 -0400 Subject: [PATCH 1257/1381] Added package til (#1448) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 8e8ca8f..58ef002 100644 --- a/packages.json +++ b/packages.json @@ -17524,6 +17524,18 @@ "license": "MIT", "web": "https://github.com/krisppurg/dimscord" }, + { + "name": "til", + "url": "https://github.com/danielecook/til-tool", + "method": "git", + "tags": [ + "cli", + "til" + ], + "description": "til-tool: Today I Learned tool", + "license": "MIT", + "web": "https://github.com/danielecook/til-tool" + }, { "name": "cpuwhat", "url": "https://github.com/awr1/cpuwhat", From 14495388ee7a27524ee9f26fed6d2c1abab49035 Mon Sep 17 00:00:00 2001 From: BarrOff <58253563+BarrOff@users.noreply.github.com> Date: Sat, 25 Apr 2020 18:43:19 +0200 Subject: [PATCH 1258/1381] Added package nimpari (#1450) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 58ef002..7518f95 100644 --- a/packages.json +++ b/packages.json @@ -17558,5 +17558,21 @@ "description": "Nim utilities for advanced CPU operations: CPU identification, bindings to assorted intrinsics", "license": "ISC", "web": "https://github.com/awr1/cpuwhat" + }, + { + "name": "nimpari", + "url": "https://github.com/BarrOff/nim-pari", + "method": "git", + "tags": [ + "library", + "wrapper", + "math", + "cas", + "scientific", + "number-theory" + ], + "description": "Nim wrapper for the PARI library", + "license": "MIT", + "web": "https://github.com/BarrOff/nim-pari" } ] From a9dc801550c85547afa1db84267117061168da1b Mon Sep 17 00:00:00 2001 From: Joey Date: Sun, 26 Apr 2020 23:17:11 -0600 Subject: [PATCH 1259/1381] Add package sdl2 (#1451) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 7518f95..e96960b 100644 --- a/packages.json +++ b/packages.json @@ -17574,5 +17574,19 @@ "description": "Nim wrapper for the PARI library", "license": "MIT", "web": "https://github.com/BarrOff/nim-pari" + }, + { + "name": "nim_sdl2", + "url": "https://github.com/jyapayne/nim-sdl2", + "method": "git", + "tags": [ + "sdl2", + "sdl", + "graphics", + "game" + ], + "description": "SDL2 Autogenerated wrapper", + "license": "MIT", + "web": "https://github.com/jyapayne/nim-sdl2" } ] From 2843068b9dcd18be1735862327e69ec6b763ae7f Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Wed, 29 Apr 2020 13:13:51 +0800 Subject: [PATCH 1260/1381] Added package cookies (#1452) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e96960b..7ba821b 100644 --- a/packages.json +++ b/packages.json @@ -17588,5 +17588,18 @@ "description": "SDL2 Autogenerated wrapper", "license": "MIT", "web": "https://github.com/jyapayne/nim-sdl2" + }, + { + "name": "cookies", + "url": "https://github.com/planety/cookies", + "method": "git", + "tags": [ + "web", + "cookie", + "prologue" + ], + "description": "HTTP Cookies for Nim.", + "license": "Apache-2.0", + "web": "https://github.com/planety/cookies" } ] From 89f783534b738c63542f57918d9c799142c0ab86 Mon Sep 17 00:00:00 2001 From: zer0-star <32029533+zer0-star@users.noreply.github.com> Date: Wed, 29 Apr 2020 22:59:45 +0900 Subject: [PATCH 1261/1381] Added package matsuri (#1453) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 7ba821b..c408931 100644 --- a/packages.json +++ b/packages.json @@ -17601,5 +17601,19 @@ "description": "HTTP Cookies for Nim.", "license": "Apache-2.0", "web": "https://github.com/planety/cookies" + }, + { + "name": "matsuri", + "url": "https://github.com/zer0-star/matsuri", + "method": "git", + "tags": [ + "library", + "variant", + "algebraic_data_type", + "pattern_matching" + ], + "description": "Useful Variant Type and Powerful Pattern Matching for Nim", + "license": "MIT", + "web": "https://github.com/zer0-star/matsuri" } ] From d99532adf28282540b3d21d1e3ff1b73c8d5b638 Mon Sep 17 00:00:00 2001 From: Samantha Demi Date: Wed, 29 Apr 2020 12:23:33 -0400 Subject: [PATCH 1262/1381] adding updated libclang-c wrapper package (#1454) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index c408931..3c40894 100644 --- a/packages.json +++ b/packages.json @@ -17615,5 +17615,20 @@ "description": "Useful Variant Type and Powerful Pattern Matching for Nim", "license": "MIT", "web": "https://github.com/zer0-star/matsuri" + }, + { + "name": "clang", + "url": "https://github.com/samdmarshall/libclang-nim", + "method": "git", + "tags": [ + "llvm", + "clang", + "libclang", + "wrapper", + "library" + ], + "description": "Wrapper for libclang C headers", + "license": "BSD 3-Clause", + "web": "https://github.com/samdmarshall/libclang-nim" } ] From f33ded26b26a2a8fa2921bee9bdce3b51d107923 Mon Sep 17 00:00:00 2001 From: PMunch Date: Thu, 30 Apr 2020 10:10:10 +0200 Subject: [PATCH 1263/1381] Add ansiparse and ansitohtml packages (#1444) --- packages.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages.json b/packages.json index 3c40894..de35ef5 100644 --- a/packages.json +++ b/packages.json @@ -1390,6 +1390,32 @@ "license": "MIT", "web": "https://github.com/PMunch/macroutils" }, + { + "name": "ansiparse", + "url": "https://github.com/PMunch/ansiparse", + "method": "git", + "tags": [ + "ansi", + "library", + "parsing" + ], + "description": "Library to parse ANSI escape codes", + "license": "MIT", + "web": "https://github.com/PMunch/ansiparse" + }, + { + "name": "ansitohtml", + "url": "https://github.com/PMunch/ansitohtml", + "method": "git", + "tags": [ + "ansi", + "library", + "html" + ], + "description": "Converts ANSI colour codes to HTML span tags with style tags", + "license": "MIT", + "web": "https://github.com/PMunch/ansitohtml" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From 5e75e928418a4ea2b2c1af29195f851dafd2c8b0 Mon Sep 17 00:00:00 2001 From: Olli Niinivaara Date: Thu, 30 Apr 2020 11:36:53 +0300 Subject: [PATCH 1264/1381] added StashTable (#1445) --- packages.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/packages.json b/packages.json index de35ef5..a78b9ef 100644 --- a/packages.json +++ b/packages.json @@ -17534,6 +17534,27 @@ "web": "https://github.com/khchen/wAuto", "doc": "https://khchen.github.io/wAuto" }, + { + "name": "StashTable", + "url": "https://github.com/olliNiinivaara/StashTable", + "method": "git", + "tags": [ + "hash table", + "associative array", + "map", + "dictionary", + "key-value store", + "concurrent", + "multi-threading", + "parallel", + "data structure", + "benchmark" + ], + "description": "Concurrent hash table", + "license": "MIT", + "web": "https://github.com/olliNiinivaara/StashTable", + "doc": "http://htmlpreview.github.io/?https://github.com/olliNiinivaara/StashTable/blob/master/src/stashtable.html" + }, { "name": "dimscord", "url": "https://github.com/krisppurg/dimscord", From c81bf7122947702dbe9d649e83b14996f4158843 Mon Sep 17 00:00:00 2001 From: Sirres Date: Tue, 5 May 2020 06:30:31 +0200 Subject: [PATCH 1265/1381] Added package NimMarc (#1455) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index a78b9ef..8c80834 100644 --- a/packages.json +++ b/packages.json @@ -17677,5 +17677,18 @@ "description": "Wrapper for libclang C headers", "license": "BSD 3-Clause", "web": "https://github.com/samdmarshall/libclang-nim" + }, + { + "name": "NimMarc", + "url": "https://github.com/rsirres/NimMarc", + "method": "git", + "tags": [ + "marc21", + "library", + "parser" + ], + "description": "Marc21 parser for Nimlang", + "license": "MIT", + "web": "https://github.com/rsirres/NimMarc" } ] From a027c388b61f98d01dd3717d357d6633afe7ccf9 Mon Sep 17 00:00:00 2001 From: lihaifeng Date: Tue, 5 May 2020 22:15:03 +0800 Subject: [PATCH 1266/1381] Update packages.json (#1456) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 8c80834..c02e0dd 100644 --- a/packages.json +++ b/packages.json @@ -17690,5 +17690,17 @@ "description": "Marc21 parser for Nimlang", "license": "MIT", "web": "https://github.com/rsirres/NimMarc" + }, + { + "name": "miniblink", + "url": "https://github.com/lihf8515/miniblink", + "method": "git", + "tags": [ + "miniblink", + "nim" + ], + "description": "A miniblink library for nim.", + "license": "MIT", + "web": "https://github.com/lihf8515/miniblink" } ] From dae362cbd25c054aa8fcae977f957707603e1e42 Mon Sep 17 00:00:00 2001 From: jasonlu7 Date: Tue, 5 May 2020 23:40:27 -0500 Subject: [PATCH 1267/1381] Added package pokereval (#1457) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index c02e0dd..0f2b600 100644 --- a/packages.json +++ b/packages.json @@ -17702,5 +17702,16 @@ "description": "A miniblink library for nim.", "license": "MIT", "web": "https://github.com/lihf8515/miniblink" + }, + { + "name": "pokereval", + "url": "https://github.com/jasonlu7/pokereval", + "method": "git", + "tags": [ + "poker" + ], + "description": "A poker hand evaluator", + "license": "MIT", + "web": "https://github.com/jasonlu7/pokereval" } ] From 1629d7a572d3af3f2c89fdc2ef01b0a1b1acf43b Mon Sep 17 00:00:00 2001 From: Joey Date: Wed, 6 May 2020 23:28:42 -0600 Subject: [PATCH 1268/1381] Added package glew (#1458) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 0f2b600..72c028e 100644 --- a/packages.json +++ b/packages.json @@ -17713,5 +17713,19 @@ "description": "A poker hand evaluator", "license": "MIT", "web": "https://github.com/jasonlu7/pokereval" + }, + { + "name": "glew", + "url": "https://github.com/jyapayne/nim-glew", + "method": "git", + "tags": [ + "gl", + "glew", + "opengl", + "wrapper" + ], + "description": "Autogenerated glew bindings for Nim", + "license": "MIT", + "web": "https://github.com/jyapayne/nim-glew" } ] From 52c2bff7d9c376ba080009b0a18688ba2c52ff7c Mon Sep 17 00:00:00 2001 From: Olli Niinivaara Date: Thu, 7 May 2020 12:07:56 +0300 Subject: [PATCH 1269/1381] Add sqliteral (#1459) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 72c028e..6c0d5c4 100644 --- a/packages.json +++ b/packages.json @@ -17727,5 +17727,21 @@ "description": "Autogenerated glew bindings for Nim", "license": "MIT", "web": "https://github.com/jyapayne/nim-glew" + }, + { + "name": "sqliteral", + "url": "https://github.com/olliNiinivaara/SQLiteral", + "method": "git", + "tags": [ + "multi-threading", + "sqlite", + "sql", + "database", + "wal", + "api" + ], + "description": "A high level SQLite API for Nim", + "license": "MIT", + "web": "https://github.com/olliNiinivaara/SQLiteral" } ] From 73fb26e8144e7c9028d6c0f603496581fcc1df9e Mon Sep 17 00:00:00 2001 From: minefuto <46558834+minefuto@users.noreply.github.com> Date: Thu, 7 May 2020 18:41:02 +0900 Subject: [PATCH 1270/1381] Added package dotprov (#1460) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6c0d5c4..63207a0 100644 --- a/packages.json +++ b/packages.json @@ -17728,6 +17728,19 @@ "license": "MIT", "web": "https://github.com/jyapayne/nim-glew" }, + { + "name": "dotprov", + "url": "https://github.com/minefuto/dotprov", + "method": "git", + "tags": [ + "tool", + "binary", + "dotfiles" + ], + "description": "dotfiles provisioning tool", + "license": "MIT", + "web": "https://github.com/minefuto/dotprov" + }, { "name": "sqliteral", "url": "https://github.com/olliNiinivaara/SQLiteral", From 354f254cdcd9914414552c9d39d6778c9039a2ad Mon Sep 17 00:00:00 2001 From: Jack Tang <1190545+jackhftang@users.noreply.github.com> Date: Thu, 7 May 2020 21:08:48 +0800 Subject: [PATCH 1271/1381] add package timestamp (#1462) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 63207a0..9bafd30 100644 --- a/packages.json +++ b/packages.json @@ -17756,5 +17756,17 @@ "description": "A high level SQLite API for Nim", "license": "MIT", "web": "https://github.com/olliNiinivaara/SQLiteral" + }, + { + "name": "timestamp", + "url": "https://github.com/jackhftang/timestamp.nim", + "method": "git", + "tags": [ + "time", + "timestamp" + ], + "description": "An alternative time library", + "license": "MIT", + "web": "https://github.com/jackhftang/timestamp.nim" } ] From c643cd41679344f3d56a4d290fe630719f6e4b37 Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Fri, 8 May 2020 23:24:11 -0500 Subject: [PATCH 1272/1381] Add decimal128 (#1464) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9bafd30..3c3cc6f 100644 --- a/packages.json +++ b/packages.json @@ -17768,5 +17768,19 @@ "description": "An alternative time library", "license": "MIT", "web": "https://github.com/jackhftang/timestamp.nim" + }, + { + "name": "decimal128", + "url": "https://github.com/JohnAD/decimal128", + "method": "git", + "tags": [ + "decimal", + "ieee", + "standard", + "number" + ], + "description": "Decimal type support based on the IEEE 754 2008 specification.", + "license": "MIT", + "web": "https://github.com/JohnAD/decimal128" } ] From 420e1f9d725c2e8dbb5d98c4fa26d83934791006 Mon Sep 17 00:00:00 2001 From: Bung <535670947@qq.com> Date: Sun, 10 May 2020 12:20:14 +0800 Subject: [PATCH 1273/1381] Added package datetime_parse (#1465) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 3c3cc6f..5dc4dee 100644 --- a/packages.json +++ b/packages.json @@ -17782,5 +17782,17 @@ "description": "Decimal type support based on the IEEE 754 2008 specification.", "license": "MIT", "web": "https://github.com/JohnAD/decimal128" + }, + { + "name": "datetime_parse", + "url": "https://github.com/bung87/datetime_parse", + "method": "git", + "tags": [ + "datetime", + "parser" + ], + "description": "parse datetime from various resources", + "license": "MIT", + "web": "https://github.com/bung87/datetime_parse" } ] From aaf069c39c104d53fb46563ba5723f9de8ea9404 Mon Sep 17 00:00:00 2001 From: PMunch Date: Mon, 11 May 2020 07:08:51 +0200 Subject: [PATCH 1274/1381] Add xevloop package (#1466) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 5dc4dee..68cdd78 100644 --- a/packages.json +++ b/packages.json @@ -1416,6 +1416,19 @@ "license": "MIT", "web": "https://github.com/PMunch/ansitohtml" }, + { + "name": "xevloop", + "url": "https://github.com/PMunch/xevloop", + "method": "git", + "tags": [ + "x11", + "library", + "events" + ], + "description": "Library to more easily create X11 event loops", + "license": "MIT", + "web": "https://github.com/PMunch/xevloop" + }, { "name": "sdl2_nim", "url": "https://github.com/Vladar4/sdl2_nim", From ed8437bd10ff26dcb90222e55f31c0cb4b0de5ac Mon Sep 17 00:00:00 2001 From: treeform Date: Sun, 10 May 2020 22:09:16 -0700 Subject: [PATCH 1275/1381] Rename netpipe to netty. (#1467) --- packages.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 68cdd78..74b2f79 100644 --- a/packages.json +++ b/packages.json @@ -13129,15 +13129,19 @@ }, { "name": "netpipe", - "url": "https://github.com/treeform/netpipe/", + "alias": "netty" + }, + { + "name": "netty", + "url": "https://github.com/treeform/netty/", "method": "git", "tags": [ "networking", "udp" ], - "description": "Netpipe is a reliable UDP connection for Nim.", + "description": "Netty is a reliable UDP connection for games.", "license": "MIT", - "web": "https://github.com/treeform/netpipe/" + "web": "https://github.com/treeform/netty/" }, { "name": "fnv", From caffc66fb40d4b2d561c9e7e97e8349b908a74f8 Mon Sep 17 00:00:00 2001 From: Joey Date: Sun, 10 May 2020 23:09:45 -0600 Subject: [PATCH 1276/1381] Added package halonium (#1468) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 74b2f79..7723fa6 100644 --- a/packages.json +++ b/packages.json @@ -17811,5 +17811,20 @@ "description": "parse datetime from various resources", "license": "MIT", "web": "https://github.com/bung87/datetime_parse" + }, + { + "name": "halonium", + "url": "https://github.com/halonium/halonium", + "method": "git", + "tags": [ + "selenium", + "automation", + "web", + "testing", + "test" + ], + "description": "A browser automation library written in Nim", + "license": "MIT", + "web": "https://github.com/halonium/halonium" } ] From 35be775479e62add0dd006813273f7601f981537 Mon Sep 17 00:00:00 2001 From: sealmove <47466000+sealmove@users.noreply.github.com> Date: Mon, 11 May 2020 11:34:45 +0200 Subject: [PATCH 1277/1381] Add package lz77 (#1469) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 7723fa6..25fa2dd 100644 --- a/packages.json +++ b/packages.json @@ -17826,5 +17826,23 @@ "description": "A browser automation library written in Nim", "license": "MIT", "web": "https://github.com/halonium/halonium" + }, + { + "name": "lz77", + "url": "https://github.com/sealmove/LZ77", + "method": "git", + "tags": [ + "library", + "compress", + "decompress", + "encode", + "decode", + "huffman", + "mam", + "prefetch" + ], + "description": "Implementation of various LZ77 algorithms", + "license": "MIT", + "web": "https://github.com/sealmove/LZ77" } ] From 5bd5b41ab2f0da8b32b3ed423ea6b5271a974055 Mon Sep 17 00:00:00 2001 From: Reilly Moore <54759062+Knaque@users.noreply.github.com> Date: Tue, 12 May 2020 00:03:43 -0500 Subject: [PATCH 1278/1381] Added package stalinsort (#1471) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 25fa2dd..8ee796b 100644 --- a/packages.json +++ b/packages.json @@ -17844,5 +17844,17 @@ "description": "Implementation of various LZ77 algorithms", "license": "MIT", "web": "https://github.com/sealmove/LZ77" + }, + { + "name": "stalinsort", + "url": "https://github.com/Knaque/stalinsort", + "method": "git", + "tags": [ + "algorithm", + "sort" + ], + "description": "A Nim implementation of the Stalin Sort algorithm.", + "license": "CC0-1.0", + "web": "https://github.com/Knaque/stalinsort" } ] From 81f89833d1db788318dab3bae4f88db569b90e11 Mon Sep 17 00:00:00 2001 From: Bung <535670947@qq.com> Date: Thu, 14 May 2020 15:15:45 +0800 Subject: [PATCH 1279/1381] Added package finder (#1472) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 8ee796b..403a762 100644 --- a/packages.json +++ b/packages.json @@ -17856,5 +17856,19 @@ "description": "A Nim implementation of the Stalin Sort algorithm.", "license": "CC0-1.0", "web": "https://github.com/Knaque/stalinsort" + }, + { + "name": "finder", + "url": "https://github.com/bung87/finder", + "method": "git", + "tags": [ + "finder", + "fs", + "zip", + "memory" + ], + "description": "fs memory zip finder implement in Nim", + "license": "MIT", + "web": "https://github.com/bung87/finder" } ] From aa1be878bad103464cef3d9579e6ecb9c4a5580d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=B8is=C3=A6ther=20Rasch?= Date: Sat, 16 May 2020 12:24:49 +0200 Subject: [PATCH 1280/1381] Change couven92 to fredrikhr --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 403a762..9112838 100644 --- a/packages.json +++ b/packages.json @@ -15898,7 +15898,7 @@ }, { "name": "importc_helpers", - "url": "https://github.com/couven92/nim-importc-helpers.git", + "url": "https://github.com/fredrikhr/nim-importc-helpers.git", "method": "git", "tags": [ "import", @@ -15907,7 +15907,7 @@ ], "description": "Helpers for supporting and simplifying import of symbols from C into Nim", "license": "MIT", - "web": "https://github.com/couven92/nim-importc-helpers" + "web": "https://github.com/fredrikhr/nim-importc-helpers" }, { "name": "taps", From 8efee5dc2215cd7714763d7a889b332f41c8979f Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 16 May 2020 22:32:46 +0800 Subject: [PATCH 1281/1381] Added package bio (#1474) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 9112838..bdf7895 100644 --- a/packages.json +++ b/packages.json @@ -17870,5 +17870,17 @@ "description": "fs memory zip finder implement in Nim", "license": "MIT", "web": "https://github.com/bung87/finder" + }, + { + "name": "bio", + "url": "https://github.com/xzeshen/bio", + "method": "git", + "tags": [ + "streams", + "endians" + ], + "description": "Bytes utils for Nim.", + "license": "Apache-2.0", + "web": "https://github.com/xzeshen/bio" } ] From b28b8892e139d91bd7466ca59188993587fc7fab Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 16 May 2020 23:58:36 +0800 Subject: [PATCH 1282/1381] Added package huffman (#1475) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index bdf7895..4fe5e8e 100644 --- a/packages.json +++ b/packages.json @@ -17871,6 +17871,19 @@ "license": "MIT", "web": "https://github.com/bung87/finder" }, + { + "name": "huffman", + "url": "https://github.com/xzeshen/huffman", + "method": "git", + "tags": [ + "huffman", + "encode", + "decode" + ], + "description": "Huffman encode/decode for Nim.", + "license": "Apache-2.0", + "web": "https://github.com/xzeshen/huffman" + }, { "name": "bio", "url": "https://github.com/xzeshen/bio", From 0b0f158ecd7067c132377cb3c1194f5fe6ba590b Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Sun, 17 May 2020 03:25:39 -0700 Subject: [PATCH 1283/1381] Add fusion package (#1476) * Add fusion package * fixup --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 4fe5e8e..49429be 100644 --- a/packages.json +++ b/packages.json @@ -17884,6 +17884,17 @@ "license": "Apache-2.0", "web": "https://github.com/xzeshen/huffman" }, + { + "name": "fusion", + "url": "https://github.com/nim-lang/fusion", + "method": "git", + "tags": [ + "distribution" + ], + "description": "Nim's official stdlib extension", + "license": "MIT", + "web": "https://github.com/nim-lang/fusion" + }, { "name": "bio", "url": "https://github.com/xzeshen/bio", From b5154aa8301be5e1aa8624a6d69630178f422f62 Mon Sep 17 00:00:00 2001 From: Solitude Date: Sun, 17 May 2020 22:40:34 +0300 Subject: [PATCH 1284/1381] Added package notification (#1478) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 49429be..b021fbf 100644 --- a/packages.json +++ b/packages.json @@ -17906,5 +17906,18 @@ "description": "Bytes utils for Nim.", "license": "Apache-2.0", "web": "https://github.com/xzeshen/bio" + }, + { + "name": "notification", + "url": "https://github.com/SolitudeSF/notification", + "method": "git", + "tags": [ + "notifications", + "desktop", + "dbus" + ], + "description": "Desktop notifications", + "license": "MIT", + "web": "https://github.com/SolitudeSF/notification" } ] From d964b6804102721d71b91fbccf022be5661abc35 Mon Sep 17 00:00:00 2001 From: al-bimani <36548109+al-bimani@users.noreply.github.com> Date: Mon, 18 May 2020 08:41:35 +0400 Subject: [PATCH 1285/1381] Added package eventemitter (#1481) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index b021fbf..90fad3a 100644 --- a/packages.json +++ b/packages.json @@ -17919,5 +17919,19 @@ "description": "Desktop notifications", "license": "MIT", "web": "https://github.com/SolitudeSF/notification" + }, + { + "name": "eventemitter", + "url": "https://github.com/al-bimani/eventemitter", + "method": "git", + "tags": [ + "eventemitter", + "events", + "on", + "emit" + ], + "description": "event emitter for nim", + "license": "MIT", + "web": "https://github.com/al-bimani/eventemitter" } ] From 7439ae73ee2f74a1e17151c81d40a1e30ff7c558 Mon Sep 17 00:00:00 2001 From: Bung <535670947@qq.com> Date: Mon, 18 May 2020 13:09:26 +0800 Subject: [PATCH 1286/1381] Added package buffer (#1479) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 90fad3a..1a8991e 100644 --- a/packages.json +++ b/packages.json @@ -17907,6 +17907,18 @@ "license": "Apache-2.0", "web": "https://github.com/xzeshen/bio" }, + { + "name": "buffer", + "url": "https://github.com/bung87/buffer", + "method": "git", + "tags": [ + "stream", + "buffer" + ], + "description": "buffer", + "license": "MIT", + "web": "https://github.com/bung87/buffer" + }, { "name": "notification", "url": "https://github.com/SolitudeSF/notification", From ccd4c351a0de0315cc31b0001ef7aa8cac2000b1 Mon Sep 17 00:00:00 2001 From: kixixixixi Date: Wed, 20 May 2020 00:18:05 +0900 Subject: [PATCH 1287/1381] Added package camelize (#1482) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 1a8991e..102ed16 100644 --- a/packages.json +++ b/packages.json @@ -17945,5 +17945,17 @@ "description": "event emitter for nim", "license": "MIT", "web": "https://github.com/al-bimani/eventemitter" + }, + { + "name": "camelize", + "url": "https://github.com/kixixixixi/camelize", + "method": "git", + "tags": [ + "json", + "camelcase" + ], + "description": "Convert json node to camelcase", + "license": "MIT", + "web": "https://github.com/kixixixixi/camelize" } ] From 2daaa508d2abd01c6f92f615c83888f83b22c3c4 Mon Sep 17 00:00:00 2001 From: jiro Date: Thu, 21 May 2020 23:15:38 +0900 Subject: [PATCH 1288/1381] Add package nmi (#1483) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 102ed16..ad8198f 100644 --- a/packages.json +++ b/packages.json @@ -17957,5 +17957,18 @@ "description": "Convert json node to camelcase", "license": "MIT", "web": "https://github.com/kixixixixi/camelize" + }, + { + "name": "nmi", + "url": "https://github.com/jiro4989/nmi", + "method": "git", + "tags": [ + "sl", + "joke", + "cli" + ], + "description": "nmi display animations aimed to correct users who accidentally enter nmi instead of nim.", + "license": "MIT", + "web": "https://github.com/jiro4989/nmi" } ] From f1105cad7b7246a669e238c73bc5d1d1b2c4bbed Mon Sep 17 00:00:00 2001 From: loloicci Date: Fri, 22 May 2020 16:31:52 +0900 Subject: [PATCH 1289/1381] change nimly license info (#1484) --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index ad8198f..48914d5 100644 --- a/packages.json +++ b/packages.json @@ -13375,9 +13375,9 @@ "BNF", "EBNF" ], - "description": "Lexer Generator and Parser Generator as a library in Nim.", - "license": "GPL-3.0", - "web": "https://github.com/loloiccl/nimly" + "description": "Lexer Generator and Parser Generator as a Macro Library in Nim.", + "license": "MIT", + "web": "https://github.com/loloicci/nimly" }, { "name": "fswatch", From 18d0f3320b1869b19aae098baedcf9b4b17ca819 Mon Sep 17 00:00:00 2001 From: jiro4989 Date: Fri, 22 May 2020 23:56:29 +0000 Subject: [PATCH 1290/1381] Added package markx --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 48914d5..29895e6 100644 --- a/packages.json +++ b/packages.json @@ -17970,5 +17970,19 @@ "description": "nmi display animations aimed to correct users who accidentally enter nmi instead of nim.", "license": "MIT", "web": "https://github.com/jiro4989/nmi" + }, + { + "name": "markx", + "url": "https://github.com/jiro4989/markx", + "method": "git", + "tags": [ + "exec", + "command", + "cli", + "vi" + ], + "description": "markx selects execution targets with editor and executes commands.", + "license": "MIT", + "web": "https://github.com/jiro4989/markx" } ] From 461f02628bfa60ff826add14755a523f72212f95 Mon Sep 17 00:00:00 2001 From: Max Grender-Jones Date: Mon, 25 May 2020 00:42:33 +0100 Subject: [PATCH 1291/1381] Added package therapist --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 48914d5..a5302c9 100644 --- a/packages.json +++ b/packages.json @@ -17970,5 +17970,17 @@ "description": "nmi display animations aimed to correct users who accidentally enter nmi instead of nim.", "license": "MIT", "web": "https://github.com/jiro4989/nmi" + }, + { + "name": "therapist", + "url": "https://bitbucket.org/maxgrenderjones/therapist", + "method": "git", + "tags": [ + "argparse", + "library" + ], + "description": "Type-safe commandline parsing with minimal magic", + "license": "MIT", + "web": "https://bitbucket.org/maxgrenderjones/therapist" } ] From e39ae88524d8d6eafef4a457b651817dcb5d306e Mon Sep 17 00:00:00 2001 From: SakiKawasaki Date: Mon, 25 May 2020 10:34:11 +0700 Subject: [PATCH 1292/1381] Added package nodesnim --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 48914d5..bf44811 100644 --- a/packages.json +++ b/packages.json @@ -17970,5 +17970,20 @@ "description": "nmi display animations aimed to correct users who accidentally enter nmi instead of nim.", "license": "MIT", "web": "https://github.com/jiro4989/nmi" + }, + { + "name": "nodesnim", + "url": "https://github.com/Ethosa/nodesnim", + "method": "git", + "tags": [ + "GUI", + "2D", + "framework", + "OpenGL", + "SDL2" + ], + "description": "The Nim GUI/2D framework based on OpenGL and SDL2.", + "license": "MIT", + "web": "https://github.com/Ethosa/nodesnim" } ] From 7ce504a28702708b5d824d6ae7c9b328dac2fd0f Mon Sep 17 00:00:00 2001 From: Danil Yarantsev <21169548+Yardanico@users.noreply.github.com> Date: Tue, 26 May 2020 11:55:22 +0300 Subject: [PATCH 1293/1381] Added package telenim (#1490) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index 7c74f45..0991756 100644 --- a/packages.json +++ b/packages.json @@ -18011,5 +18011,23 @@ "description": "The Nim GUI/2D framework based on OpenGL and SDL2.", "license": "MIT", "web": "https://github.com/Ethosa/nodesnim" + }, + { + "name": "telenim", + "url": "https://github.com/Yardanico/telenim", + "method": "git", + "tags": [ + "telegram", + "tdlib", + "bot", + "api", + "async", + "client", + "userbot", + "telenim" + ], + "description": "A high-level async TDLib wrapper for Nim", + "license": "MIT", + "web": "https://github.com/Yardanico/telenim" } ] From 170c4c32b57ede2fecc251d83d9d51d22ec64212 Mon Sep 17 00:00:00 2001 From: Jack Tang <1190545+jackhftang@users.noreply.github.com> Date: Tue, 26 May 2020 19:47:47 +0800 Subject: [PATCH 1294/1381] add package taskqueue and threadproxy (#1487) * add package taskqueue and threadproxy add doc of one of my package * Remove style changes Co-authored-by: Jack Tang Co-authored-by: Clyybber --- packages.json | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0991756..437ab90 100644 --- a/packages.json +++ b/packages.json @@ -17784,7 +17784,8 @@ ], "description": "An alternative time library", "license": "MIT", - "web": "https://github.com/jackhftang/timestamp.nim" + "web": "https://github.com/jackhftang/timestamp.nim", + "doc": "https://jackhftang.github.io/timestamp.nim/" }, { "name": "decimal128", @@ -18029,5 +18030,35 @@ "description": "A high-level async TDLib wrapper for Nim", "license": "MIT", "web": "https://github.com/Yardanico/telenim" + }, + { + "name": "taskqueue", + "url": "https://github.com/jackhftang/taskqueue.nim", + "method": "git", + "tags": [ + "task", + "scheduler", + "timer" + ], + "description": "High precision and high performance task scheduler ", + "license": "MIT", + "web": "https://github.com/jackhftang/taskqueue.nim", + "doc": "https://jackhftang.github.io/taskqueue.nim/" + }, + { + "name": "threadproxy", + "url": "https://github.com/jackhftang/threadproxy.nim", + "method": "git", + "tags": [ + "thread", + "ITC", + "communication", + "multithreading", + "threading" + ], + "description": "Simplify Nim Inter-Thread Communication", + "license": "MIT", + "web": "https://github.com/jackhftang/threadproxy.nim", + "doc": "https://jackhftang.github.io/threadproxy.nim/" } ] From 32f29c0f1e6d1aeec73282ba425622203f1611e4 Mon Sep 17 00:00:00 2001 From: treeform Date: Fri, 29 May 2020 10:03:59 -0700 Subject: [PATCH 1295/1381] Rename euphony to slappy. (#1492) --- packages.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 437ab90..16e43d8 100644 --- a/packages.json +++ b/packages.json @@ -16400,7 +16400,11 @@ }, { "name": "euphony", - "url": "https://github.com/treeform/euphony", + "alias": "slappy" + }, + { + "name": "slappy", + "url": "https://github.com/treeform/slappy", "method": "git", "tags": [ "sound", @@ -16408,7 +16412,7 @@ ], "description": "A 3d sound API for nim.", "license": "MIT", - "web": "https://github.com/treeform/euphony" + "web": "https://github.com/treeform/slappy" }, { "name": "steamworks", From 8571185f6b25f63acb3f74b6d9de452624a8f058 Mon Sep 17 00:00:00 2001 From: Danil Yarantsev <21169548+Yardanico@users.noreply.github.com> Date: Fri, 29 May 2020 22:48:56 +0300 Subject: [PATCH 1296/1381] Take over Spinny (#1493) --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 16e43d8..40d62c7 100644 --- a/packages.json +++ b/packages.json @@ -7774,7 +7774,7 @@ }, { "name": "spinny", - "url": "https://github.com/molnarmark/spinny", + "url": "https://github.com/Yardanico/spinny", "method": "git", "tags": [ "terminal", @@ -7784,7 +7784,7 @@ ], "description": "Spinny is a tiny terminal spinner package for the Nim Programming Language.", "license": "MIT", - "web": "https://github.com/molnarmark/spinny" + "web": "https://github.com/Yardanico/spinny" }, { "name": "nigui", From 91c784f345bfa7f74b747c46f1e6b72a9f1ed7e9 Mon Sep 17 00:00:00 2001 From: Solitude Date: Sat, 30 May 2020 03:19:05 +0300 Subject: [PATCH 1297/1381] add tam package (#1494) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 40d62c7..54bf0f1 100644 --- a/packages.json +++ b/packages.json @@ -18064,5 +18064,18 @@ "license": "MIT", "web": "https://github.com/jackhftang/threadproxy.nim", "doc": "https://jackhftang.github.io/threadproxy.nim/" + }, + { + "name": "tam", + "url": "https://github.com/SolitudeSF/tam", + "method": "git", + "tags": [ + "tome", + "addon", + "manager" + ], + "description": "Tales of Maj'Eyal addon manager", + "license": "MIT", + "web": "https://github.com/SolitudeSF/tam" } ] From b82f98ddf1d67a0c24eefc883676b72d74854fa9 Mon Sep 17 00:00:00 2001 From: Miran Date: Mon, 1 Jun 2020 14:28:28 +0200 Subject: [PATCH 1298/1381] add multiple packages (#1500) --- packages.json | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) diff --git a/packages.json b/packages.json index 54bf0f1..d2fb644 100644 --- a/packages.json +++ b/packages.json @@ -18065,6 +18065,89 @@ "web": "https://github.com/jackhftang/threadproxy.nim", "doc": "https://jackhftang.github.io/threadproxy.nim/" }, + { + "name": "jesterwithplugins", + "url": "https://github.com/JohnAD/jesterwithplugins/", + "method": "git", + "tags": [ + "web", + "http", + "framework", + "dsl", + "plugins" + ], + "description": "A sinatra-like web framework for Nim with plugins.", + "license": "MIT", + "web": "https://github.com/JohnAD/jesterwithplugins/" + }, + { + "name": "qeu", + "url": "https://github.com/hyu1996/qeu", + "method": "git", + "tags": [ + "comparison", + "3-way comparison", + "three-way comparison" + ], + "description": "Functionality for compare two values", + "license": "MIT", + "web": "https://github.com/hyu1996/qeu" + }, + { + "name": "mccache", + "url": "https://github.com/abbeymart/mccache", + "method": "git", + "tags": [ + "web", + "library" + ], + "description": "mccache package: in-memory caching", + "license": "MIT", + "web": "https://github.com/abbeymart/mccache" + }, + { + "name": "mcresponse", + "url": "https://github.com/abbeymart/mcresponse", + "method": "git", + "tags": [ + "web", + "crud", + "rest", + "api", + "response" + ], + "description": "mConnect Standardised Response Package", + "license": "MIT", + "web": "https://github.com/abbeymart/mcresponse" + }, + { + "name": "webrtcvad", + "url": "https://gitlab.com/eagledot/nim-webrtcvad", + "method": "git", + "tags":[ + "wrapper", + "vad", + "voice", + "binding" + ], + "description": "Nim bindings for the WEBRTC VAD(voice actitvity Detection)", + "license": "MIT", + "web": "https://gitlab.com/eagledot/nim-webrtcvad" + }, + { + "name": "gradient", + "url": "https://github.com/luminosoda/gradient", + "method": "git", + "tags": [ + "gradient", + "gradients", + "color", + "colors" + ], + "description": "Color gradients generation", + "license": "MIT", + "web": "https://github.com/luminosoda/gradient" + }, { "name": "tam", "url": "https://github.com/SolitudeSF/tam", From c559d1972f28cb81701514420ce6777c91ce2ba2 Mon Sep 17 00:00:00 2001 From: Bung Date: Tue, 2 Jun 2020 14:51:21 +0800 Subject: [PATCH 1299/1381] Added package tim_sort (#1501) --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d2fb644..1810697 100644 --- a/packages.json +++ b/packages.json @@ -18124,7 +18124,7 @@ "name": "webrtcvad", "url": "https://gitlab.com/eagledot/nim-webrtcvad", "method": "git", - "tags":[ + "tags": [ "wrapper", "vad", "voice", @@ -18160,5 +18160,18 @@ "description": "Tales of Maj'Eyal addon manager", "license": "MIT", "web": "https://github.com/SolitudeSF/tam" + }, + { + "name": "tim_sort", + "url": "https://github.com/bung87/tim_sort", + "method": "git", + "tags": [ + "tim", + "sort", + "algorithm" + ], + "description": "A new awesome nimble package", + "license": "MIT", + "web": "https://github.com/bung87/tim_sort" } ] From aa637b362316b851426cd868e18d57f095cd59d4 Mon Sep 17 00:00:00 2001 From: Regis Caillaud <35006197+Clonkk@users.noreply.github.com> Date: Fri, 5 Jun 2020 12:54:44 +0200 Subject: [PATCH 1300/1381] Change fftw package to new repo with arraymancer API (#1502) --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 1810697..90900c2 100644 --- a/packages.json +++ b/packages.json @@ -2898,7 +2898,7 @@ }, { "name": "fftw3", - "url": "https://github.com/ziotom78/nimfftw3", + "url": "https://github.com/Clonkk/nimfftw3", "method": "git", "tags": [ "library", @@ -2906,8 +2906,8 @@ "fft" ], "description": "Bindings to the FFTW library", - "license": "MIT", - "web": "https://github.com/ziotom78/nimfftw3" + "license": "LGPL", + "web": "https://github.com/Clonkk/nimfftw3" }, { "name": "nrpl", From 4004026426141aecb21db796f26216b39818bba6 Mon Sep 17 00:00:00 2001 From: Liam Sc Date: Mon, 8 Jun 2020 05:04:34 +1200 Subject: [PATCH 1301/1381] Update packages.json (#1503) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 90900c2..d9936f6 100644 --- a/packages.json +++ b/packages.json @@ -18173,5 +18173,21 @@ "description": "A new awesome nimble package", "license": "MIT", "web": "https://github.com/bung87/tim_sort" + }, + { + "name": "inumon", + "url": "https://github.com/dizzyliam/inumon", + "method": "git", + "tags": [ + "image", + "images", + "png", + "image manipulation", + "jpeg", + "jpg" + ], + "description": "A high-level image I/O and manipulation library for Nim.", + "license": "MPL 2.0", + "web": "https://github.com/dizzyliam/inumon" } ] From 403b6d92663cc723ae262e7185b68a6812857662 Mon Sep 17 00:00:00 2001 From: Willyboar Date: Mon, 8 Jun 2020 08:41:26 +0300 Subject: [PATCH 1302/1381] Remove empty tag from simplediff (#1504) Remove empty tag because it looks ugly in the nimble directory :) --- packages.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages.json b/packages.json index d9936f6..117d67e 100644 --- a/packages.json +++ b/packages.json @@ -14857,8 +14857,7 @@ "method": "git", "tags": [ "diff", - "simplediff", - "" + "simplediff" ], "description": "A library for straightforward diff calculation", "license": "GPL-3.0", From 406d9051c4a11c63ccaf4aabc105047ea2a0c551 Mon Sep 17 00:00:00 2001 From: Jack Tang <1190545+jackhftang@users.noreply.github.com> Date: Tue, 9 Jun 2020 05:27:10 +0800 Subject: [PATCH 1303/1381] add package vaultclient (#1505) --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 117d67e..348691f 100644 --- a/packages.json +++ b/packages.json @@ -18188,5 +18188,18 @@ "description": "A high-level image I/O and manipulation library for Nim.", "license": "MPL 2.0", "web": "https://github.com/dizzyliam/inumon" + }, + { + "name": "vaultclient", + "url": "https://github.com/jackhftang/vaultclient.nim", + "method": "git", + "tags": [ + "vault", + "secret", + "secret-management" + ], + "description": "Hashicorp Vault HTTP Client", + "license": "MIT", + "web": "https://github.com/jackhftang/vaultclient.nim" } -] +] \ No newline at end of file From 61e1e1ad78414e1893102eb82e9698c02d7f35e3 Mon Sep 17 00:00:00 2001 From: Ward Date: Tue, 9 Jun 2020 15:52:14 +0800 Subject: [PATCH 1304/1381] Update packages.json (#1506) --- packages.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 348691f..da57cbc 100644 --- a/packages.json +++ b/packages.json @@ -18201,5 +18201,18 @@ "description": "Hashicorp Vault HTTP Client", "license": "MIT", "web": "https://github.com/jackhftang/vaultclient.nim" + }, + { + "name": "hashlib", + "url": "https://github.com/khchen/hashlib", + "method": "git", + "tags": [ + "library", + "hashes", + "hmac" + ], + "description": "Hash Library for Nim", + "license": "MIT", + "web": "https://github.com/khchen/hashlib" } -] \ No newline at end of file +] From 1d755b0dd772bad5a620df36d1f774420e9e0e84 Mon Sep 17 00:00:00 2001 From: Anubhav <42858179+eagledot@users.noreply.github.com> Date: Tue, 9 Jun 2020 15:11:17 +0530 Subject: [PATCH 1305/1381] Add package alsa (#1507) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index da57cbc..cefdada 100644 --- a/packages.json +++ b/packages.json @@ -18214,5 +18214,21 @@ "description": "Hash Library for Nim", "license": "MIT", "web": "https://github.com/khchen/hashlib" + }, + { + "name":"alsa", + "url": "https://gitlab.com/eagledot/nim-alsa", + "method": "git", + "tags":[ + "linux", + "bindings", + "audio", + "alsa", + "sound" + ], + "description": "NIM bindings for ALSA-LIB c library", + "license": "MIT", + "web": "https://gitlab.com/eagledot/nim-alsa" } + ] From 6b30b51846332fce29fa5934d5886b8fab0655da Mon Sep 17 00:00:00 2001 From: Chloe Kudryavtsev Date: Tue, 9 Jun 2020 08:46:48 -0400 Subject: [PATCH 1306/1381] update pipe package metadata (#1508) specifically: 1. username changed 2. relicensed (MIT -> Unlicense) --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index cefdada..e4d0e52 100644 --- a/packages.json +++ b/packages.json @@ -7658,7 +7658,7 @@ }, { "name": "pipe", - "url": "https://github.com/5paceToast/pipe", + "url": "https://github.com/CosmicToast/pipe", "method": "git", "tags": [ "pipe", @@ -7667,8 +7667,8 @@ "functional" ], "description": "Pipe operator for nim.", - "license": "MIT", - "web": "https://github.com/5paceToast/pipe" + "license": "Unlicense", + "web": "https://github.com/CosmicToast/pipe" }, { "name": "flatdb", From aa02b5180483f9c8cfb5c688b3ce97fe9f272009 Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Wed, 10 Jun 2020 14:00:50 +0700 Subject: [PATCH 1307/1381] Added package vmprotect (#1509) --- packages.json | 38 +++++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/packages.json b/packages.json index e4d0e52..fb837ff 100644 --- a/packages.json +++ b/packages.json @@ -18216,19 +18216,31 @@ "web": "https://github.com/khchen/hashlib" }, { - "name":"alsa", - "url": "https://gitlab.com/eagledot/nim-alsa", - "method": "git", - "tags":[ - "linux", - "bindings", - "audio", - "alsa", - "sound" + "name": "alsa", + "url": "https://gitlab.com/eagledot/nim-alsa", + "method": "git", + "tags": [ + "linux", + "bindings", + "audio", + "alsa", + "sound" ], - "description": "NIM bindings for ALSA-LIB c library", - "license": "MIT", - "web": "https://gitlab.com/eagledot/nim-alsa" + "description": "NIM bindings for ALSA-LIB c library", + "license": "MIT", + "web": "https://gitlab.com/eagledot/nim-alsa" + }, + { + "name": "vmprotect", + "url": "https://github.com/ba0f3/vmprotect.nim", + "method": "git", + "tags": [ + "vmprotect", + "sdk", + "wrapper" + ], + "description": "Wrapper for VMProtect SDK", + "license": "MIT", + "web": "https://github.com/ba0f3/vmprotect.nim" } - ] From 26c565154108fbdc59a9eba4d351357b21338b8e Mon Sep 17 00:00:00 2001 From: Carlo Capocasa Date: Fri, 12 Jun 2020 15:41:13 +0200 Subject: [PATCH 1308/1381] add naw (#1512) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index fb837ff..253bcc9 100644 --- a/packages.json +++ b/packages.json @@ -18242,5 +18242,19 @@ "description": "Wrapper for VMProtect SDK", "license": "MIT", "web": "https://github.com/ba0f3/vmprotect.nim" + }, + { + "name": "naw", + "url": "https://github.com/capocasa/naw", + "method": "git", + "tags": [ + "awk", + "csv", + "report", + "markdown" + ], + "description": "A glue wrapper to do awk-style text processing with Nim", + "license": "MIT", + "web": "https://github.com/capocasa/naw" } ] From 7b7745a0d809166a71ccd0b46c5ec5e3ddd783be Mon Sep 17 00:00:00 2001 From: Clyybber Date: Thu, 7 May 2020 10:33:59 +0200 Subject: [PATCH 1309/1381] Make packages.json use the union merge strategy Sadly, github doesn't support this (yet), so this will not affect merges via the Github WebUI. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3efd012 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +/packages.json merge=union From be8d4490f1317fc94e041538608e2c8eb9b97df9 Mon Sep 17 00:00:00 2001 From: Momiyama <43488453+momeemt@users.noreply.github.com> Date: Sat, 13 Jun 2020 20:35:40 +0900 Subject: [PATCH 1310/1381] Added package nimaterial (#1511) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 253bcc9..8fbc3f7 100644 --- a/packages.json +++ b/packages.json @@ -18243,6 +18243,19 @@ "license": "MIT", "web": "https://github.com/ba0f3/vmprotect.nim" }, + { + "name": "nimaterial", + "url": "https://github.com/momeemt/nimaterial", + "method": "git", + "tags": [ + "web", + "library", + "css" + ], + "description": "nimaterial is a CSS output library based on material design.", + "license": "MIT", + "web": "https://github.com/momeemt/nimaterial" + }, { "name": "naw", "url": "https://github.com/capocasa/naw", From 18683df0ecd07d8043f93e22880d896b8379f72e Mon Sep 17 00:00:00 2001 From: Rekihyt Date: Sat, 13 Jun 2020 04:42:52 -0700 Subject: [PATCH 1311/1381] Added package nimviz (#1514) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8fbc3f7..0293440 100644 --- a/packages.json +++ b/packages.json @@ -18269,5 +18269,18 @@ "description": "A glue wrapper to do awk-style text processing with Nim", "license": "MIT", "web": "https://github.com/capocasa/naw" + }, + { + "name": "nimviz", + "url": "https://github.com/Rekihyt/nimviz", + "method": "git", + "tags": [ + "graphviz", + "library", + "wrapper" + ], + "description": "A wrapper for the graphviz c api.", + "license": "MIT", + "web": "https://github.com/Rekihyt/nimviz" } ] From 495f1d2c9290ce9dc7e79ce2ac49b2e087c15d03 Mon Sep 17 00:00:00 2001 From: John Dupuy Date: Tue, 16 Jun 2020 01:46:35 -0500 Subject: [PATCH 1312/1381] Added packages jesterjson,jestercookiemsgs,jestermongopool,jestergeoip (#1516) --- packages.json | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/packages.json b/packages.json index 0293440..91be5e1 100644 --- a/packages.json +++ b/packages.json @@ -18079,6 +18079,69 @@ "license": "MIT", "web": "https://github.com/JohnAD/jesterwithplugins/" }, + { + "name": "jesterjson", + "url": "https://github.com/JohnAD/jesterjson", + "method": "git", + "tags": [ + "web", + "jester", + "json", + "plugin" + ], + "description": "A Jester web plugin that embeds key information into a JSON object.", + "license": "MIT", + "web": "https://github.com/JohnAD/jesterjson" + }, + { + "name": "jestercookiemsgs", + "url": "https://github.com/JohnAD/jestercookiemsgs", + "method": "git", + "tags": [ + "web", + "jester", + "cookie", + "message", + "notify", + "notification", + "plugin" + ], + "description": "A Jester web plugin that allows easy message passing between pages using a browser cookie.", + "license": "MIT", + "web": "https://github.com/JohnAD/jestercookiemsgs" + }, + { + "name": "jestermongopool", + "url": "https://github.com/JohnAD/jestermongopool", + "method": "git", + "tags": [ + "web", + "jester", + "mongodb", + "pooled", + "plugin" + ], + "description": "A Jester web plugin that gets a pooled MongoDB connection for each web query.", + "license": "MIT", + "web": "https://github.com/JohnAD/jestermongopool" + }, + { + "name": "jestergeoip", + "url": "https://github.com/JohnAD/jestergeoip", + "method": "git", + "tags": [ + "web", + "jester", + "ip", + "geo", + "geographic", + "tracker", + "plugin" + ], + "description": "A Jester web plugin that determines geographic information for each web request via API. Uses sqlite3 for a cache.", + "license": "MIT", + "web": "https://github.com/JohnAD/jestergeoip" + }, { "name": "qeu", "url": "https://github.com/hyu1996/qeu", From d6e930b9aa7db7b0a8e871d949e91a88dd3712ec Mon Sep 17 00:00:00 2001 From: Anubhav <42858179+eagledot@users.noreply.github.com> Date: Wed, 17 Jun 2020 11:11:37 +0530 Subject: [PATCH 1313/1381] Added package deepspeech (#1518) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 91be5e1..133595c 100644 --- a/packages.json +++ b/packages.json @@ -18345,5 +18345,19 @@ "description": "A wrapper for the graphviz c api.", "license": "MIT", "web": "https://github.com/Rekihyt/nimviz" + }, + { + "name": "deepspeech", + "url": "https://gitlab.com/eagledot/nim-deepspeech", + "method": "git", + "tags": [ + "mozilla", + "deepspeech", + "speech to text", + "bindings" + ], + "description": "Nim bindings for mozilla's DeepSpeech model.", + "license": "MIT", + "web": "https://gitlab.com/eagledot/nim-deepspeech" } ] From e0ae598090b1c49d25de450b0061c530b4b48da9 Mon Sep 17 00:00:00 2001 From: Miran Date: Wed, 17 Jun 2020 17:53:53 +0200 Subject: [PATCH 1314/1381] disruptek is now maintaining criterion (#1519) --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 133595c..cfb2573 100644 --- a/packages.json +++ b/packages.json @@ -11367,14 +11367,14 @@ }, { "name": "criterion", - "url": "https://github.com/LemonBoy/criterion.nim", + "url": "https://github.com/disruptek/criterion.nim", "method": "git", "tags": [ "benchmark" ], "description": "Statistic-driven microbenchmark framework", "license": "MIT", - "web": "https://github.com/LemonBoy/criterion.nim" + "web": "https://github.com/disruptek/criterion.nim" }, { "name": "nanoid", From b64d98e40faabce5f1b3372204b9760cd1c9952a Mon Sep 17 00:00:00 2001 From: ehmry Date: Thu, 18 Jun 2020 01:33:49 +0530 Subject: [PATCH 1315/1381] Added package opusenc (#1520) --- packages.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index cfb2573..0f05f82 100644 --- a/packages.json +++ b/packages.json @@ -18349,15 +18349,29 @@ { "name": "deepspeech", "url": "https://gitlab.com/eagledot/nim-deepspeech", - "method": "git", + "method": "git", "tags": [ "mozilla", "deepspeech", "speech to text", "bindings" - ], + ], "description": "Nim bindings for mozilla's DeepSpeech model.", "license": "MIT", "web": "https://gitlab.com/eagledot/nim-deepspeech" + }, + { + "name": "opusenc", + "url": "https://git.sr.ht/~ehmry/nim_opusenc", + "method": "git", + "tags": [ + "opus", + "audio", + "encoder", + "bindings" + ], + "description": "Bindings to libopusenc", + "license": "BSD-3-Clause", + "web": "https://git.sr.ht/~ehmry/nim_opusenc" } ] From 8585e916692c3ba3c6b11f5150a98e9caf510584 Mon Sep 17 00:00:00 2001 From: jiro Date: Thu, 18 Jun 2020 22:33:44 +0900 Subject: [PATCH 1316/1381] Added package nimtetris (#1521) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 0f05f82..1ff202d 100644 --- a/packages.json +++ b/packages.json @@ -18373,5 +18373,19 @@ "description": "Bindings to libopusenc", "license": "BSD-3-Clause", "web": "https://git.sr.ht/~ehmry/nim_opusenc" + }, + { + "name": "nimtetris", + "url": "https://github.com/jiro4989/nimtetris", + "method": "git", + "tags": [ + "tetris", + "terminal", + "game", + "command" + ], + "description": "A simple terminal tetris in Nim", + "license": "MIT", + "web": "https://github.com/jiro4989/nimtetris" } ] From a5b960667b5d8a8f609754cb55afbae1f2cb7179 Mon Sep 17 00:00:00 2001 From: gecko Date: Sat, 20 Jun 2020 09:22:48 +0100 Subject: [PATCH 1317/1381] Add package natu (#1522) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 1ff202d..79cb877 100644 --- a/packages.json +++ b/packages.json @@ -18387,5 +18387,19 @@ "description": "A simple terminal tetris in Nim", "license": "MIT", "web": "https://github.com/jiro4989/nimtetris" + }, + { + "name": "natu", + "url": "https://github.com/exelotl/natu", + "method": "git", + "tags": [ + "gba", + "nintendo", + "homebrew", + "game" + ], + "description": "Game Boy Advance development library", + "license": "zlib", + "web": "https://github.com/exelotl/natu" } ] From 5a9e3ec7ee6239ff68cba4d2d5263030208bc334 Mon Sep 17 00:00:00 2001 From: Miran Date: Sat, 20 Jun 2020 11:01:20 +0200 Subject: [PATCH 1318/1381] add gerbil (#1523) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 79cb877..c00a246 100644 --- a/packages.json +++ b/packages.json @@ -18252,6 +18252,19 @@ "license": "MPL 2.0", "web": "https://github.com/dizzyliam/inumon" }, + { + "name": "gerbil", + "url": "https://github.com/jasonprogrammer/gerbil", + "method": "git", + "tags": [ + "web", + "dynamic", + "generator" + ], + "description": "A dynamic website generator", + "license": "MIT", + "web": "https://getgerbil.com" + }, { "name": "vaultclient", "url": "https://github.com/jackhftang/vaultclient.nim", From 2468a1471e1c5f2888c77d7608455285294abd1a Mon Sep 17 00:00:00 2001 From: Manuel Bojato <30560560+KingDarBoja@users.noreply.github.com> Date: Tue, 23 Jun 2020 00:02:18 -0500 Subject: [PATCH 1319/1381] Added package iridium (#1529) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index c00a246..285f5c0 100644 --- a/packages.json +++ b/packages.json @@ -18414,5 +18414,19 @@ "description": "Game Boy Advance development library", "license": "zlib", "web": "https://github.com/exelotl/natu" + }, + { + "name": "iridium", + "url": "https://github.com/KingDarBoja/Iridium", + "method": "git", + "tags": [ + "iso3166", + "nim", + "nim-lang", + "countries" + ], + "description": "The International Standard for country codes and codes for their subdivisions on Nim (ISO-3166)", + "license": "MIT", + "web": "https://github.com/KingDarBoja/Iridium" } ] From 1a478ed1acd7e95e9aee795db944bfba44751f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=E3=81=AA=E4=BA=BA=EF=BC=88N=20na=20hito=EF=BC=89?= Date: Wed, 24 Jun 2020 01:39:13 +0900 Subject: [PATCH 1320/1381] Add package nim_searches (#1531) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 285f5c0..a78436e 100644 --- a/packages.json +++ b/packages.json @@ -18428,5 +18428,16 @@ "description": "The International Standard for country codes and codes for their subdivisions on Nim (ISO-3166)", "license": "MIT", "web": "https://github.com/KingDarBoja/Iridium" + }, + { + "name": "nim_searches", + "url": "https://github.com/nnahito/nim_searched", + "method": "git", + "tags": [ + "search" + ], + "description": "search algorithms", + "license": "MIT", + "web": "https://github.com/nnahito/nim_searched" } ] From cc0bb94bf4dfa2f9a1465f5c2e6dfc7d052d08e4 Mon Sep 17 00:00:00 2001 From: Bung Date: Wed, 24 Jun 2020 18:28:07 +0800 Subject: [PATCH 1321/1381] Added package stage (#1532) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index a78436e..4a07383 100644 --- a/packages.json +++ b/packages.json @@ -18439,5 +18439,17 @@ "description": "search algorithms", "license": "MIT", "web": "https://github.com/nnahito/nim_searched" + }, + { + "name": "stage", + "url": "https://github.com/bung87/stage", + "method": "git", + "tags": [ + "git", + "hook" + ], + "description": "nim tasks apply to git hooks", + "license": "MIT", + "web": "https://github.com/bung87/stage" } ] From f9634ce610a6fef02296cb1026310ecad9576929 Mon Sep 17 00:00:00 2001 From: Thomas Carroll <5500712+snus-kin@users.noreply.github.com> Date: Wed, 24 Jun 2020 14:01:13 +0100 Subject: [PATCH 1322/1381] Added package flickr_image_bot (#1534) Co-authored-by: snus-kin --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 4a07383..48acfa9 100644 --- a/packages.json +++ b/packages.json @@ -18451,5 +18451,18 @@ "description": "nim tasks apply to git hooks", "license": "MIT", "web": "https://github.com/bung87/stage" + }, + { + "name": "flickr_image_bot", + "url": "https://github.com/snus-kin/flickr-image-bot", + "method": "git", + "tags": [ + "twitter", + "twitter-bot", + "flickr" + ], + "description": "Twitter bot for fetching flickr images with tags", + "license": "GPL-3.0", + "web": "https://github.com/snus-kin/flickr-image-bot" } ] From 413736fd223a321798cff8e2f07775bfcecfc011 Mon Sep 17 00:00:00 2001 From: treeform Date: Wed, 24 Jun 2020 09:23:05 -0700 Subject: [PATCH 1323/1381] Add flatty library (#1535) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 48acfa9..756fc7f 100644 --- a/packages.json +++ b/packages.json @@ -18464,5 +18464,19 @@ "description": "Twitter bot for fetching flickr images with tags", "license": "GPL-3.0", "web": "https://github.com/snus-kin/flickr-image-bot" + }, + { + "name": "flatty", + "url": "https://github.com/treeform/flatty", + "method": "git", + "tags": [ + "binary", + "serialize", + "marshal", + "hash" + ], + "description": "Serializer and tools for flat binary files.", + "license": "MIT", + "web": "https://github.com/treeform/flatty" } ] From 6b046d8d279818b386e7a8d0870dc2763aefccf9 Mon Sep 17 00:00:00 2001 From: lqdev Date: Fri, 26 Jun 2020 00:07:00 +0200 Subject: [PATCH 1324/1381] Added package aglet (#1536) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 756fc7f..2af5e7f 100644 --- a/packages.json +++ b/packages.json @@ -18478,5 +18478,19 @@ "description": "Serializer and tools for flat binary files.", "license": "MIT", "web": "https://github.com/treeform/flatty" + }, + { + "name": "aglet", + "url": "https://github.com/liquid600pgm/aglet", + "method": "git", + "tags": [ + "graphics", + "opengl", + "wrapper", + "safe" + ], + "description": "A safe, high-level, optimized OpenGL wrapper", + "license": "MIT", + "web": "https://github.com/liquid600pgm/aglet" } ] From f01ac58126bed4e6f8d1cb348cd79f78ac690a53 Mon Sep 17 00:00:00 2001 From: Ico Doornekamp Date: Fri, 26 Jun 2020 10:20:51 +0200 Subject: [PATCH 1325/1381] Added package nimcmaes (#1537) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 2af5e7f..4550e99 100644 --- a/packages.json +++ b/packages.json @@ -18492,5 +18492,17 @@ "description": "A safe, high-level, optimized OpenGL wrapper", "license": "MIT", "web": "https://github.com/liquid600pgm/aglet" + }, + { + "name": "nimcmaes", + "url": "https://github.com/zevv/nimcmaes", + "method": "git", + "tags": [ + "cmaes", + "optimization" + ], + "description": "Nim CMAES library", + "license": "Apache-2.0", + "web": "https://github.com/zevv/nimcmaes" } ] From 9d68bcf0dcedf7d12785ea4c0bcbb6c82443d26c Mon Sep 17 00:00:00 2001 From: Kashiwara <34295276+Kashiwara0205@users.noreply.github.com> Date: Sat, 27 Jun 2020 18:54:28 +0900 Subject: [PATCH 1326/1381] Add package soundex (#1538) * Added package soundex * Fix packages.json about soundex writed url Co-authored-by: KASHIWARA FUKI --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 4550e99..540ad54 100644 --- a/packages.json +++ b/packages.json @@ -18504,5 +18504,17 @@ "description": "Nim CMAES library", "license": "Apache-2.0", "web": "https://github.com/zevv/nimcmaes" + }, + { + "name": "soundex", + "url": "https://github.com/Kashiwara0205/soundex", + "method": "git", + "tags": [ + "library", + "algorithm" + ], + "description": "soundex algorithm", + "license": "MIT", + "web": "https://github.com/Kashiwara0205/soundex" } ] From 3531cc8523a4d5d61bd893103a3a918c6f9e5aba Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sun, 28 Jun 2020 19:38:32 +0800 Subject: [PATCH 1327/1381] Added package nimish (#1540) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 540ad54..c5bfb9e 100644 --- a/packages.json +++ b/packages.json @@ -18516,5 +18516,18 @@ "description": "soundex algorithm", "license": "MIT", "web": "https://github.com/Kashiwara0205/soundex" + }, + { + "name": "nimish", + "url": "https://github.com/xflywind/nimish", + "method": "git", + "tags": [ + "macro", + "library", + "c" + ], + "description": "C macro for Nim.", + "license": "Apache-2.0", + "web": "https://github.com/xflywind/nimish" } ] From ef82967d2153787374602fc662ae15442e19db9a Mon Sep 17 00:00:00 2001 From: inv2004 Date: Mon, 29 Jun 2020 03:40:17 +0300 Subject: [PATCH 1328/1381] Added package kdb (#1544) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index c5bfb9e..3c53a63 100644 --- a/packages.json +++ b/packages.json @@ -18529,5 +18529,20 @@ "description": "C macro for Nim.", "license": "Apache-2.0", "web": "https://github.com/xflywind/nimish" + }, + { + "name": "kdb", + "url": "https://github.com/inv2004/kdb_nim", + "method": "git", + "tags": [ + "kdb", + "q", + "k", + "database", + "bindings" + ], + "description": "Nim structs to work with Kdb in type-safe manner and low-level Nim to Kdb bindings", + "license": "Apache-2.0", + "web": "https://github.com/inv2004/kdb_nim" } ] From 0b9463c05c88a576e632a62a50bdbba7526bb549 Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Mon, 29 Jun 2020 17:30:40 +0700 Subject: [PATCH 1329/1381] Added package libnetfilter_queue (#1543) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 3c53a63..988c8d9 100644 --- a/packages.json +++ b/packages.json @@ -18465,6 +18465,22 @@ "license": "GPL-3.0", "web": "https://github.com/snus-kin/flickr-image-bot" }, + { + "name": "libnetfilter_queue", + "url": "https://github.com/ba0f3/libnetfilter_queue.nim", + "method": "git", + "tags": [ + "wrapper", + "libnetfilter", + "queue", + "netfilter", + "firewall", + "iptables" + ], + "description": "libnetfilter_queue wrapper for Nim", + "license": "MIT", + "web": "https://github.com/ba0f3/libnetfilter_queue.nim" + }, { "name": "flatty", "url": "https://github.com/treeform/flatty", From 0f9271e567f4266734f3395a316272b961ab14cb Mon Sep 17 00:00:00 2001 From: Huy Doan <106477+ba0f3@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:19:30 +0700 Subject: [PATCH 1330/1381] Added package libnetfilter_queue (#1543) Co-authored-by: Miran From 3d5082eb58ad3e9fbbbe0687b58c96935a7b45bd Mon Sep 17 00:00:00 2001 From: Momiyama <43488453+momeemt@users.noreply.github.com> Date: Tue, 30 Jun 2020 23:06:11 +0900 Subject: [PATCH 1331/1381] Added package Unit (#1545) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 988c8d9..6c708bd 100644 --- a/packages.json +++ b/packages.json @@ -18560,5 +18560,19 @@ "description": "Nim structs to work with Kdb in type-safe manner and low-level Nim to Kdb bindings", "license": "Apache-2.0", "web": "https://github.com/inv2004/kdb_nim" + }, + { + "name": "Unit", + "url": "https://github.com/momeemt/Unit", + "method": "git", + "tags": [ + "unit", + "type", + "systemOfUnit", + "library" + ], + "description": "A library that provides unit types in nim", + "license": "MIT", + "web": "https://github.com/momeemt/Unit" } ] From 19bbd35e13e69cfb2dc6b3a6ba8c9426536e47d1 Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sat, 4 Jul 2020 19:08:58 +0800 Subject: [PATCH 1332/1381] Added package shene (#1550) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6c708bd..99b8556 100644 --- a/packages.json +++ b/packages.json @@ -18574,5 +18574,18 @@ "description": "A library that provides unit types in nim", "license": "MIT", "web": "https://github.com/momeemt/Unit" + }, + { + "name": "shene", + "url": "https://github.com/xflywind/shene", + "method": "git", + "tags": [ + "interface", + "library", + "prologue" + ], + "description": "Interface for Nim.", + "license": "Apache-2.0", + "web": "https://github.com/xflywind/shene" } ] From 9701d46b8b61bfeacadd212809e2c8b437b8b5c1 Mon Sep 17 00:00:00 2001 From: jiro Date: Sun, 5 Jul 2020 23:16:59 +0900 Subject: [PATCH 1333/1381] Added package subnet (#1551) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 99b8556..aec5066 100644 --- a/packages.json +++ b/packages.json @@ -18587,5 +18587,19 @@ "description": "Interface for Nim.", "license": "Apache-2.0", "web": "https://github.com/xflywind/shene" + }, + { + "name": "subnet", + "url": "https://github.com/jiro4989/subnet", + "method": "git", + "tags": [ + "subnet", + "ip", + "cli", + "command" + ], + "description": "subnet prints subnet mask in human readable.", + "license": "MIT", + "web": "https://github.com/jiro4989/subnet" } ] From 09ed236981da9b9356b31b83de196f0d3223dc09 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sun, 5 Jul 2020 11:52:25 -0300 Subject: [PATCH 1334/1381] Add package fision (#1528) --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index aec5066..126a812 100644 --- a/packages.json +++ b/packages.json @@ -18415,6 +18415,17 @@ "license": "zlib", "web": "https://github.com/exelotl/natu" }, + { + "name": "fision", + "url": "https://github.com/juancarlospaco/fision", + "method": "git", + "tags": [ + "libraries" + ], + "description": "important_packages with 0 dependencies and all unittests passing", + "license": "MIT", + "web": "https://github.com/juancarlospaco/fision" + }, { "name": "iridium", "url": "https://github.com/KingDarBoja/Iridium", From 97a78b4e4e3e5708387d564d1ff77ad715c847d6 Mon Sep 17 00:00:00 2001 From: Danil Yarantsev Date: Sun, 5 Jul 2020 17:58:54 +0300 Subject: [PATCH 1335/1381] Remove pudge (it's a Go library now) (#1548) --- packages.json | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages.json b/packages.json index 126a812..6633c3e 100644 --- a/packages.json +++ b/packages.json @@ -6161,19 +6161,6 @@ "license": "MIT", "web": "https://notabug.org/vktec/nim-gapbuffer" }, - { - "name": "pudge", - "url": "https://github.com/recoilme/pudge.git", - "method": "git", - "tags": [ - "wrapper", - "database", - "sophia" - ], - "description": "Pudge Db - it's modern key/value storage with memcached protocol support. Pudge Db implements a high-level cross-platform sockets interface to sophia db.", - "license": "MIT", - "web": "https://github.com/recoilme/pudge" - }, { "name": "etcd_client", "url": "https://github.com/FedericoCeratto/nim-etcd-client", From b412dc46105c1b59909f26033b8f4017110945d6 Mon Sep 17 00:00:00 2001 From: Elijah Shaw-Rutschman Date: Sun, 5 Jul 2020 11:27:24 -0500 Subject: [PATCH 1336/1381] Added package lockfreequeues (#1547) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 6633c3e..9b4a21e 100644 --- a/packages.json +++ b/packages.json @@ -18573,6 +18573,21 @@ "license": "MIT", "web": "https://github.com/momeemt/Unit" }, + { + "name": "lockfreequeues", + "url": "https://github.com/elijahr/lockfreequeues", + "method": "git", + "tags": [ + "queue", + "circular-buffer", + "ring-buffer", + "spsc", + "lock-free" + ], + "description": "Single-producer, single-consumer, lock-free queue implementations for Nim.", + "license": "MIT", + "web": "https://github.com/elijahr/lockfreequeues" + }, { "name": "shene", "url": "https://github.com/xflywind/shene", From cecc99d77074a43e9c3e4fb118e856b533a884cd Mon Sep 17 00:00:00 2001 From: guzba Date: Tue, 7 Jul 2020 01:08:04 -0500 Subject: [PATCH 1337/1381] Added package supersnappy (#1552) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 9b4a21e..dcbfe62 100644 --- a/packages.json +++ b/packages.json @@ -18493,6 +18493,18 @@ "license": "MIT", "web": "https://github.com/treeform/flatty" }, + { + "name": "supersnappy", + "url": "https://github.com/guzba/supersnappy", + "method": "git", + "tags": [ + "compression", + "snappy" + ], + "description": "Dependency-free and performant Nim Snappy implementation.", + "license": "MIT", + "web": "https://github.com/guzba/supersnappy" + }, { "name": "aglet", "url": "https://github.com/liquid600pgm/aglet", From 5fda5aec80c2e865738bdd0c0b0caa6c63468bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Krampe?= Date: Tue, 7 Jul 2020 23:16:19 +0200 Subject: [PATCH 1338/1381] Added package norx (#1553) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index dcbfe62..f456097 100644 --- a/packages.json +++ b/packages.json @@ -18626,5 +18626,20 @@ "description": "subnet prints subnet mask in human readable.", "license": "MIT", "web": "https://github.com/jiro4989/subnet" + }, + { + "name": "norx", + "url": "https://github.com/gokr/norx", + "method": "git", + "tags": [ + "game", + "engine", + "2d", + "library", + "wrapper" + ], + "description": "A wrapper of the ORX 2.5D game engine", + "license": "Zlib", + "web": "https://github.com/gokr/norx" } ] From 808ab99ff76b20c2ca16458c3ba904f64c0b33ed Mon Sep 17 00:00:00 2001 From: Reilly Moore <54759062+Knaque@users.noreply.github.com> Date: Thu, 9 Jul 2020 14:06:11 -0500 Subject: [PATCH 1339/1381] Added package jeknil (#1554) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index f456097..3880ede 100644 --- a/packages.json +++ b/packages.json @@ -18641,5 +18641,20 @@ "description": "A wrapper of the ORX 2.5D game engine", "license": "Zlib", "web": "https://github.com/gokr/norx" + }, + { + "name": "jeknil", + "url": "https://github.com/Knaque/jeknil", + "method": "git", + "tags": [ + "web", + "binary", + "blog", + "markdown", + "html" + ], + "description": "A blog post generator for people with priorities.", + "license": "CC0-1.0", + "web": "https://github.com/Knaque/jeknil" } ] From a3063f91eee40e8f7ebb39e98b6b979f36b64205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20T=2E=20Jarl=C3=B8v?= Date: Fri, 10 Jul 2020 12:20:42 +0200 Subject: [PATCH 1340/1381] Add nimMime (#1555) * Add nimMime Library for attaching files to emails. * Fix name --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 3880ede..1315498 100644 --- a/packages.json +++ b/packages.json @@ -18656,5 +18656,19 @@ "description": "A blog post generator for people with priorities.", "license": "CC0-1.0", "web": "https://github.com/Knaque/jeknil" + }, + { + "name": "mime", + "url": "https://github.com/enthus1ast/nimMime", + "method": "git", + "tags": [ + "mime", + "email", + "mail", + "attachment" + ], + "description": "Library for attaching files to emails.", + "license": "MIT", + "web": "https://github.com/enthus1ast/nimMime" } ] From 043c5708f07b6818727f803a1419365ee33fc12c Mon Sep 17 00:00:00 2001 From: Ilya Date: Sun, 12 Jul 2020 20:53:11 +1000 Subject: [PATCH 1341/1381] Update packages.json (#1558) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 1315498..3b66a33 100644 --- a/packages.json +++ b/packages.json @@ -18670,5 +18670,18 @@ "description": "Library for attaching files to emails.", "license": "MIT", "web": "https://github.com/enthus1ast/nimMime" + }, + { + "name": "nimrcon", + "url": "https://github.com/mcilya/nimrcon", + "method": "git", + "tags": [ + "rcon", + "client", + "library" + ], + "description": "Simple RCON client in Nim lang.", + "license": "MIT", + "web": "https://github.com/mcilya/nimrcon" } ] From e377b60532052e7294d2ac84aba6051cad0c42c7 Mon Sep 17 00:00:00 2001 From: eXodiquas Date: Sun, 12 Jul 2020 15:13:35 +0200 Subject: [PATCH 1342/1381] Added package Echon (#1557) Co-authored-by: Timo 'eXodiquas' Netzer --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 3b66a33..315d663 100644 --- a/packages.json +++ b/packages.json @@ -18671,6 +18671,20 @@ "license": "MIT", "web": "https://github.com/enthus1ast/nimMime" }, + { + "name": "Echon", + "url": "https://github.com/eXodiquas/Echon", + "method": "git", + "tags": [ + "generative", + "l-system", + "fractal", + "art" + ], + "description": "A small package to create lindenmayer-systems or l-systems.", + "license": "MIT", + "web": "https://github.com/eXodiquas/Echon" + }, { "name": "nimrcon", "url": "https://github.com/mcilya/nimrcon", From dafadb96a7be1658b3d54fa106f11124d39cff4b Mon Sep 17 00:00:00 2001 From: doongjohn <40219740+doongjohn@users.noreply.github.com> Date: Sun, 12 Jul 2020 22:14:13 +0900 Subject: [PATCH 1343/1381] Added package vds (#1541) Co-authored-by: Miran --- packages.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages.json b/packages.json index 315d663..1712f51 100644 --- a/packages.json +++ b/packages.json @@ -18556,6 +18556,17 @@ "license": "Apache-2.0", "web": "https://github.com/xflywind/nimish" }, + { + "name": "vds", + "url": "https://github.com/doongjohn/VDS", + "method": "git", + "tags": [ + "vscode" + ], + "description": " Easily swap between multiple data folders.", + "license": "MIT", + "web": "https://github.com/doongjohn/VDS" + }, { "name": "kdb", "url": "https://github.com/inv2004/kdb_nim", From 3e034b1234a2a72c3a53edc7710d72d43bc6d794 Mon Sep 17 00:00:00 2001 From: Amru Rosyada Date: Sun, 12 Jul 2020 20:27:15 +0700 Subject: [PATCH 1344/1381] add zfplugs plugins for the zfcore framework (#1546) This is the plugins for the zfcore framework https://github.com/zendbit/nim.zfcore Co-authored-by: Clyybber --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 1712f51..0d9d177 100644 --- a/packages.json +++ b/packages.json @@ -18708,5 +18708,21 @@ "description": "Simple RCON client in Nim lang.", "license": "MIT", "web": "https://github.com/mcilya/nimrcon" + }, + { + "name": "zfplugs", + "url": "https://github.com/zendbit/nim.zfplugs", + "method": "git", + "tags": [ + "web", + "http", + "framework", + "api", + "asynchttpserver", + "plugins" + ], + "description": "This is the plugins for the zfcore framework https://github.com/zendbit/nim.zfcore", + "license": "BSD", + "web": "https://github.com/zendbit/nim.zfplugs" } ] From 6084049daaa09a60630ee1e8e4cd1f16700a7895 Mon Sep 17 00:00:00 2001 From: c-blake Date: Mon, 13 Jul 2020 08:00:52 -0400 Subject: [PATCH 1345/1381] Add hldiff (#1559) --- packages.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages.json b/packages.json index 0d9d177..c07e5a0 100644 --- a/packages.json +++ b/packages.json @@ -18724,5 +18724,24 @@ "description": "This is the plugins for the zfcore framework https://github.com/zendbit/nim.zfcore", "license": "BSD", "web": "https://github.com/zendbit/nim.zfplugs" + }, + { + "name": "hldiff", + "url": "https://github.com/c-blake/hldiff", + "method": "git", + "tags": [ + "difflib", + "diff", + "terminal", + "text", + "color", + "colors", + "colorize", + "highlight", + "highlighting" + ], + "description": "A highlighter for diff -u-like output & port of Python difflib", + "license": "MIT/ISC", + "web": "https://github.com/c-blake/hldiff" } ] From 7c22b322beb1d9c507184b57087c31caf00fa9a4 Mon Sep 17 00:00:00 2001 From: Abbey <2366595+abbeymart@users.noreply.github.com> Date: Mon, 13 Jul 2020 16:46:11 -0400 Subject: [PATCH 1346/1381] Added package mctranslog (#1560) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index c07e5a0..0ebe54c 100644 --- a/packages.json +++ b/packages.json @@ -18743,5 +18743,18 @@ "description": "A highlighter for diff -u-like output & port of Python difflib", "license": "MIT/ISC", "web": "https://github.com/c-blake/hldiff" + }, + { + "name": "mctranslog", + "url": "https://github.com/abbeymart/mctranslog", + "method": "git", + "tags": [ + "transaction", + "audit", + "log" + ], + "description": "mctranslog - Transaction Log Package", + "license": "MIT", + "web": "https://github.com/abbeymart/mctranslog" } ] From 9273bf806eab9c28447740c94bd2d812ed589f1c Mon Sep 17 00:00:00 2001 From: Xie Yanbo Date: Fri, 17 Jul 2020 18:52:11 +0800 Subject: [PATCH 1347/1381] Added documentation url for package googlesearch (#1562) --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 0ebe54c..df99696 100644 --- a/packages.json +++ b/packages.json @@ -15558,7 +15558,8 @@ ], "description": "library for scraping google search results", "license": "MIT", - "web": "https://github.com/xyb/googlesearch.nim" + "web": "https://github.com/xyb/googlesearch.nim", + "doc": "https://xyb.github.io/googlesearch.nim/" }, { "name": "rdgui", From 2ee33b701c88e4e280e9ddceb80f96ed9cc59bb2 Mon Sep 17 00:00:00 2001 From: Momiyama <43488453+momeemt@users.noreply.github.com> Date: Fri, 17 Jul 2020 22:56:52 +0900 Subject: [PATCH 1348/1381] Added package base64_decoder (#1563) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index df99696..368f8ee 100644 --- a/packages.json +++ b/packages.json @@ -18757,5 +18757,18 @@ "description": "mctranslog - Transaction Log Package", "license": "MIT", "web": "https://github.com/abbeymart/mctranslog" + }, + { + "name": "base64_decoder", + "url": "https://github.com/momeemt/base64_cui", + "method": "git", + "tags": [ + "base64", + "cui", + "tool" + ], + "description": "base64 cui", + "license": "MIT", + "web": "https://github.com/momeemt/base64_cui" } ] From 702efd040781abf7af76914ce54cddf7944044b2 Mon Sep 17 00:00:00 2001 From: Mildred Ki'Lya Date: Sat, 18 Jul 2020 13:19:15 +0200 Subject: [PATCH 1349/1381] Add nimnews to nimble directory (#1564) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 368f8ee..275f96f 100644 --- a/packages.json +++ b/packages.json @@ -18770,5 +18770,17 @@ "description": "base64 cui", "license": "MIT", "web": "https://github.com/momeemt/base64_cui" + }, + { + "name": "nimnews", + "url": "https://github.com/mildred/nimnews", + "method": "git", + "tags": [ + "nntp", + "newsgroups" + ], + "description": "Immature Newsgroup NNTP server using SQLite as backend", + "license": "GPL-3.0", + "web": "https://github.com/mildred/nimnews" } ] From e5881ca629a539ecab9ca8187b905011e9cf2564 Mon Sep 17 00:00:00 2001 From: Xie Yanbo Date: Sat, 18 Jul 2020 19:19:45 +0800 Subject: [PATCH 1350/1381] Added documentation url for package leveldb (#1561) --- packages.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index 275f96f..ed633b1 100644 --- a/packages.json +++ b/packages.json @@ -15447,7 +15447,8 @@ ], "description": "LevelDB bindings", "license": "MIT", - "web": "https://github.com/zielmicha/leveldb.nim" + "web": "https://github.com/zielmicha/leveldb.nim", + "doc": "https://zielmicha.github.io/leveldb.nim/" }, { "name": "requirementstxt", From 9d0b3428de7bde1562e9169e7c157bb00c35eb48 Mon Sep 17 00:00:00 2001 From: treeform Date: Sun, 19 Jul 2020 01:25:48 -0700 Subject: [PATCH 1351/1381] add bitty - Utilities with dealing with 1d and 2d bit arrays. (#1565) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index ed633b1..d3ac781 100644 --- a/packages.json +++ b/packages.json @@ -13130,6 +13130,18 @@ "license": "MIT", "web": "https://github.com/treeform/netty/" }, + { + "name": "bitty", + "url": "https://github.com/treeform/bitty/", + "method": "git", + "tags": [ + "networking", + "udp" + ], + "description": "Utilities with dealing with 1d and 2d bit arrays.", + "license": "MIT", + "web": "https://github.com/treeform/bitty/" + }, { "name": "fnv", "url": "https://gitlab.com/ryukoposting/nim-fnv", From 5144059785e6ca6956e58ff588567b62c2655779 Mon Sep 17 00:00:00 2001 From: Bung Date: Tue, 21 Jul 2020 07:50:11 +0800 Subject: [PATCH 1352/1381] Added package zopflipng (#1567) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index d3ac781..36f0696 100644 --- a/packages.json +++ b/packages.json @@ -18795,5 +18795,19 @@ "description": "Immature Newsgroup NNTP server using SQLite as backend", "license": "GPL-3.0", "web": "https://github.com/mildred/nimnews" + }, + { + "name": "zopflipng", + "url": "https://github.com/bung87/zopflipng", + "method": "git", + "tags": [ + "image", + "processing", + "png", + "optimization" + ], + "description": "zopflipng-like png optimization", + "license": "MIT", + "web": "https://github.com/bung87/zopflipng" } ] From cdfa305da466397de853752b94c0a0ca4d1114f7 Mon Sep 17 00:00:00 2001 From: Thomas Carroll Date: Thu, 23 Jul 2020 13:54:18 +0100 Subject: [PATCH 1353/1381] Change twitter.nim owner (#1568) --- packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index 36f0696..caccd4b 100644 --- a/packages.json +++ b/packages.json @@ -5075,7 +5075,7 @@ }, { "name": "twitter", - "url": "https://github.com/dchem/twitter.nim", + "url": "https://github.com/snus-kin/twitter.nim", "method": "git", "tags": [ "library", @@ -5084,7 +5084,7 @@ ], "description": "Low-level twitter API wrapper library for Nim.", "license": "MIT", - "web": "https://github.com/dchem/twitter.nim" + "web": "https://github.com/snus-kin/twitter.nim" }, { "name": "stomp", From 00b2f2e12002f8364921030eeb84df1b935f045e Mon Sep 17 00:00:00 2001 From: mbarkhau Date: Sun, 21 Jun 2020 10:03:40 +0000 Subject: [PATCH 1354/1381] Fix typo in README.md All the package, are belong to us. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4b7cf9..19f6688 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is a central listing of all packages for [Nimble](https://github.com/nim-lang/nimble), a package manager for the [Nim programming language](http://nim-lang.org). -An overview of all the package is available at https://nimble.directory. +An overview of all packages is available at https://nimble.directory. NOTE: The packages listed here are not peer-reviewed or otherwise screened. We try to keep the list up-to-date but we cannot guarantee quality or maturity of the packages. From 7c4ebbd6c561ed02b5ac584591b2459942d1922d Mon Sep 17 00:00:00 2001 From: fox-cat Date: Fri, 24 Jul 2020 21:53:05 -0700 Subject: [PATCH 1355/1381] add ms (#1571) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index caccd4b..77b2f55 100644 --- a/packages.json +++ b/packages.json @@ -18809,5 +18809,20 @@ "description": "zopflipng-like png optimization", "license": "MIT", "web": "https://github.com/bung87/zopflipng" + }, + { + "name": "ms", + "url": "https://github.com/fox-cat/ms", + "method": "git", + "tags": [ + "library", + "time", + "format", + "ms" + ], + "description": "Convert various time formats to milliseconds", + "license": "MIT", + "web": "https://fox-cat.github.io/ms/", + "doc": "https://fox-cat.github.io/ms/" } ] From a6eb584f5ba05144007ff6abc93c5dc42506e3dd Mon Sep 17 00:00:00 2001 From: adam mcdaniel Date: Wed, 29 Jul 2020 01:55:30 -0400 Subject: [PATCH 1356/1381] Added package calendar (#1575) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 77b2f55..760b00e 100644 --- a/packages.json +++ b/packages.json @@ -18824,5 +18824,18 @@ "license": "MIT", "web": "https://fox-cat.github.io/ms/", "doc": "https://fox-cat.github.io/ms/" + }, + { + "name": "calendar", + "url": "https://github.com/adam-mcdaniel/calendar", + "method": "git", + "tags": [ + "time", + "calendar", + "library" + ], + "description": "A tiny calendar program", + "license": "MIT", + "web": "https://github.com/adam-mcdaniel/calendar" } ] From 1e7b2a1e6863372decc58b4e66ec6fe33dafc14b Mon Sep 17 00:00:00 2001 From: Angus L'Herrou Date: Fri, 31 Jul 2020 16:56:17 -0400 Subject: [PATCH 1357/1381] Added package hayaa (#1576) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 760b00e..1093ba1 100644 --- a/packages.json +++ b/packages.json @@ -18837,5 +18837,18 @@ "description": "A tiny calendar program", "license": "MIT", "web": "https://github.com/adam-mcdaniel/calendar" + }, + { + "name": "hayaa", + "url": "https://github.com/angus-lherrou/hayaa", + "method": "git", + "tags": [ + "conway", + "game", + "life" + ], + "description": "Conway's Game of Life implemented in Nim", + "license": "MIT", + "web": "https://github.com/angus-lherrou/hayaa" } ] From 87a0a87cf42cd11b45d7e7481a6310567fc0b5f9 Mon Sep 17 00:00:00 2001 From: YesDrX <68913671+YesDrX@users.noreply.github.com> Date: Sun, 2 Aug 2020 00:45:32 -0400 Subject: [PATCH 1358/1381] add numnim (#1578) --- packages.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages.json b/packages.json index 1093ba1..fe256b0 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,21 @@ [ + { + "name": "numnim", + "url": "https://github.com/YesDrX/numnim", + "method": "git", + "tags": [ + "numnim", + "numpy", + "ndarray", + "matrix", + "pandas", + "dataframe" + ], + "description": "A numpy like ndarray and dataframe library for nim-lang.", + "license": "MIT", + "web": "https://github.com/YesDrX/numnim", + "doc": "https://github.com/YesDrX/numnim" + }, { "name": "filesize", "url": "https://github.com/sergiotapia/filesize", From 421bbbad93d6ab5c981b8267ed96c073ad26183a Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Sun, 2 Aug 2020 12:45:58 +0800 Subject: [PATCH 1359/1381] Added package wepoll (#1577) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index fe256b0..f9f209c 100644 --- a/packages.json +++ b/packages.json @@ -18867,5 +18867,18 @@ "description": "Conway's Game of Life implemented in Nim", "license": "MIT", "web": "https://github.com/angus-lherrou/hayaa" + }, + { + "name": "wepoll", + "url": "https://github.com/xflywind/wepoll", + "method": "git", + "tags": [ + "epoll", + "windows", + "wrapper" + ], + "description": "Windows epoll wrapper.", + "license": "MIT", + "web": "https://github.com/xflywind/wepoll" } ] From 7a0f6d0c07cdea863bd0ebb60cb0c318b2adf4c2 Mon Sep 17 00:00:00 2001 From: pseudo-random <45131943+pseudo-random@users.noreply.github.com> Date: Mon, 3 Aug 2020 14:12:33 +0200 Subject: [PATCH 1360/1381] Add geometryutils library (#1580) --- packages.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/packages.json b/packages.json index f9f209c..d23981c 100644 --- a/packages.json +++ b/packages.json @@ -18880,5 +18880,23 @@ "description": "Windows epoll wrapper.", "license": "MIT", "web": "https://github.com/xflywind/wepoll" + }, + { + "name": "geometryutils", + "url": "https://github.com/pseudo-random/geometryutils", + "method": "git", + "tags": [ + "library", + "geometry", + "math", + "utilities", + "graphics", + "rendering", + "3d", + "2d" + ], + "description": "A collection of geometry utilities for nim", + "license": "MIT", + "web": "https://github.com/pseudo-random/geometryutils" } ] From 1f17d75fc25501d8dabe209f8c4eb23072557c02 Mon Sep 17 00:00:00 2001 From: jerous86 <43525037+jerous86@users.noreply.github.com> Date: Mon, 3 Aug 2020 14:46:35 +0200 Subject: [PATCH 1361/1381] Added package nim_midi (#1579) --- packages.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index d23981c..8c32b3e 100644 --- a/packages.json +++ b/packages.json @@ -1,5 +1,5 @@ [ - { + { "name": "numnim", "url": "https://github.com/YesDrX/numnim", "method": "git", @@ -18881,6 +18881,18 @@ "license": "MIT", "web": "https://github.com/xflywind/wepoll" }, + { + "name": "nim_midi", + "url": "https://github.com/jerous86/nim_midi", + "method": "git", + "tags": [ + "midi", + "library" + ], + "description": "Read and write midi files", + "license": "MIT", + "web": "https://github.com/jerous86/nim_midi" + }, { "name": "geometryutils", "url": "https://github.com/pseudo-random/geometryutils", From 63c2186a5a2c2b5567b9006a1926658264436365 Mon Sep 17 00:00:00 2001 From: jayvanderwall Date: Tue, 4 Aug 2020 00:35:30 -0600 Subject: [PATCH 1362/1381] Add package desim (#1581) --- packages.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages.json b/packages.json index 8c32b3e..48401ab 100644 --- a/packages.json +++ b/packages.json @@ -18910,5 +18910,21 @@ "description": "A collection of geometry utilities for nim", "license": "MIT", "web": "https://github.com/pseudo-random/geometryutils" + }, + { + "name": "desim", + "url": "http://github.com/jayvanderwall/desim", + "method": "git", + "tags": [ + "library", + "modeling", + "discrete", + "event", + "simulation", + "simulator" + ], + "description": "A lightweight discrete event simulator", + "license": "MIT", + "web": "http://github.com/jayvanderwall/desim" } ] From fbb97dcf65e47b719f110bdcc1893851cff5eaeb Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Tue, 4 Aug 2020 16:26:21 +0800 Subject: [PATCH 1363/1381] Added package ioselectors (#1582) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 48401ab..e20c34a 100644 --- a/packages.json +++ b/packages.json @@ -18926,5 +18926,18 @@ "description": "A lightweight discrete event simulator", "license": "MIT", "web": "http://github.com/jayvanderwall/desim" + }, + { + "name": "ioselectors", + "url": "https://github.com/xflywind/ioselectors", + "method": "git", + "tags": [ + "selectors", + "epoll", + "io" + ], + "description": "Selectors extension.", + "license": "Apache-2.0", + "web": "https://github.com/xflywind/ioselectors" } ] From b3c23bf46f9e686a857c174ed89982b68045abdb Mon Sep 17 00:00:00 2001 From: doongjohn <40219740+doongjohn@users.noreply.github.com> Date: Tue, 4 Aug 2020 18:11:19 +0900 Subject: [PATCH 1364/1381] Rename package vds to vscds (#1583) --- packages.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index e20c34a..6778f3c 100644 --- a/packages.json +++ b/packages.json @@ -18589,14 +18589,18 @@ }, { "name": "vds", - "url": "https://github.com/doongjohn/VDS", + "alias": "vscds" + }, + { + "name": "vscds", + "url": "https://github.com/doongjohn/vscds", "method": "git", "tags": [ "vscode" ], - "description": " Easily swap between multiple data folders.", + "description": " Easily swap between multiple data folders.", "license": "MIT", - "web": "https://github.com/doongjohn/VDS" + "web": "https://github.com/doongjohn/vscds" }, { "name": "kdb", From 3540c37a9b74d873d0956c65aacc6528127e9d63 Mon Sep 17 00:00:00 2001 From: Amru Rosyada Date: Wed, 5 Aug 2020 14:28:31 +0700 Subject: [PATCH 1365/1381] add nim watchdog package (#1584) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 6778f3c..8c43fe1 100644 --- a/packages.json +++ b/packages.json @@ -18943,5 +18943,18 @@ "description": "Selectors extension.", "license": "Apache-2.0", "web": "https://github.com/xflywind/ioselectors" + }, + { + "name": "nwatchdog", + "url": "https://github.com/zendbit/nim.nwatchdog", + "method": "git", + "tags": [ + "watchdog", + "files", + "io" + ], + "description": "Simple watchdog (watch file changes modified, deleted, created) in nim lang.", + "license": "BSD", + "web": "https://github.com/zendbit/nim.nwatchdog" } ] From 520b83c23c6ef39e3e942764a5d18083950cc869 Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Fri, 7 Aug 2020 21:26:06 +0800 Subject: [PATCH 1366/1381] Added package logue (#1585) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 8c43fe1..19ce70f 100644 --- a/packages.json +++ b/packages.json @@ -18956,5 +18956,18 @@ "description": "Simple watchdog (watch file changes modified, deleted, created) in nim lang.", "license": "BSD", "web": "https://github.com/zendbit/nim.nwatchdog" + }, + { + "name": "logue", + "url": "https://github.com/planety/logue", + "method": "git", + "tags": [ + "cli", + "prologue", + "web" + ], + "description": "Command line tools for Prologue.", + "license": "Apache-2.0", + "web": "https://github.com/planety/logue" } ] From b75297620e19ed668da5506e2d47b40ea95d8375 Mon Sep 17 00:00:00 2001 From: YesDrX <68913671+YesDrX@users.noreply.github.com> Date: Fri, 7 Aug 2020 16:47:43 -0400 Subject: [PATCH 1367/1381] Update packages.json (#1587) --- packages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/packages.json b/packages.json index 19ce70f..8e4f0fa 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,19 @@ [ + { + "name": "randgen", + "url": "https://github.com/YesDrX/randgen", + "method": "git", + "tags": [ + "random", + "nim", + "pdf", + "cdf" + ], + "description": "A random variable generating library for nim.", + "license": "MIT", + "web": "https://yesdrx.github.io/randgen/", + "doc": "https://yesdrx.github.io/randgen/" + }, { "name": "numnim", "url": "https://github.com/YesDrX/numnim", From 86968ed7d5a26d55e1f7017d63290d62cef9ad3f Mon Sep 17 00:00:00 2001 From: flywind <43030857+xflywind@users.noreply.github.com> Date: Mon, 10 Aug 2020 13:27:57 +0800 Subject: [PATCH 1368/1381] Added package httpx (#1589) --- packages.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index 8e4f0fa..7da3653 100644 --- a/packages.json +++ b/packages.json @@ -5,9 +5,9 @@ "method": "git", "tags": [ "random", - "nim", - "pdf", - "cdf" + "nim", + "pdf", + "cdf" ], "description": "A random variable generating library for nim.", "license": "MIT", @@ -18984,5 +18984,18 @@ "description": "Command line tools for Prologue.", "license": "Apache-2.0", "web": "https://github.com/planety/logue" + }, + { + "name": "httpx", + "url": "https://github.com/xflywind/httpx", + "method": "git", + "tags": [ + "web", + "server", + "prologue" + ], + "description": "A super-fast epoll-backed and parallel HTTP server.", + "license": "MIT", + "web": "https://github.com/xflywind/httpx" } ] From e07251cc3edb7ce6380f7f4b214b1040d0ddbaa1 Mon Sep 17 00:00:00 2001 From: Elijah Shaw-Rutschman Date: Mon, 10 Aug 2020 00:28:24 -0500 Subject: [PATCH 1369/1381] Update tags, description, and doc link for lockfreequeues (#1588) --- packages.json | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/packages.json b/packages.json index 7da3653..e746421 100644 --- a/packages.json +++ b/packages.json @@ -18651,15 +18651,23 @@ "url": "https://github.com/elijahr/lockfreequeues", "method": "git", "tags": [ + "spsc", + "mpsc", + "mpmc", "queue", + "lockfree", + "lock-free", + "waitfree", + "wait-free", + "circularbuffer", "circular-buffer", "ring-buffer", - "spsc", - "lock-free" + "ringbuffer" ], - "description": "Single-producer, single-consumer, lock-free queue implementations for Nim.", + "description": "Lock-free queue implementations for Nim.", "license": "MIT", - "web": "https://github.com/elijahr/lockfreequeues" + "web": "https://github.com/elijahr/lockfreequeues", + "doc": "https://elijahr.github.io/lockfreequeues/" }, { "name": "shene", From c14ea4d82d35ee097cf3a759925a06e35a9d857c Mon Sep 17 00:00:00 2001 From: Silvio Date: Tue, 11 Aug 2020 20:47:14 +0200 Subject: [PATCH 1370/1381] Add jupyternim to nimble (#1592) --- packages.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages.json b/packages.json index e746421..7ddc4e3 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,14 @@ [ + { + "name": "jupyternim", + "url": "https://github.com/stisa/jupyternim", + "method": "git", + "tags": ["jupyter", "nteract", "ipython", "jupyter-kernel"], + "description": "A Jupyter kernel for nim.", + "license": "MIT", + "web": "https://github.com/stisa/jupyternim/blob/master/README.md", + "doc": "https://github.com/stisa/jupyternim" + }, { "name": "randgen", "url": "https://github.com/YesDrX/randgen", From 3b6d944b5bdf1867d2a685e18969ff1bd89afa65 Mon Sep 17 00:00:00 2001 From: genotrance Date: Tue, 11 Aug 2020 13:47:31 -0500 Subject: [PATCH 1371/1381] Added package meow (#1591) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 7ddc4e3..4477e62 100644 --- a/packages.json +++ b/packages.json @@ -19015,5 +19015,17 @@ "description": "A super-fast epoll-backed and parallel HTTP server.", "license": "MIT", "web": "https://github.com/xflywind/httpx" + }, + { + "name": "meow", + "url": "https://github.com/disruptek/meow", + "method": "git", + "tags": [ + "meow", + "hash" + ], + "description": "meowhash wrapper for Nim", + "license": "MIT", + "web": "https://github.com/disruptek/meow" } ] From ee983e58e9d9ab278c43b22310b9fd52cabe674f Mon Sep 17 00:00:00 2001 From: Zach Oakes Date: Wed, 12 Aug 2020 04:14:13 -0400 Subject: [PATCH 1372/1381] Add audio libraries (#1593) --- packages.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/packages.json b/packages.json index 4477e62..635d183 100644 --- a/packages.json +++ b/packages.json @@ -19027,5 +19027,38 @@ "description": "meowhash wrapper for Nim", "license": "MIT", "web": "https://github.com/disruptek/meow" + }, + { + "name": "parasound", + "url": "https://github.com/paranim/parasound", + "method": "git", + "tags": [ + "audio", + "sound" + ], + "description": "A library for playing audio files", + "license": "Public Domain" + }, + { + "name": "paramidi", + "url": "https://github.com/paranim/paramidi", + "method": "git", + "tags": [ + "midi", + "synthesizer" + ], + "description": "A library for making MIDI music", + "license": "Public Domain" + }, + { + "name": "paramidi_soundfonts", + "url": "https://github.com/paranim/paramidi_soundfonts", + "method": "git", + "tags": [ + "midi", + "soundfonts" + ], + "description": "Soundfonts for paramidi", + "license": "Public Domain" } ] From 05f643f2f09d91e451da142bfbf8c3dbb3af9958 Mon Sep 17 00:00:00 2001 From: guzba Date: Thu, 13 Aug 2020 00:09:27 -0500 Subject: [PATCH 1373/1381] Add package noisy (#1594) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index 635d183..c308341 100644 --- a/packages.json +++ b/packages.json @@ -19028,6 +19028,19 @@ "license": "MIT", "web": "https://github.com/disruptek/meow" }, + { + "name": "noisy", + "url": "https://github.com/guzba/noisy", + "method": "git", + "tags": [ + "perlin", + "simplex", + "noise" + ], + "description": "Simple noise generation.", + "license": "MIT", + "web": "https://github.com/guzba/noisy" + }, { "name": "parasound", "url": "https://github.com/paranim/parasound", From a5cb3e02ec8b0e929f1193f7f5381c188c294cb0 Mon Sep 17 00:00:00 2001 From: ire4ever1190 Date: Mon, 17 Aug 2020 17:19:09 +1000 Subject: [PATCH 1374/1381] Added package opentrivadb (#1595) --- packages.json | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/packages.json b/packages.json index c308341..d5ed416 100644 --- a/packages.json +++ b/packages.json @@ -3,11 +3,16 @@ "name": "jupyternim", "url": "https://github.com/stisa/jupyternim", "method": "git", - "tags": ["jupyter", "nteract", "ipython", "jupyter-kernel"], + "tags": [ + "jupyter", + "nteract", + "ipython", + "jupyter-kernel" + ], "description": "A Jupyter kernel for nim.", "license": "MIT", "web": "https://github.com/stisa/jupyternim/blob/master/README.md", - "doc": "https://github.com/stisa/jupyternim" + "doc": "https://github.com/stisa/jupyternim" }, { "name": "randgen", @@ -19073,5 +19078,19 @@ ], "description": "Soundfonts for paramidi", "license": "Public Domain" + }, + { + "name": "opentrivadb", + "url": "https://github.com/ire4ever1190/nim-opentmdb", + "method": "git", + "tags": [ + "wrapper", + "library", + "quiz", + "api" + ], + "description": "Wrapper around the open trivia db api", + "license": "MIT", + "web": "https://github.com/ire4ever1190/nim-opentmdb" } ] From c584efd78bc5dfc9f133392cce7aea285710f43e Mon Sep 17 00:00:00 2001 From: andri lim Date: Mon, 17 Aug 2020 14:40:55 +0700 Subject: [PATCH 1375/1381] Add toml-serialization and protobuf-serialization (#1597) --- packages.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/packages.json b/packages.json index d5ed416..37c3d01 100644 --- a/packages.json +++ b/packages.json @@ -19079,6 +19079,35 @@ "description": "Soundfonts for paramidi", "license": "Public Domain" }, + { + "name": "toml_serialization", + "url": "https://github.com/status-im/nim-toml-serialization", + "method": "git", + "tags": [ + "library", + "toml", + "serialization", + "parser" + ], + "description": "Flexible TOML serialization [not] relying on run-time type information", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-toml-serialization" + }, + { + "name": "protobuf_serialization", + "url": "https://github.com/status-im/nim-protobuf-serialization", + "method": "git", + "tags": [ + "library", + "protobuf", + "serialization", + "proto2", + "proto3" + ], + "description": "Protobuf implementation compatible with the nim-serialization framework.", + "license": "Apache License 2.0", + "web": "https://github.com/status-im/nim-protobuf-serialization" + }, { "name": "opentrivadb", "url": "https://github.com/ire4ever1190/nim-opentmdb", From 21e9c7eead21f777cde4541e7ff73fbd92b65cc4 Mon Sep 17 00:00:00 2001 From: Sergii Garkusha Date: Mon, 17 Aug 2020 00:41:07 -0700 Subject: [PATCH 1376/1381] Added package battery_widget (#1598) --- packages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages.json b/packages.json index 37c3d01..c3915c9 100644 --- a/packages.json +++ b/packages.json @@ -19046,6 +19046,18 @@ "license": "MIT", "web": "https://github.com/guzba/noisy" }, + { + "name": "battery_widget", + "url": "https://github.com/Cu7ious/nim-battery-widget", + "method": "git", + "tags": [ + "rompt-widget", + "battery-widget" + ], + "description": "Battery widget for command prompt. Written in Nim", + "license": "GPL-3.0", + "web": "https://github.com/Cu7ious/nim-battery-widget" + }, { "name": "parasound", "url": "https://github.com/paranim/parasound", From 21bc67a889f01a03b430ec00c66c2b37a938ec0b Mon Sep 17 00:00:00 2001 From: ire4ever1190 <37161@stpats.vic.edu.au> Date: Wed, 19 Aug 2020 03:54:29 +1000 Subject: [PATCH 1377/1381] Update packages.json (#1599) --- packages.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages.json b/packages.json index c3915c9..e83c041 100644 --- a/packages.json +++ b/packages.json @@ -19122,6 +19122,10 @@ }, { "name": "opentrivadb", + "alias": "opentdb" + }, + { + "name": "opentdb", "url": "https://github.com/ire4ever1190/nim-opentmdb", "method": "git", "tags": [ @@ -19132,6 +19136,7 @@ ], "description": "Wrapper around the open trivia db api", "license": "MIT", - "web": "https://github.com/ire4ever1190/nim-opentmdb" + "web": "https://github.com/ire4ever1190/nim-opentmdb", + "doc": "https://ire4ever1190.github.io/nim-opentmdb/opentdb.html" } ] From 9c585d22ffbfa19a70a889bc4c8e97b6b0f72627 Mon Sep 17 00:00:00 2001 From: Brandon Armstrong <45339160+KittyTechnoProgrammer@users.noreply.github.com> Date: Thu, 20 Aug 2020 04:10:35 -0500 Subject: [PATCH 1378/1381] Added torim package (#1600) --- packages.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages.json b/packages.json index e83c041..cb5be5e 100644 --- a/packages.json +++ b/packages.json @@ -1,4 +1,17 @@ [ + { + "name": "torim", + "url": "https://github.com/KittyTechnoProgrammer/torim", + "method": "git", + "tags": [ + "tor", + "hiddenservice" + ], + "description": "Updated version of tor.nim from Updated version of tor.nim from https://github.com/FedericoCeratto/nim-tor", + "license": "GPL-3.0", + "web": "https://github.com/KittyTechnoProgrammer/torim", + "doc": "https://github.com/KittyTechnoProgrammer/torim" + }, { "name": "jupyternim", "url": "https://github.com/stisa/jupyternim", From f4eb5a4fa4d9168fcd7b35e15df6b889a93e58a0 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 21 Aug 2020 23:28:20 +0100 Subject: [PATCH 1379/1381] Update strfmt url to github mirror. Fixes #1601. --- packages.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages.json b/packages.json index cb5be5e..9563031 100644 --- a/packages.json +++ b/packages.json @@ -1727,14 +1727,14 @@ }, { "name": "strfmt", - "url": "https://bitbucket.org/lyro/strfmt", - "method": "hg", + "url": "https://github.com/bio-nim/nim-strfmt", + "method": "git", "tags": [ "library" ], "description": "A string formatting library inspired by Python's `format`.", "license": "MIT", - "web": "https://lyro.bitbucket.org/strfmt" + "web": "https://github.com/bio-nim/nim-strfmt" }, { "name": "jade-nim", From fff46a73748791bd09eb744bfb5b951cff5b0adb Mon Sep 17 00:00:00 2001 From: alaviss Date: Sat, 22 Aug 2020 15:43:59 -0500 Subject: [PATCH 1380/1381] Added package dnsstamps (#1613) --- packages.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/packages.json b/packages.json index 9563031..31f7e33 100644 --- a/packages.json +++ b/packages.json @@ -19151,5 +19151,19 @@ "license": "MIT", "web": "https://github.com/ire4ever1190/nim-opentmdb", "doc": "https://ire4ever1190.github.io/nim-opentmdb/opentdb.html" + }, + { + "name": "dnsstamps", + "url": "https://github.com/alaviss/dnsstamps", + "method": "git", + "tags": [ + "dns", + "dnscrypt", + "dns-over-https", + "dns-over-tls" + ], + "description": "An implementation of DNS server stamps in Nim", + "license": "MPL-2.0", + "web": "https://github.com/alaviss/dnsstamps" } ] From ca63c5985e04d49144e3b5c806fcc546f98ccefb Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sun, 23 Aug 2020 14:29:14 +0100 Subject: [PATCH 1381/1381] Remove nimsuggest as its now bundled with Nim. Fixes https://github.com/nim-lang/nimble/issues/836 --- packages.json | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/packages.json b/packages.json index 31f7e33..8d1d708 100644 --- a/packages.json +++ b/packages.json @@ -2542,21 +2542,6 @@ "license": "MIT", "web": "https://github.com/def-/nim-brainfuck" }, - { - "name": "nimsuggest", - "url": "https://github.com/nim-lang/nimsuggest.git", - "method": "git", - "tags": [ - "binary", - "app", - "suggest", - "compiler", - "autocomplete" - ], - "description": "Tool for providing auto completion data for Nim source code.", - "license": "MIT", - "web": "https://github.com/nim-lang/nimsuggest" - }, { "name": "jwt", "url": "https://github.com/yglukhov/nim-jwt.git",