Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: nim | Distribution: openSUSE Tumbleweed |
Version: 1.6.12 | Vendor: openSUSE |
Release: 1.1 | Build date: Wed Mar 15 22:48:48 2023 |
Group: Development/Languages/Other | Build host: obs-arm-10 |
Size: 23060515 | Source RPM: nim-1.6.12-1.1.src.rpm |
Packager: http://bugs.opensuse.org | |
Url: https://nim-lang.org/ | |
Summary: A statically typed compiled systems programming language |
Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Efficient: * Nim generates native dependency-free executables, not dependent on a virtual machine, which are small and allow easy redistribution. * The Nim compiler and the generated executables support all major platforms like Windows, Linux, BSD and macOS. * Nim's memory management is deterministic and customizable with destructors and move semantics, inspired by C++ and Rust. It is well-suited for embedded, hard-realtime systems. * Modern concepts like zero-overhead iterators and compile-time evaluation of user-defined functions, in combination with the preference of value-based datatypes allocated on the stack, lead to extremely performant code. * Support for various backends: it compiles to C, C++ or JavaScript so that Nim can be used for all backend and frontend needs. Expressive: * Nim is self-contained: the compiler and the standard library are implemented in Nim. * Nim has a powerful macro system which allows direct manipulation of the AST, offering nearly unlimited opportunities. Elegant: * Macros cannot change Nim's syntax because there is no need for it — the syntax is flexible enough. * Modern type system with local type inference, tuples, generics and sum types. * Statements are grouped by indentation but can span multiple lines.
MIT
* Mon Mar 13 2023 Andrea Manzini <andrea.manzini@suse.com> - Update to version 1.6.12: * Fixed “sizeof object containing a set is wrong” * Fixed “Missing bounds check for len(toOpenArray..)” * Fixed “Add warning for bare except: clause” * Fixed “Little Copyright notice inconsistency” * Fixed “std/deques: wrong result after calling shrink” * Fixed “io.readLine adds ‘\00’ char to the end” * Fixed “New JS mdoe issue: return + ref ints.” * Fixed “Bad codegen for passed var seq to proc returning array[] converted to seq with @” * Fixed “Templates allowed to use ambiguous identifier” * Fixed “Mutating a var parameter through a mutable view triggers SIGSEGV” * Fixed “gcc error when constructing an object that has the same name in the same file name in 2 different directories” * Wed Nov 23 2022 David Anes <david.anes@suse.com> - Update to version 1.6.10: * Fixed “–styleCheck:off does not work (and –styleCheck:hint is now the default?)” * Fixed “dereferencing pointer to incomplete type error with gcc 9.4 with statics/cast” * Fixed “strutils.find uses cstring optimization that stops after \0” * Fixed “Nimpretty mangles numeric literal procs” * Fixed “Regression in proc symbol resolution; Error: attempting to call routine “ * Fixed “of operator doesn’t consider generics under orc/arc” * Fixed ““incompatible type” when mixing float32 and cfloat in generics” * Fixed “cannot generate code for: mSlice with toOpenArray” * Fixed “-mm flag is ignored on latest Nim 1.7.1 be4bd8” * Full list of changes: https://github.com/nim-lang/Nim/compare/v1.6.8...v1.6.10 * Wed Sep 28 2022 David Anes <david.anes@suse.com> - Remove patch nim-fix-gcc-major-version-detection.patch as it is already included upstream. - Add PCRE dependency as recommended, but required while building. - Disable broken tests * tasyncssl.nim [i586, armv7l] - Update to version 1.6.8: * Fixed “Add –gc:arc (or –mm:arc) induce different behavior when using converter” * Fixed “Converting unsigned integer to float fails in VM" * Fixed “regression(0.20.0 => devel): var params assignment gives silently wrong results in VM” * Fixed “genDepend broken for duplicate module names in separate folders” * Fixed “Orc booting compiler doesn’t work with newSeq operations” * Fixed “hasCustomPragma and getCustomPragmaVal don’t work on fields with backticks” * Fixed “Cant use uint64 in case” * Fixed “nim jsondoc output is broken” * Fixed “Underscores are unnecessarily escaped in db_mysql” * Fixed “Invalid codegen when block ends with lent” * Fixed “locals doesn’t work with ORC” * Fixed “reset does not work on set” * Fixed “selectRead and selectWrite are dangerous to use sockets with FD numbers bigger than FD_SETSIZE (1024) on *nixes” * Fixed “use-after-free bugs in object variants” * Fixed “[ARC] C compiler error when using the result of a template in the subscript operator” * Fixed “Calling nullary templates without () doesn’t work inside calls inside other templates” * Fixed “[Regression] Incorrect captures of pegs \ident macro in nim 1.6” * Fixed “Windows gcc shipped with choosenim 1.6.4 with TLS emulation turned off : The application was unable to start correctly (0xc000007b).” * Mon Aug 08 2022 David Anes <david.anes@suse.com> - Disable some tests for some platforms: * SFML tests/buildrequires are removed to simplify having the same version in all repositories (SLE, backports, etc.). * Disable test "tests/arc/tasyncorc.nim", which is failing in ppc64le (backports). - Require/recommend NodeJS 12 only where it is provided, so the package is buildable on more codestreams. * Thu Jul 14 2022 David Anes <david.anes@suse.com> - Remove duplicated strip for nimble. - Require (at least) a C compiler. - Addded _constraints file to require more RAM on build nodes. - Add patch to correctly detect GCC version, so it builds in i586 and arm: * nim-fix-gcc-major-version-detection.patch * Wed May 04 2022 David Anes <david.anes@suse.com> - Reworked whole package. - Includes upstream fixes for: * (bsc#1175333, CVE-2020-15693) httpClient is vulnerable to a CR-LF injection * (bsc#1175334, CVE-2020-15692) mishandle of argument to browsers.openDefaultBrowser * (bsc#1175332, CVE-2020-15694) httpClient.get().contentLength() fails to properly validate the server response * (bsc#1192712, CVE-2021-41259) null byte accepted in getContent function, leading to URI validation bypass * (bsc#1185948, CVE-2021-29495) stdlib httpClient does not validate peer certificates by default * (bsc#1185085, CVE-2021-21374) Improper verification of the SSL/TLS certificate * (bsc#1185084, CVE-2021-21373) "nimble refresh" falls back to a non-TLS URL in case of error * (bsc#1185083, CVE-2021-21372) doCmd can be leveraged to execute arbitrary commands * (bsc#1181705, CVE-2020-15690) Standard library asyncftpclient lacks a check for newline character - Add patches: * nim-fix-tests-certificate-key-too-small.patch * nim-fix-tests-ip-protocol-missing.patch * nim-nim-gdb_fix_interpreter.patch - Following nim tools now work as expected: * nim_dbg is now installed. * nim-gdb can be successfully launched as it finds and loads nim-gdb.py correctly under gdb. * nimble package manager stores package information per user. * compiler package can be found and used, as it may be required by other packages. - Update to 1.6.6 * standard library use consistent styles for variable names so it can be used in projects which force a consistent style with - -styleCheck:usages option. * ARC/ORC are now considerably faster at method dispatching, bringing its performance back on the level of the refc memory management. * Full changelog: https://nim-lang.org/blog/2022/05/05/version-166-released.html - Previous updates and changelogs: * 1.6.4: https://nim-lang.org/blog/2022/02/08/version-164-released.html * 1.6.2: https://nim-lang.org/blog/2021/12/17/version-162-released.html * 1.6.0: https://nim-lang.org/blog/2021/10/19/version-160-released.html * 1.4.8: https://nim-lang.org/blog/2021/05/25/version-148-released.html * 1.4.6: https://nim-lang.org/blog/2021/04/15/versions-146-and-1212-released.html * 1.4.4: https://nim-lang.org/blog/2021/02/23/versions-144-and-1210-released.html * 1.4.2: https://nim-lang.org/blog/2020/12/01/version-142-released.html * 1.4.0: https://nim-lang.org/blog/2020/10/16/version-140-released.html * Sat Feb 05 2022 Dirk Müller <dmueller@suse.com> - update to 1.2.16 * oids: switch from PRNG to random module * nimc.rst: fix table markup * nimRawSetjmp: support Windows * correctly enable chronos * bigints are not supposed to work on 1.2.x * disable nimpy * misc bugfixes * fixes a 'mixin' statement handling regression [backport:1.2 * Wed Apr 21 2021 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> - Update to version 1.2.12 * Fixed GC crash resulting from inlining of the memory allocation procs * Fixed “incorrect raises effect for $(NimNode)” (#17454) - from version 1.2.10 * Fixed “JS backend doesn’t handle float->int type conversion “ (#8404) * Fixed “The “try except” not work when the “OSError: Too many open files” error occurs!” (#15925) * Fixed “Nim emits #line 0 C preprocessor directives with –debugger:native, with ICE in gcc-10” (#15942) * Fixed “tfuturevar fails when activated” (#9695) * Fixed “nre.escapeRe is not gcsafe” (#16103) * Fixed ““Error: internal error: genRecordFieldAux” - in the “version-1-4” branch” (#16069) * Fixed “-d:fulldebug switch does not compile with gc:arc” (#16214) * Fixed “osLastError may randomly raise defect and crash” (#16359) * Fixed “generic importc proc’s don’t work (breaking lots of vmops procs for js)” (#16428) * Fixed “Concept: codegen ignores parameter passing” (#16897) * Fixed “{.push exportc.} interacts with anonymous functions” (#16967) * Fixed “memory allocation during {.global.} init breaks GC” (#17085) * Fixed "Nimble arbitrary code execution for specially crafted package metadata" + https://github.com/nim-lang/security/security/advisories/GHSA-rg9f-w24h-962p + (bsc#1185083, CVE-2021-21372) * Fixed "Nimble falls back to insecure http url when fetching packages" + https://github.com/nim-lang/security/security/advisories/GHSA-8w52-r35x-rgp8 + (bsc#1185084, CVE-2021-21373) * Fixed "Nimble fails to validate certificates due to insecure httpClient defaults" + https://github.com/nim-lang/security/security/advisories/GHSA-c2wm-v66h-xhxx + (bsc#1185085, CVE-2021-21374) - from version 1.2.8 * Fixed “Defer and –gc:arc” (#15071) * Fixed “Issue with –gc:arc at compile time” (#15129) * Fixed “Nil check on each field fails in generic function” (#15101) * Fixed “[strscans] scanf doesn’t match a single character with $+ if it’s the end of the string” (#15064) * Fixed “Crash and incorrect return values when using readPasswordFromStdin on Windows.” (#15207) * Fixed “Inconsistent unsigned -> signed RangeDefect usage across integer sizes” (#15210) * Fixed “toHex results in RangeDefect exception when used with large uint64” (#15257) * Fixed “Mixing ‘return’ with expressions is allowed in 1.2” (#15280) * Fixed “proc execCmdEx doesn’t work with -d:useWinAnsi” (#14203) * Fixed “memory corruption in tmarshall.nim” (#9754) * Fixed “Wrong number of variables” (#15360) * Fixed “defer doesnt work with block, break and await” (#15243) * Fixed “Sizeof of case object is incorrect. Showstopper” (#15516) * Fixed “Mixing ‘return’ with expressions is allowed in 1.2” (#15280) * Fixed “regression(1.0.2 => 1.0.4) VM register messed up depending on unrelated context” (#15704) - from version 1.2.6 * Fixed “The pegs module doesn’t work with generics!” (#14718) * Fixed “[goto exceptions] {.noReturn.} pragma is not detected in a case expression” (#14458) * Fixed “[exceptions:goto] C compiler error with dynlib pragma calling a proc” (#14240) * Fixed “Nim source archive install: ‘install.sh’ fails with error: cp: cannot stat ‘bin/nim-gdb’: No such file or directory” (#14748) * Fixed “Stropped identifiers don’t work as field names in tuple literals” (#14911) * Fixed “uri.decodeUrl crashes on incorrectly formatted input” (#14082) * Fixed “odbcsql module has some wrong integer types” (#9771) * Fixed “[ARC] Compiler crash declaring a finalizer proc directly in ‘new’” (#15044) * Fixed “code with named arguments in proc of winim/com can not been compiled” (#15056) * Fixed “javascript backend produces javascript code with syntax error in object syntax” (#14534) * Fixed “[ARC] SIGSEGV when calling a closure as a tuple field in a seq” (#15038) * Fixed “Compiler crashes when using string as object variant selector with else branch” (#14189) * Fixed “Constructing a uint64 range on a 32-bit machine leads to incorrect codegen” (#14616) * Sun Jun 21 2020 dmacvicar@suse.com - Update to version 1.2.2: * See https://nim-lang.org/blog.html for details - Enable the full testsuite in the %check section * Add build dependencies to run the testsuite * Whitelists a few tests that are not passing yet * Wed Nov 13 2019 Martin Pluskal <mpluskal@suse.com> - Update to version 1.0.2: * See https://nim-lang.org/blog.html for details - Update dependencies (based on changes by Federico Ceratto * Mon Jun 03 2019 m.szczepaniak.000@gmail.com - Added ppc64le * Mon Jun 03 2019 m.szczepaniak.000@gmail.com - Added armv7l and aarch64 * Fri May 31 2019 Martin Pluskal <mpluskal@suse.com> - Force more optflags usage - Fix location of config files (boo#1137006) * Tue May 14 2019 m.szczepaniak.000@gmail.com - Update to version 0.19.6: Please see: https://nim-lang.org/blog/2019/05/13/version-0196-released.html * Tue Jan 01 2019 mvetter@suse.com - Update to version 0.19.2: Please see: https://nim-lang.org/blog/2018/12/31/version-0192-released.html
/etc/nim /etc/nim/config.nims /etc/nim/nim.cfg /etc/nim/nimdoc.cfg /etc/nim/nimdoc.tex.cfg /etc/nim/rename.rules.cfg /usr/bin/nim /usr/bin/nim-gdb /usr/bin/nim_dbg /usr/bin/nimble /usr/bin/nimgrep /usr/bin/nimpretty /usr/bin/nimsuggest /usr/lib/nim /usr/lib/nim/bin /usr/lib/nim/bin/nim /usr/lib/nim/bin/nim-gdb /usr/lib/nim/bin/nim_dbg /usr/lib/nim/bin/nimble /usr/lib/nim/bin/nimgrep /usr/lib/nim/bin/nimpretty /usr/lib/nim/bin/nimsuggest /usr/lib/nim/compiler /usr/lib/nim/compiler/aliases.nim /usr/lib/nim/compiler/ast.nim /usr/lib/nim/compiler/astalgo.nim /usr/lib/nim/compiler/astmsgs.nim /usr/lib/nim/compiler/bitsets.nim /usr/lib/nim/compiler/btrees.nim /usr/lib/nim/compiler/ccgcalls.nim /usr/lib/nim/compiler/ccgexprs.nim /usr/lib/nim/compiler/ccgliterals.nim /usr/lib/nim/compiler/ccgmerge_unused.nim /usr/lib/nim/compiler/ccgreset.nim /usr/lib/nim/compiler/ccgstmts.nim /usr/lib/nim/compiler/ccgthreadvars.nim /usr/lib/nim/compiler/ccgtrav.nim /usr/lib/nim/compiler/ccgtypes.nim /usr/lib/nim/compiler/ccgutils.nim /usr/lib/nim/compiler/cgen.nim /usr/lib/nim/compiler/cgendata.nim /usr/lib/nim/compiler/cgmeth.nim /usr/lib/nim/compiler/closureiters.nim /usr/lib/nim/compiler/cmdlinehelper.nim /usr/lib/nim/compiler/commands.nim /usr/lib/nim/compiler/concepts.nim /usr/lib/nim/compiler/condsyms.nim /usr/lib/nim/compiler/debuginfo.nim /usr/lib/nim/compiler/debugutils.nim /usr/lib/nim/compiler/depends.nim /usr/lib/nim/compiler/dfa.nim /usr/lib/nim/compiler/docgen.nim /usr/lib/nim/compiler/docgen2.nim /usr/lib/nim/compiler/enumtostr.nim /usr/lib/nim/compiler/errorhandling.nim /usr/lib/nim/compiler/evalffi.nim /usr/lib/nim/compiler/evaltempl.nim /usr/lib/nim/compiler/extccomp.nim /usr/lib/nim/compiler/filter_tmpl.nim /usr/lib/nim/compiler/filters.nim /usr/lib/nim/compiler/gorgeimpl.nim /usr/lib/nim/compiler/guards.nim /usr/lib/nim/compiler/hlo.nim /usr/lib/nim/compiler/ic /usr/lib/nim/compiler/ic/bitabs.nim /usr/lib/nim/compiler/ic/cbackend.nim /usr/lib/nim/compiler/ic/dce.nim /usr/lib/nim/compiler/ic/design.rst /usr/lib/nim/compiler/ic/ic.nim /usr/lib/nim/compiler/ic/integrity.nim /usr/lib/nim/compiler/ic/navigator.nim /usr/lib/nim/compiler/ic/packed_ast.nim /usr/lib/nim/compiler/ic/replayer.nim /usr/lib/nim/compiler/ic/rodfiles.nim /usr/lib/nim/compiler/idents.nim /usr/lib/nim/compiler/importer.nim /usr/lib/nim/compiler/index.nim /usr/lib/nim/compiler/injectdestructors.nim /usr/lib/nim/compiler/installer.ini /usr/lib/nim/compiler/int128.nim /usr/lib/nim/compiler/isolation_check.nim /usr/lib/nim/compiler/jsgen.nim /usr/lib/nim/compiler/jstypes.nim /usr/lib/nim/compiler/lambdalifting.nim /usr/lib/nim/compiler/layouter.nim /usr/lib/nim/compiler/lexer.nim /usr/lib/nim/compiler/liftdestructors.nim /usr/lib/nim/compiler/liftlocals.nim /usr/lib/nim/compiler/lineinfos.nim /usr/lib/nim/compiler/linter.nim /usr/lib/nim/compiler/llstream.nim /usr/lib/nim/compiler/lookups.nim /usr/lib/nim/compiler/lowerings.nim /usr/lib/nim/compiler/macrocacheimpl.nim /usr/lib/nim/compiler/magicsys.nim /usr/lib/nim/compiler/main.nim /usr/lib/nim/compiler/mapping.txt /usr/lib/nim/compiler/modulegraphs.nim /usr/lib/nim/compiler/modulepaths.nim /usr/lib/nim/compiler/modules.nim /usr/lib/nim/compiler/msgs.nim /usr/lib/nim/compiler/ndi.nim /usr/lib/nim/compiler/nilcheck.nim /usr/lib/nim/compiler/nim.cfg /usr/lib/nim/compiler/nim.nim /usr/lib/nim/compiler/nimblecmd.nim /usr/lib/nim/compiler/nimconf.nim /usr/lib/nim/compiler/nimeval.nim /usr/lib/nim/compiler/nimfix /usr/lib/nim/compiler/nimfix/nimfix.nim /usr/lib/nim/compiler/nimfix/nimfix.nim.cfg /usr/lib/nim/compiler/nimfix/prettybase.nim /usr/lib/nim/compiler/nimlexbase.nim /usr/lib/nim/compiler/nimpaths.nim /usr/lib/nim/compiler/nimsets.nim /usr/lib/nim/compiler/nodejs.nim /usr/lib/nim/compiler/nversion.nim /usr/lib/nim/compiler/optimizer.nim /usr/lib/nim/compiler/options.nim /usr/lib/nim/compiler/packagehandling.nim /usr/lib/nim/compiler/packages.nim /usr/lib/nim/compiler/parampatterns.nim /usr/lib/nim/compiler/parser.nim /usr/lib/nim/compiler/passaux.nim /usr/lib/nim/compiler/passes.nim /usr/lib/nim/compiler/pathutils.nim /usr/lib/nim/compiler/patterns.nim /usr/lib/nim/compiler/platform.nim /usr/lib/nim/compiler/plugins /usr/lib/nim/compiler/plugins/active.nim /usr/lib/nim/compiler/plugins/itersgen.nim /usr/lib/nim/compiler/plugins/locals.nim /usr/lib/nim/compiler/pluginsupport.nim /usr/lib/nim/compiler/pragmas.nim /usr/lib/nim/compiler/prefixmatches.nim /usr/lib/nim/compiler/procfind.nim /usr/lib/nim/compiler/readme.md /usr/lib/nim/compiler/renderer.nim /usr/lib/nim/compiler/renderverbatim.nim /usr/lib/nim/compiler/reorder.nim /usr/lib/nim/compiler/rodutils.nim /usr/lib/nim/compiler/ropes.nim /usr/lib/nim/compiler/saturate.nim /usr/lib/nim/compiler/scriptconfig.nim /usr/lib/nim/compiler/sem.nim /usr/lib/nim/compiler/semcall.nim /usr/lib/nim/compiler/semdata.nim /usr/lib/nim/compiler/semexprs.nim /usr/lib/nim/compiler/semfields.nim /usr/lib/nim/compiler/semfold.nim /usr/lib/nim/compiler/semgnrc.nim /usr/lib/nim/compiler/seminst.nim /usr/lib/nim/compiler/semmacrosanity.nim /usr/lib/nim/compiler/semmagic.nim /usr/lib/nim/compiler/semobjconstr.nim /usr/lib/nim/compiler/semparallel.nim /usr/lib/nim/compiler/sempass2.nim /usr/lib/nim/compiler/semstmts.nim /usr/lib/nim/compiler/semtempl.nim /usr/lib/nim/compiler/semtypes.nim /usr/lib/nim/compiler/semtypinst.nim /usr/lib/nim/compiler/sighashes.nim /usr/lib/nim/compiler/sigmatch.nim /usr/lib/nim/compiler/sinkparameter_inference.nim /usr/lib/nim/compiler/sizealignoffsetimpl.nim /usr/lib/nim/compiler/sourcemap.nim /usr/lib/nim/compiler/spawn.nim /usr/lib/nim/compiler/strutils2.nim /usr/lib/nim/compiler/suggest.nim /usr/lib/nim/compiler/syntaxes.nim /usr/lib/nim/compiler/tccgen.nim /usr/lib/nim/compiler/transf.nim /usr/lib/nim/compiler/trees.nim /usr/lib/nim/compiler/treetab.nim /usr/lib/nim/compiler/typeallowed.nim /usr/lib/nim/compiler/types.nim /usr/lib/nim/compiler/typesrenderer.nim /usr/lib/nim/compiler/varpartitions.nim /usr/lib/nim/compiler/vm.nim /usr/lib/nim/compiler/vmconv.nim /usr/lib/nim/compiler/vmdef.nim /usr/lib/nim/compiler/vmdeps.nim /usr/lib/nim/compiler/vmgen.nim /usr/lib/nim/compiler/vmhooks.nim /usr/lib/nim/compiler/vmmarshal.nim /usr/lib/nim/compiler/vmops.nim /usr/lib/nim/compiler/vmprofiler.nim /usr/lib/nim/compiler/wordrecg.nim /usr/lib/nim/lib /usr/lib/nim/lib/arch /usr/lib/nim/lib/arch/x86 /usr/lib/nim/lib/arch/x86/amd64.S /usr/lib/nim/lib/arch/x86/i386.S /usr/lib/nim/lib/compilation.nim /usr/lib/nim/lib/core /usr/lib/nim/lib/core/hotcodereloading.nim /usr/lib/nim/lib/core/locks.nim /usr/lib/nim/lib/core/macrocache.nim /usr/lib/nim/lib/core/macros.nim /usr/lib/nim/lib/core/rlocks.nim /usr/lib/nim/lib/core/typeinfo.nim /usr/lib/nim/lib/cycle.h /usr/lib/nim/lib/deprecated /usr/lib/nim/lib/deprecated/pure /usr/lib/nim/lib/deprecated/pure/LockFreeHash.nim /usr/lib/nim/lib/deprecated/pure/events.nim /usr/lib/nim/lib/deprecated/pure/ospaths.nim /usr/lib/nim/lib/deprecated/pure/parseopt2.nim /usr/lib/nim/lib/deprecated/pure/securehash.nim /usr/lib/nim/lib/deprecated/pure/sharedstrings.nim /usr/lib/nim/lib/deps.txt /usr/lib/nim/lib/experimental /usr/lib/nim/lib/experimental/diff.nim /usr/lib/nim/lib/genode /usr/lib/nim/lib/genode/alloc.nim /usr/lib/nim/lib/genode/env.nim /usr/lib/nim/lib/genode_cpp /usr/lib/nim/lib/genode_cpp/syslocks.h /usr/lib/nim/lib/genode_cpp/threads.h /usr/lib/nim/lib/impure /usr/lib/nim/lib/impure/db_mysql.nim /usr/lib/nim/lib/impure/db_odbc.nim /usr/lib/nim/lib/impure/db_postgres.nim /usr/lib/nim/lib/impure/db_sqlite.nim /usr/lib/nim/lib/impure/nre /usr/lib/nim/lib/impure/nre.nim /usr/lib/nim/lib/impure/nre/private /usr/lib/nim/lib/impure/nre/private/util.nim /usr/lib/nim/lib/impure/rdstdin.nim /usr/lib/nim/lib/impure/re.nim /usr/lib/nim/lib/js /usr/lib/nim/lib/js/asyncjs.nim /usr/lib/nim/lib/js/dom.nim /usr/lib/nim/lib/js/dom_extensions.nim /usr/lib/nim/lib/js/jsconsole.nim /usr/lib/nim/lib/js/jscore.nim /usr/lib/nim/lib/js/jsffi.nim /usr/lib/nim/lib/js/jsre.nim /usr/lib/nim/lib/nimbase.h /usr/lib/nim/lib/nimhcr.nim /usr/lib/nim/lib/nimhcr.nim.cfg /usr/lib/nim/lib/nimrtl.nim /usr/lib/nim/lib/nimrtl.nim.cfg /usr/lib/nim/lib/packages /usr/lib/nim/lib/packages/docutils /usr/lib/nim/lib/packages/docutils/docutils.nimble.old /usr/lib/nim/lib/packages/docutils/highlite.nim /usr/lib/nim/lib/packages/docutils/rst.nim /usr/lib/nim/lib/packages/docutils/rstast.nim /usr/lib/nim/lib/packages/docutils/rstgen.nim /usr/lib/nim/lib/posix /usr/lib/nim/lib/posix/epoll.nim /usr/lib/nim/lib/posix/inotify.nim /usr/lib/nim/lib/posix/kqueue.nim /usr/lib/nim/lib/posix/linux.nim /usr/lib/nim/lib/posix/posix.nim /usr/lib/nim/lib/posix/posix_freertos_consts.nim /usr/lib/nim/lib/posix/posix_haiku.nim /usr/lib/nim/lib/posix/posix_linux_amd64.nim /usr/lib/nim/lib/posix/posix_linux_amd64_consts.nim /usr/lib/nim/lib/posix/posix_macos_amd64.nim /usr/lib/nim/lib/posix/posix_nintendoswitch.nim /usr/lib/nim/lib/posix/posix_nintendoswitch_consts.nim /usr/lib/nim/lib/posix/posix_openbsd_amd64.nim /usr/lib/nim/lib/posix/posix_other.nim /usr/lib/nim/lib/posix/posix_other_consts.nim /usr/lib/nim/lib/posix/posix_utils.nim /usr/lib/nim/lib/posix/termios.nim /usr/lib/nim/lib/pure /usr/lib/nim/lib/pure/algorithm.nim /usr/lib/nim/lib/pure/async.nim /usr/lib/nim/lib/pure/asyncdispatch.nim /usr/lib/nim/lib/pure/asyncdispatch.nim.cfg /usr/lib/nim/lib/pure/asyncfile.nim /usr/lib/nim/lib/pure/asyncftpclient.nim /usr/lib/nim/lib/pure/asyncfutures.nim /usr/lib/nim/lib/pure/asynchttpserver.nim /usr/lib/nim/lib/pure/asyncmacro.nim /usr/lib/nim/lib/pure/asyncnet.nim /usr/lib/nim/lib/pure/asyncstreams.nim /usr/lib/nim/lib/pure/base64.nim /usr/lib/nim/lib/pure/bitops.nim /usr/lib/nim/lib/pure/browsers.nim /usr/lib/nim/lib/pure/cgi.nim /usr/lib/nim/lib/pure/collections /usr/lib/nim/lib/pure/collections/chains.nim /usr/lib/nim/lib/pure/collections/critbits.nim /usr/lib/nim/lib/pure/collections/deques.nim /usr/lib/nim/lib/pure/collections/hashcommon.nim /usr/lib/nim/lib/pure/collections/heapqueue.nim /usr/lib/nim/lib/pure/collections/intsets.nim /usr/lib/nim/lib/pure/collections/lists.nim /usr/lib/nim/lib/pure/collections/rtarrays.nim /usr/lib/nim/lib/pure/collections/sequtils.nim /usr/lib/nim/lib/pure/collections/setimpl.nim /usr/lib/nim/lib/pure/collections/sets.nim /usr/lib/nim/lib/pure/collections/sharedlist.nim /usr/lib/nim/lib/pure/collections/sharedtables.nim /usr/lib/nim/lib/pure/collections/tableimpl.nim /usr/lib/nim/lib/pure/collections/tables.nim /usr/lib/nim/lib/pure/colors.nim /usr/lib/nim/lib/pure/complex.nim /usr/lib/nim/lib/pure/concurrency /usr/lib/nim/lib/pure/concurrency/atomics.nim /usr/lib/nim/lib/pure/concurrency/cpuinfo.nim /usr/lib/nim/lib/pure/concurrency/cpuload.nim /usr/lib/nim/lib/pure/concurrency/threadpool.nim /usr/lib/nim/lib/pure/concurrency/threadpool.nim.cfg /usr/lib/nim/lib/pure/cookies.nim /usr/lib/nim/lib/pure/coro.nim /usr/lib/nim/lib/pure/coro.nimcfg /usr/lib/nim/lib/pure/cstrutils.nim /usr/lib/nim/lib/pure/db_common.nim /usr/lib/nim/lib/pure/distros.nim /usr/lib/nim/lib/pure/dynlib.nim /usr/lib/nim/lib/pure/encodings.nim /usr/lib/nim/lib/pure/endians.nim /usr/lib/nim/lib/pure/fenv.nim /usr/lib/nim/lib/pure/future.nim /usr/lib/nim/lib/pure/hashes.nim /usr/lib/nim/lib/pure/htmlgen.nim /usr/lib/nim/lib/pure/htmlparser.nim /usr/lib/nim/lib/pure/httpclient.nim /usr/lib/nim/lib/pure/httpcore.nim /usr/lib/nim/lib/pure/includes /usr/lib/nim/lib/pure/includes/osenv.nim /usr/lib/nim/lib/pure/includes/oserr.nim /usr/lib/nim/lib/pure/includes/osseps.nim /usr/lib/nim/lib/pure/includes/unicode_ranges.nim /usr/lib/nim/lib/pure/ioselects /usr/lib/nim/lib/pure/ioselects/ioselectors_epoll.nim /usr/lib/nim/lib/pure/ioselects/ioselectors_kqueue.nim /usr/lib/nim/lib/pure/ioselects/ioselectors_poll.nim /usr/lib/nim/lib/pure/ioselects/ioselectors_select.nim /usr/lib/nim/lib/pure/json.nim /usr/lib/nim/lib/pure/lenientops.nim /usr/lib/nim/lib/pure/lexbase.nim /usr/lib/nim/lib/pure/logging.nim /usr/lib/nim/lib/pure/marshal.nim /usr/lib/nim/lib/pure/math.nim /usr/lib/nim/lib/pure/md5.nim /usr/lib/nim/lib/pure/memfiles.nim /usr/lib/nim/lib/pure/mersenne.nim /usr/lib/nim/lib/pure/mimetypes.nim /usr/lib/nim/lib/pure/nativesockets.nim /usr/lib/nim/lib/pure/net.nim /usr/lib/nim/lib/pure/nimprof.nim /usr/lib/nim/lib/pure/nimprof.nim.cfg /usr/lib/nim/lib/pure/nimtracker.nim /usr/lib/nim/lib/pure/oids.nim /usr/lib/nim/lib/pure/options.nim /usr/lib/nim/lib/pure/os.nim /usr/lib/nim/lib/pure/osproc.nim /usr/lib/nim/lib/pure/oswalkdir.nim /usr/lib/nim/lib/pure/parsecfg.nim /usr/lib/nim/lib/pure/parsecsv.nim /usr/lib/nim/lib/pure/parsejson.nim /usr/lib/nim/lib/pure/parseopt.nim /usr/lib/nim/lib/pure/parsesql.nim /usr/lib/nim/lib/pure/parseutils.nim /usr/lib/nim/lib/pure/parsexml.nim /usr/lib/nim/lib/pure/pathnorm.nim /usr/lib/nim/lib/pure/pegs.nim /usr/lib/nim/lib/pure/prelude.nim /usr/lib/nim/lib/pure/punycode.nim /usr/lib/nim/lib/pure/random.nim /usr/lib/nim/lib/pure/rationals.nim /usr/lib/nim/lib/pure/reservedmem.nim /usr/lib/nim/lib/pure/ropes.nim /usr/lib/nim/lib/pure/segfaults.nim /usr/lib/nim/lib/pure/selectors.nim /usr/lib/nim/lib/pure/smtp.nim /usr/lib/nim/lib/pure/smtp.nim.cfg /usr/lib/nim/lib/pure/ssl_certs.nim /usr/lib/nim/lib/pure/ssl_config.nim /usr/lib/nim/lib/pure/stats.nim /usr/lib/nim/lib/pure/streams.nim /usr/lib/nim/lib/pure/streamwrapper.nim /usr/lib/nim/lib/pure/strformat.nim /usr/lib/nim/lib/pure/strmisc.nim /usr/lib/nim/lib/pure/strscans.nim /usr/lib/nim/lib/pure/strtabs.nim /usr/lib/nim/lib/pure/strutils.nim /usr/lib/nim/lib/pure/sugar.nim /usr/lib/nim/lib/pure/terminal.nim /usr/lib/nim/lib/pure/times.nim /usr/lib/nim/lib/pure/typetraits.nim /usr/lib/nim/lib/pure/unicode.nim /usr/lib/nim/lib/pure/unidecode /usr/lib/nim/lib/pure/unidecode/unidecode.dat /usr/lib/nim/lib/pure/unidecode/unidecode.nim /usr/lib/nim/lib/pure/unittest.nim /usr/lib/nim/lib/pure/uri.nim /usr/lib/nim/lib/pure/volatile.nim /usr/lib/nim/lib/pure/xmlparser.nim /usr/lib/nim/lib/pure/xmltree.nim /usr/lib/nim/lib/std /usr/lib/nim/lib/std/compilesettings.nim /usr/lib/nim/lib/std/decls.nim /usr/lib/nim/lib/std/editdistance.nim /usr/lib/nim/lib/std/effecttraits.nim /usr/lib/nim/lib/std/enumerate.nim /usr/lib/nim/lib/std/enumutils.nim /usr/lib/nim/lib/std/exitprocs.nim /usr/lib/nim/lib/std/genasts.nim /usr/lib/nim/lib/std/importutils.nim /usr/lib/nim/lib/std/isolation.nim /usr/lib/nim/lib/std/jsbigints.nim /usr/lib/nim/lib/std/jsfetch.nim /usr/lib/nim/lib/std/jsformdata.nim /usr/lib/nim/lib/std/jsheaders.nim /usr/lib/nim/lib/std/jsonutils.nim /usr/lib/nim/lib/std/logic.nim /usr/lib/nim/lib/std/monotimes.nim /usr/lib/nim/lib/std/packedsets.nim /usr/lib/nim/lib/std/private /usr/lib/nim/lib/std/private/asciitables.nim /usr/lib/nim/lib/std/private/bitops_utils.nim /usr/lib/nim/lib/std/private/dbutils.nim /usr/lib/nim/lib/std/private/decode_helpers.nim /usr/lib/nim/lib/std/private/digitsutils.nim /usr/lib/nim/lib/std/private/gitutils.nim /usr/lib/nim/lib/std/private/globs.nim /usr/lib/nim/lib/std/private/jsutils.nim /usr/lib/nim/lib/std/private/miscdollars.nim /usr/lib/nim/lib/std/private/since.nim /usr/lib/nim/lib/std/private/strimpl.nim /usr/lib/nim/lib/std/private/underscored_calls.nim /usr/lib/nim/lib/std/private/win_setenv.nim /usr/lib/nim/lib/std/setutils.nim /usr/lib/nim/lib/std/sha1.nim /usr/lib/nim/lib/std/socketstreams.nim /usr/lib/nim/lib/std/stackframes.nim /usr/lib/nim/lib/std/strbasics.nim /usr/lib/nim/lib/std/sums.nim /usr/lib/nim/lib/std/sysrand.nim /usr/lib/nim/lib/std/tasks.nim /usr/lib/nim/lib/std/tempfiles.nim /usr/lib/nim/lib/std/time_t.nim /usr/lib/nim/lib/std/varints.nim /usr/lib/nim/lib/std/vmutils.nim /usr/lib/nim/lib/std/with.nim /usr/lib/nim/lib/std/wordwrap.nim /usr/lib/nim/lib/std/wrapnils.nim /usr/lib/nim/lib/stdlib.nimble /usr/lib/nim/lib/system /usr/lib/nim/lib/system.nim /usr/lib/nim/lib/system/alloc.nim /usr/lib/nim/lib/system/ansi_c.nim /usr/lib/nim/lib/system/arc.nim /usr/lib/nim/lib/system/arithm.nim /usr/lib/nim/lib/system/arithmetics.nim /usr/lib/nim/lib/system/assertions.nim /usr/lib/nim/lib/system/assign.nim /usr/lib/nim/lib/system/atomics.nim /usr/lib/nim/lib/system/avltree.nim /usr/lib/nim/lib/system/basic_types.nim /usr/lib/nim/lib/system/bitmasks.nim /usr/lib/nim/lib/system/cellseqs_v1.nim /usr/lib/nim/lib/system/cellseqs_v2.nim /usr/lib/nim/lib/system/cellsets.nim /usr/lib/nim/lib/system/cgprocs.nim /usr/lib/nim/lib/system/channels_builtin.nim /usr/lib/nim/lib/system/chcks.nim /usr/lib/nim/lib/system/comparisons.nim /usr/lib/nim/lib/system/coro_detection.nim /usr/lib/nim/lib/system/countbits_impl.nim /usr/lib/nim/lib/system/cyclebreaker.nim /usr/lib/nim/lib/system/deepcopy.nim /usr/lib/nim/lib/system/dollars.nim /usr/lib/nim/lib/system/dragonbox.nim /usr/lib/nim/lib/system/dyncalls.nim /usr/lib/nim/lib/system/embedded.nim /usr/lib/nim/lib/system/exceptions.nim /usr/lib/nim/lib/system/excpt.nim /usr/lib/nim/lib/system/fatal.nim /usr/lib/nim/lib/system/formatfloat.nim /usr/lib/nim/lib/system/gc.nim /usr/lib/nim/lib/system/gc2.nim /usr/lib/nim/lib/system/gc_common.nim /usr/lib/nim/lib/system/gc_hooks.nim /usr/lib/nim/lib/system/gc_interface.nim /usr/lib/nim/lib/system/gc_ms.nim /usr/lib/nim/lib/system/gc_regions.nim /usr/lib/nim/lib/system/hti.nim /usr/lib/nim/lib/system/inclrtl.nim /usr/lib/nim/lib/system/indexerrors.nim /usr/lib/nim/lib/system/integerops.nim /usr/lib/nim/lib/system/io.nim /usr/lib/nim/lib/system/iterators.nim /usr/lib/nim/lib/system/iterators_1.nim /usr/lib/nim/lib/system/jssys.nim /usr/lib/nim/lib/system/memalloc.nim /usr/lib/nim/lib/system/memory.nim /usr/lib/nim/lib/system/memtracker.nim /usr/lib/nim/lib/system/mm /usr/lib/nim/lib/system/mm/boehm.nim /usr/lib/nim/lib/system/mm/go.nim /usr/lib/nim/lib/system/mm/malloc.nim /usr/lib/nim/lib/system/mm/none.nim /usr/lib/nim/lib/system/mmdisp.nim /usr/lib/nim/lib/system/nimscript.nim /usr/lib/nim/lib/system/orc.nim /usr/lib/nim/lib/system/osalloc.nim /usr/lib/nim/lib/system/platforms.nim /usr/lib/nim/lib/system/profiler.nim /usr/lib/nim/lib/system/repr.nim /usr/lib/nim/lib/system/repr_impl.nim /usr/lib/nim/lib/system/repr_v2.nim /usr/lib/nim/lib/system/reprjs.nim /usr/lib/nim/lib/system/schubfach.nim /usr/lib/nim/lib/system/seqs_v2.nim /usr/lib/nim/lib/system/seqs_v2_reimpl.nim /usr/lib/nim/lib/system/setops.nim /usr/lib/nim/lib/system/sets.nim /usr/lib/nim/lib/system/stacktraces.nim /usr/lib/nim/lib/system/strmantle.nim /usr/lib/nim/lib/system/strs_v2.nim /usr/lib/nim/lib/system/syslocks.nim /usr/lib/nim/lib/system/sysspawn.nim /usr/lib/nim/lib/system/sysstr.nim /usr/lib/nim/lib/system/threadlocalstorage.nim /usr/lib/nim/lib/system/threads.nim /usr/lib/nim/lib/system/timers.nim /usr/lib/nim/lib/system/widestrs.nim /usr/lib/nim/lib/system_overview.rst /usr/lib/nim/lib/windows /usr/lib/nim/lib/windows/registry.nim /usr/lib/nim/lib/windows/winlean.nim /usr/lib/nim/lib/wrappers /usr/lib/nim/lib/wrappers/linenoise /usr/lib/nim/lib/wrappers/linenoise/LICENSE.txt /usr/lib/nim/lib/wrappers/linenoise/README.markdown /usr/lib/nim/lib/wrappers/linenoise/linenoise.c /usr/lib/nim/lib/wrappers/linenoise/linenoise.h /usr/lib/nim/lib/wrappers/linenoise/linenoise.nim /usr/lib/nim/lib/wrappers/mysql.nim /usr/lib/nim/lib/wrappers/odbcsql.nim /usr/lib/nim/lib/wrappers/openssl.nim /usr/lib/nim/lib/wrappers/pcre.nim /usr/lib/nim/lib/wrappers/postgres.nim /usr/lib/nim/lib/wrappers/sqlite3.nim /usr/lib/nim/lib/wrappers/tinyc.nim /usr/lib/nim/tools /usr/lib/nim/tools/nim-gdb.py /usr/share/doc/packages/nim /usr/share/doc/packages/nim/doc /usr/share/doc/packages/nim/doc/advopt.txt /usr/share/doc/packages/nim/doc/basicopt.txt /usr/share/doc/packages/nim/doc/nimdoc.css /usr/share/licenses/nim /usr/share/licenses/nim/copying.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Nov 9 01:23:06 2024