Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

nim-1.6.14-2.1 RPM for aarch64

From OpenSuSE Ports Tumbleweed for aarch64

Name: nim Distribution: openSUSE Tumbleweed
Version: 1.6.14 Vendor: openSUSE
Release: 2.1 Build date: Mon Jul 10 16:48:00 2023
Group: Development/Languages/Other Build host: obs-arm-11
Size: 22753664 Source RPM: nim-1.6.14-2.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.

Provides

Requires

License

MIT

Changelog

* Wed Jul 05 2023 Andreas Schwab <schwab@suse.de>
  - Enable build on riscv64
  - Skip all tests using valgrind when running under QEmu user-space emulation
* Wed Jun 28 2023 Andrea Manzini <andrea.manzini@suse.com>
  - Update to version 1.6.14:
    * more than 179 commits providing bugfixes and general improvements,
      details at https://github.com/nim-lang/Nim/compare/v1.6.12...v1.6.14
  - removed patch nim-fix-tests-certificate-key-too-small.patch as no longer needed
* 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

Files

/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/lib64/nim
/usr/lib64/nim/bin
/usr/lib64/nim/bin/nim
/usr/lib64/nim/bin/nim-gdb
/usr/lib64/nim/bin/nim_dbg
/usr/lib64/nim/bin/nimble
/usr/lib64/nim/bin/nimgrep
/usr/lib64/nim/bin/nimpretty
/usr/lib64/nim/bin/nimsuggest
/usr/lib64/nim/compiler
/usr/lib64/nim/compiler/aliases.nim
/usr/lib64/nim/compiler/ast.nim
/usr/lib64/nim/compiler/astalgo.nim
/usr/lib64/nim/compiler/astmsgs.nim
/usr/lib64/nim/compiler/bitsets.nim
/usr/lib64/nim/compiler/btrees.nim
/usr/lib64/nim/compiler/ccgcalls.nim
/usr/lib64/nim/compiler/ccgexprs.nim
/usr/lib64/nim/compiler/ccgliterals.nim
/usr/lib64/nim/compiler/ccgmerge_unused.nim
/usr/lib64/nim/compiler/ccgreset.nim
/usr/lib64/nim/compiler/ccgstmts.nim
/usr/lib64/nim/compiler/ccgthreadvars.nim
/usr/lib64/nim/compiler/ccgtrav.nim
/usr/lib64/nim/compiler/ccgtypes.nim
/usr/lib64/nim/compiler/ccgutils.nim
/usr/lib64/nim/compiler/cgen.nim
/usr/lib64/nim/compiler/cgendata.nim
/usr/lib64/nim/compiler/cgmeth.nim
/usr/lib64/nim/compiler/closureiters.nim
/usr/lib64/nim/compiler/cmdlinehelper.nim
/usr/lib64/nim/compiler/commands.nim
/usr/lib64/nim/compiler/concepts.nim
/usr/lib64/nim/compiler/condsyms.nim
/usr/lib64/nim/compiler/debuginfo.nim
/usr/lib64/nim/compiler/debugutils.nim
/usr/lib64/nim/compiler/depends.nim
/usr/lib64/nim/compiler/dfa.nim
/usr/lib64/nim/compiler/docgen.nim
/usr/lib64/nim/compiler/docgen2.nim
/usr/lib64/nim/compiler/enumtostr.nim
/usr/lib64/nim/compiler/errorhandling.nim
/usr/lib64/nim/compiler/evalffi.nim
/usr/lib64/nim/compiler/evaltempl.nim
/usr/lib64/nim/compiler/extccomp.nim
/usr/lib64/nim/compiler/filter_tmpl.nim
/usr/lib64/nim/compiler/filters.nim
/usr/lib64/nim/compiler/gorgeimpl.nim
/usr/lib64/nim/compiler/guards.nim
/usr/lib64/nim/compiler/hlo.nim
/usr/lib64/nim/compiler/ic
/usr/lib64/nim/compiler/ic/bitabs.nim
/usr/lib64/nim/compiler/ic/cbackend.nim
/usr/lib64/nim/compiler/ic/dce.nim
/usr/lib64/nim/compiler/ic/design.rst
/usr/lib64/nim/compiler/ic/ic.nim
/usr/lib64/nim/compiler/ic/integrity.nim
/usr/lib64/nim/compiler/ic/navigator.nim
/usr/lib64/nim/compiler/ic/packed_ast.nim
/usr/lib64/nim/compiler/ic/replayer.nim
/usr/lib64/nim/compiler/ic/rodfiles.nim
/usr/lib64/nim/compiler/idents.nim
/usr/lib64/nim/compiler/importer.nim
/usr/lib64/nim/compiler/index.nim
/usr/lib64/nim/compiler/injectdestructors.nim
/usr/lib64/nim/compiler/installer.ini
/usr/lib64/nim/compiler/int128.nim
/usr/lib64/nim/compiler/isolation_check.nim
/usr/lib64/nim/compiler/jsgen.nim
/usr/lib64/nim/compiler/jstypes.nim
/usr/lib64/nim/compiler/lambdalifting.nim
/usr/lib64/nim/compiler/layouter.nim
/usr/lib64/nim/compiler/lexer.nim
/usr/lib64/nim/compiler/liftdestructors.nim
/usr/lib64/nim/compiler/liftlocals.nim
/usr/lib64/nim/compiler/lineinfos.nim
/usr/lib64/nim/compiler/linter.nim
/usr/lib64/nim/compiler/llstream.nim
/usr/lib64/nim/compiler/lookups.nim
/usr/lib64/nim/compiler/lowerings.nim
/usr/lib64/nim/compiler/macrocacheimpl.nim
/usr/lib64/nim/compiler/magicsys.nim
/usr/lib64/nim/compiler/main.nim
/usr/lib64/nim/compiler/mapping.txt
/usr/lib64/nim/compiler/modulegraphs.nim
/usr/lib64/nim/compiler/modulepaths.nim
/usr/lib64/nim/compiler/modules.nim
/usr/lib64/nim/compiler/msgs.nim
/usr/lib64/nim/compiler/ndi.nim
/usr/lib64/nim/compiler/nilcheck.nim
/usr/lib64/nim/compiler/nim.cfg
/usr/lib64/nim/compiler/nim.nim
/usr/lib64/nim/compiler/nimblecmd.nim
/usr/lib64/nim/compiler/nimconf.nim
/usr/lib64/nim/compiler/nimeval.nim
/usr/lib64/nim/compiler/nimfix
/usr/lib64/nim/compiler/nimfix/nimfix.nim
/usr/lib64/nim/compiler/nimfix/nimfix.nim.cfg
/usr/lib64/nim/compiler/nimfix/prettybase.nim
/usr/lib64/nim/compiler/nimlexbase.nim
/usr/lib64/nim/compiler/nimpaths.nim
/usr/lib64/nim/compiler/nimsets.nim
/usr/lib64/nim/compiler/nodejs.nim
/usr/lib64/nim/compiler/nversion.nim
/usr/lib64/nim/compiler/optimizer.nim
/usr/lib64/nim/compiler/options.nim
/usr/lib64/nim/compiler/packagehandling.nim
/usr/lib64/nim/compiler/packages.nim
/usr/lib64/nim/compiler/parampatterns.nim
/usr/lib64/nim/compiler/parser.nim
/usr/lib64/nim/compiler/passaux.nim
/usr/lib64/nim/compiler/passes.nim
/usr/lib64/nim/compiler/pathutils.nim
/usr/lib64/nim/compiler/patterns.nim
/usr/lib64/nim/compiler/platform.nim
/usr/lib64/nim/compiler/plugins
/usr/lib64/nim/compiler/plugins/active.nim
/usr/lib64/nim/compiler/plugins/itersgen.nim
/usr/lib64/nim/compiler/plugins/locals.nim
/usr/lib64/nim/compiler/pluginsupport.nim
/usr/lib64/nim/compiler/pragmas.nim
/usr/lib64/nim/compiler/prefixmatches.nim
/usr/lib64/nim/compiler/procfind.nim
/usr/lib64/nim/compiler/readme.md
/usr/lib64/nim/compiler/renderer.nim
/usr/lib64/nim/compiler/renderverbatim.nim
/usr/lib64/nim/compiler/reorder.nim
/usr/lib64/nim/compiler/rodutils.nim
/usr/lib64/nim/compiler/ropes.nim
/usr/lib64/nim/compiler/saturate.nim
/usr/lib64/nim/compiler/scriptconfig.nim
/usr/lib64/nim/compiler/sem.nim
/usr/lib64/nim/compiler/semcall.nim
/usr/lib64/nim/compiler/semdata.nim
/usr/lib64/nim/compiler/semexprs.nim
/usr/lib64/nim/compiler/semfields.nim
/usr/lib64/nim/compiler/semfold.nim
/usr/lib64/nim/compiler/semgnrc.nim
/usr/lib64/nim/compiler/seminst.nim
/usr/lib64/nim/compiler/semmacrosanity.nim
/usr/lib64/nim/compiler/semmagic.nim
/usr/lib64/nim/compiler/semobjconstr.nim
/usr/lib64/nim/compiler/semparallel.nim
/usr/lib64/nim/compiler/sempass2.nim
/usr/lib64/nim/compiler/semstmts.nim
/usr/lib64/nim/compiler/semtempl.nim
/usr/lib64/nim/compiler/semtypes.nim
/usr/lib64/nim/compiler/semtypinst.nim
/usr/lib64/nim/compiler/sighashes.nim
/usr/lib64/nim/compiler/sigmatch.nim
/usr/lib64/nim/compiler/sinkparameter_inference.nim
/usr/lib64/nim/compiler/sizealignoffsetimpl.nim
/usr/lib64/nim/compiler/sourcemap.nim
/usr/lib64/nim/compiler/spawn.nim
/usr/lib64/nim/compiler/strutils2.nim
/usr/lib64/nim/compiler/suggest.nim
/usr/lib64/nim/compiler/syntaxes.nim
/usr/lib64/nim/compiler/tccgen.nim
/usr/lib64/nim/compiler/transf.nim
/usr/lib64/nim/compiler/trees.nim
/usr/lib64/nim/compiler/treetab.nim
/usr/lib64/nim/compiler/typeallowed.nim
/usr/lib64/nim/compiler/types.nim
/usr/lib64/nim/compiler/typesrenderer.nim
/usr/lib64/nim/compiler/varpartitions.nim
/usr/lib64/nim/compiler/vm.nim
/usr/lib64/nim/compiler/vmconv.nim
/usr/lib64/nim/compiler/vmdef.nim
/usr/lib64/nim/compiler/vmdeps.nim
/usr/lib64/nim/compiler/vmgen.nim
/usr/lib64/nim/compiler/vmhooks.nim
/usr/lib64/nim/compiler/vmmarshal.nim
/usr/lib64/nim/compiler/vmops.nim
/usr/lib64/nim/compiler/vmprofiler.nim
/usr/lib64/nim/compiler/wordrecg.nim
/usr/lib64/nim/lib
/usr/lib64/nim/lib/arch
/usr/lib64/nim/lib/arch/x86
/usr/lib64/nim/lib/arch/x86/amd64.S
/usr/lib64/nim/lib/arch/x86/i386.S
/usr/lib64/nim/lib/compilation.nim
/usr/lib64/nim/lib/core
/usr/lib64/nim/lib/core/hotcodereloading.nim
/usr/lib64/nim/lib/core/locks.nim
/usr/lib64/nim/lib/core/macrocache.nim
/usr/lib64/nim/lib/core/macros.nim
/usr/lib64/nim/lib/core/rlocks.nim
/usr/lib64/nim/lib/core/typeinfo.nim
/usr/lib64/nim/lib/cycle.h
/usr/lib64/nim/lib/deprecated
/usr/lib64/nim/lib/deprecated/pure
/usr/lib64/nim/lib/deprecated/pure/LockFreeHash.nim
/usr/lib64/nim/lib/deprecated/pure/events.nim
/usr/lib64/nim/lib/deprecated/pure/ospaths.nim
/usr/lib64/nim/lib/deprecated/pure/parseopt2.nim
/usr/lib64/nim/lib/deprecated/pure/securehash.nim
/usr/lib64/nim/lib/deprecated/pure/sharedstrings.nim
/usr/lib64/nim/lib/deps.txt
/usr/lib64/nim/lib/experimental
/usr/lib64/nim/lib/experimental/diff.nim
/usr/lib64/nim/lib/genode
/usr/lib64/nim/lib/genode/alloc.nim
/usr/lib64/nim/lib/genode/env.nim
/usr/lib64/nim/lib/genode_cpp
/usr/lib64/nim/lib/genode_cpp/syslocks.h
/usr/lib64/nim/lib/genode_cpp/threads.h
/usr/lib64/nim/lib/impure
/usr/lib64/nim/lib/impure/db_mysql.nim
/usr/lib64/nim/lib/impure/db_odbc.nim
/usr/lib64/nim/lib/impure/db_postgres.nim
/usr/lib64/nim/lib/impure/db_sqlite.nim
/usr/lib64/nim/lib/impure/nre
/usr/lib64/nim/lib/impure/nre.nim
/usr/lib64/nim/lib/impure/nre/private
/usr/lib64/nim/lib/impure/nre/private/util.nim
/usr/lib64/nim/lib/impure/rdstdin.nim
/usr/lib64/nim/lib/impure/re.nim
/usr/lib64/nim/lib/js
/usr/lib64/nim/lib/js/asyncjs.nim
/usr/lib64/nim/lib/js/dom.nim
/usr/lib64/nim/lib/js/dom_extensions.nim
/usr/lib64/nim/lib/js/jsconsole.nim
/usr/lib64/nim/lib/js/jscore.nim
/usr/lib64/nim/lib/js/jsffi.nim
/usr/lib64/nim/lib/js/jsre.nim
/usr/lib64/nim/lib/nimbase.h
/usr/lib64/nim/lib/nimhcr.nim
/usr/lib64/nim/lib/nimhcr.nim.cfg
/usr/lib64/nim/lib/nimrtl.nim
/usr/lib64/nim/lib/nimrtl.nim.cfg
/usr/lib64/nim/lib/packages
/usr/lib64/nim/lib/packages/docutils
/usr/lib64/nim/lib/packages/docutils/docutils.nimble.old
/usr/lib64/nim/lib/packages/docutils/highlite.nim
/usr/lib64/nim/lib/packages/docutils/rst.nim
/usr/lib64/nim/lib/packages/docutils/rstast.nim
/usr/lib64/nim/lib/packages/docutils/rstgen.nim
/usr/lib64/nim/lib/posix
/usr/lib64/nim/lib/posix/epoll.nim
/usr/lib64/nim/lib/posix/inotify.nim
/usr/lib64/nim/lib/posix/kqueue.nim
/usr/lib64/nim/lib/posix/linux.nim
/usr/lib64/nim/lib/posix/posix.nim
/usr/lib64/nim/lib/posix/posix_freertos_consts.nim
/usr/lib64/nim/lib/posix/posix_haiku.nim
/usr/lib64/nim/lib/posix/posix_linux_amd64.nim
/usr/lib64/nim/lib/posix/posix_linux_amd64_consts.nim
/usr/lib64/nim/lib/posix/posix_macos_amd64.nim
/usr/lib64/nim/lib/posix/posix_nintendoswitch.nim
/usr/lib64/nim/lib/posix/posix_nintendoswitch_consts.nim
/usr/lib64/nim/lib/posix/posix_openbsd_amd64.nim
/usr/lib64/nim/lib/posix/posix_other.nim
/usr/lib64/nim/lib/posix/posix_other_consts.nim
/usr/lib64/nim/lib/posix/posix_utils.nim
/usr/lib64/nim/lib/posix/termios.nim
/usr/lib64/nim/lib/pure
/usr/lib64/nim/lib/pure/algorithm.nim
/usr/lib64/nim/lib/pure/async.nim
/usr/lib64/nim/lib/pure/asyncdispatch.nim
/usr/lib64/nim/lib/pure/asyncdispatch.nim.cfg
/usr/lib64/nim/lib/pure/asyncfile.nim
/usr/lib64/nim/lib/pure/asyncftpclient.nim
/usr/lib64/nim/lib/pure/asyncfutures.nim
/usr/lib64/nim/lib/pure/asynchttpserver.nim
/usr/lib64/nim/lib/pure/asyncmacro.nim
/usr/lib64/nim/lib/pure/asyncnet.nim
/usr/lib64/nim/lib/pure/asyncstreams.nim
/usr/lib64/nim/lib/pure/base64.nim
/usr/lib64/nim/lib/pure/bitops.nim
/usr/lib64/nim/lib/pure/browsers.nim
/usr/lib64/nim/lib/pure/cgi.nim
/usr/lib64/nim/lib/pure/collections
/usr/lib64/nim/lib/pure/collections/chains.nim
/usr/lib64/nim/lib/pure/collections/critbits.nim
/usr/lib64/nim/lib/pure/collections/deques.nim
/usr/lib64/nim/lib/pure/collections/hashcommon.nim
/usr/lib64/nim/lib/pure/collections/heapqueue.nim
/usr/lib64/nim/lib/pure/collections/intsets.nim
/usr/lib64/nim/lib/pure/collections/lists.nim
/usr/lib64/nim/lib/pure/collections/rtarrays.nim
/usr/lib64/nim/lib/pure/collections/sequtils.nim
/usr/lib64/nim/lib/pure/collections/setimpl.nim
/usr/lib64/nim/lib/pure/collections/sets.nim
/usr/lib64/nim/lib/pure/collections/sharedlist.nim
/usr/lib64/nim/lib/pure/collections/sharedtables.nim
/usr/lib64/nim/lib/pure/collections/tableimpl.nim
/usr/lib64/nim/lib/pure/collections/tables.nim
/usr/lib64/nim/lib/pure/colors.nim
/usr/lib64/nim/lib/pure/complex.nim
/usr/lib64/nim/lib/pure/concurrency
/usr/lib64/nim/lib/pure/concurrency/atomics.nim
/usr/lib64/nim/lib/pure/concurrency/cpuinfo.nim
/usr/lib64/nim/lib/pure/concurrency/cpuload.nim
/usr/lib64/nim/lib/pure/concurrency/threadpool.nim
/usr/lib64/nim/lib/pure/concurrency/threadpool.nim.cfg
/usr/lib64/nim/lib/pure/cookies.nim
/usr/lib64/nim/lib/pure/coro.nim
/usr/lib64/nim/lib/pure/coro.nimcfg
/usr/lib64/nim/lib/pure/cstrutils.nim
/usr/lib64/nim/lib/pure/db_common.nim
/usr/lib64/nim/lib/pure/distros.nim
/usr/lib64/nim/lib/pure/dynlib.nim
/usr/lib64/nim/lib/pure/encodings.nim
/usr/lib64/nim/lib/pure/endians.nim
/usr/lib64/nim/lib/pure/fenv.nim
/usr/lib64/nim/lib/pure/future.nim
/usr/lib64/nim/lib/pure/hashes.nim
/usr/lib64/nim/lib/pure/htmlgen.nim
/usr/lib64/nim/lib/pure/htmlparser.nim
/usr/lib64/nim/lib/pure/httpclient.nim
/usr/lib64/nim/lib/pure/httpcore.nim
/usr/lib64/nim/lib/pure/includes
/usr/lib64/nim/lib/pure/includes/osenv.nim
/usr/lib64/nim/lib/pure/includes/oserr.nim
/usr/lib64/nim/lib/pure/includes/osseps.nim
/usr/lib64/nim/lib/pure/includes/unicode_ranges.nim
/usr/lib64/nim/lib/pure/ioselects
/usr/lib64/nim/lib/pure/ioselects/ioselectors_epoll.nim
/usr/lib64/nim/lib/pure/ioselects/ioselectors_kqueue.nim
/usr/lib64/nim/lib/pure/ioselects/ioselectors_poll.nim
/usr/lib64/nim/lib/pure/ioselects/ioselectors_select.nim
/usr/lib64/nim/lib/pure/json.nim
/usr/lib64/nim/lib/pure/lenientops.nim
/usr/lib64/nim/lib/pure/lexbase.nim
/usr/lib64/nim/lib/pure/logging.nim
/usr/lib64/nim/lib/pure/marshal.nim
/usr/lib64/nim/lib/pure/math.nim
/usr/lib64/nim/lib/pure/md5.nim
/usr/lib64/nim/lib/pure/memfiles.nim
/usr/lib64/nim/lib/pure/mersenne.nim
/usr/lib64/nim/lib/pure/mimetypes.nim
/usr/lib64/nim/lib/pure/nativesockets.nim
/usr/lib64/nim/lib/pure/net.nim
/usr/lib64/nim/lib/pure/nimprof.nim
/usr/lib64/nim/lib/pure/nimprof.nim.cfg
/usr/lib64/nim/lib/pure/nimtracker.nim
/usr/lib64/nim/lib/pure/oids.nim
/usr/lib64/nim/lib/pure/options.nim
/usr/lib64/nim/lib/pure/os.nim
/usr/lib64/nim/lib/pure/osproc.nim
/usr/lib64/nim/lib/pure/oswalkdir.nim
/usr/lib64/nim/lib/pure/parsecfg.nim
/usr/lib64/nim/lib/pure/parsecsv.nim
/usr/lib64/nim/lib/pure/parsejson.nim
/usr/lib64/nim/lib/pure/parseopt.nim
/usr/lib64/nim/lib/pure/parsesql.nim
/usr/lib64/nim/lib/pure/parseutils.nim
/usr/lib64/nim/lib/pure/parsexml.nim
/usr/lib64/nim/lib/pure/pathnorm.nim
/usr/lib64/nim/lib/pure/pegs.nim
/usr/lib64/nim/lib/pure/prelude.nim
/usr/lib64/nim/lib/pure/punycode.nim
/usr/lib64/nim/lib/pure/random.nim
/usr/lib64/nim/lib/pure/rationals.nim
/usr/lib64/nim/lib/pure/reservedmem.nim
/usr/lib64/nim/lib/pure/ropes.nim
/usr/lib64/nim/lib/pure/segfaults.nim
/usr/lib64/nim/lib/pure/selectors.nim
/usr/lib64/nim/lib/pure/smtp.nim
/usr/lib64/nim/lib/pure/smtp.nim.cfg
/usr/lib64/nim/lib/pure/ssl_certs.nim
/usr/lib64/nim/lib/pure/ssl_config.nim
/usr/lib64/nim/lib/pure/stats.nim
/usr/lib64/nim/lib/pure/streams.nim
/usr/lib64/nim/lib/pure/streamwrapper.nim
/usr/lib64/nim/lib/pure/strformat.nim
/usr/lib64/nim/lib/pure/strmisc.nim
/usr/lib64/nim/lib/pure/strscans.nim
/usr/lib64/nim/lib/pure/strtabs.nim
/usr/lib64/nim/lib/pure/strutils.nim
/usr/lib64/nim/lib/pure/sugar.nim
/usr/lib64/nim/lib/pure/terminal.nim
/usr/lib64/nim/lib/pure/times.nim
/usr/lib64/nim/lib/pure/typetraits.nim
/usr/lib64/nim/lib/pure/unicode.nim
/usr/lib64/nim/lib/pure/unidecode
/usr/lib64/nim/lib/pure/unidecode/unidecode.dat
/usr/lib64/nim/lib/pure/unidecode/unidecode.nim
/usr/lib64/nim/lib/pure/unittest.nim
/usr/lib64/nim/lib/pure/uri.nim
/usr/lib64/nim/lib/pure/volatile.nim
/usr/lib64/nim/lib/pure/xmlparser.nim
/usr/lib64/nim/lib/pure/xmltree.nim
/usr/lib64/nim/lib/std
/usr/lib64/nim/lib/std/compilesettings.nim
/usr/lib64/nim/lib/std/decls.nim
/usr/lib64/nim/lib/std/editdistance.nim
/usr/lib64/nim/lib/std/effecttraits.nim
/usr/lib64/nim/lib/std/enumerate.nim
/usr/lib64/nim/lib/std/enumutils.nim
/usr/lib64/nim/lib/std/exitprocs.nim
/usr/lib64/nim/lib/std/genasts.nim
/usr/lib64/nim/lib/std/importutils.nim
/usr/lib64/nim/lib/std/isolation.nim
/usr/lib64/nim/lib/std/jsbigints.nim
/usr/lib64/nim/lib/std/jsfetch.nim
/usr/lib64/nim/lib/std/jsformdata.nim
/usr/lib64/nim/lib/std/jsheaders.nim
/usr/lib64/nim/lib/std/jsonutils.nim
/usr/lib64/nim/lib/std/logic.nim
/usr/lib64/nim/lib/std/monotimes.nim
/usr/lib64/nim/lib/std/packedsets.nim
/usr/lib64/nim/lib/std/private
/usr/lib64/nim/lib/std/private/asciitables.nim
/usr/lib64/nim/lib/std/private/bitops_utils.nim
/usr/lib64/nim/lib/std/private/dbutils.nim
/usr/lib64/nim/lib/std/private/decode_helpers.nim
/usr/lib64/nim/lib/std/private/digitsutils.nim
/usr/lib64/nim/lib/std/private/gitutils.nim
/usr/lib64/nim/lib/std/private/globs.nim
/usr/lib64/nim/lib/std/private/jsutils.nim
/usr/lib64/nim/lib/std/private/miscdollars.nim
/usr/lib64/nim/lib/std/private/since.nim
/usr/lib64/nim/lib/std/private/strimpl.nim
/usr/lib64/nim/lib/std/private/underscored_calls.nim
/usr/lib64/nim/lib/std/private/win_setenv.nim
/usr/lib64/nim/lib/std/setutils.nim
/usr/lib64/nim/lib/std/sha1.nim
/usr/lib64/nim/lib/std/socketstreams.nim
/usr/lib64/nim/lib/std/stackframes.nim
/usr/lib64/nim/lib/std/strbasics.nim
/usr/lib64/nim/lib/std/sums.nim
/usr/lib64/nim/lib/std/sysrand.nim
/usr/lib64/nim/lib/std/tasks.nim
/usr/lib64/nim/lib/std/tempfiles.nim
/usr/lib64/nim/lib/std/time_t.nim
/usr/lib64/nim/lib/std/varints.nim
/usr/lib64/nim/lib/std/vmutils.nim
/usr/lib64/nim/lib/std/with.nim
/usr/lib64/nim/lib/std/wordwrap.nim
/usr/lib64/nim/lib/std/wrapnils.nim
/usr/lib64/nim/lib/stdlib.nimble
/usr/lib64/nim/lib/system
/usr/lib64/nim/lib/system.nim
/usr/lib64/nim/lib/system/alloc.nim
/usr/lib64/nim/lib/system/ansi_c.nim
/usr/lib64/nim/lib/system/arc.nim
/usr/lib64/nim/lib/system/arithm.nim
/usr/lib64/nim/lib/system/arithmetics.nim
/usr/lib64/nim/lib/system/assertions.nim
/usr/lib64/nim/lib/system/assign.nim
/usr/lib64/nim/lib/system/atomics.nim
/usr/lib64/nim/lib/system/avltree.nim
/usr/lib64/nim/lib/system/basic_types.nim
/usr/lib64/nim/lib/system/bitmasks.nim
/usr/lib64/nim/lib/system/cellseqs_v1.nim
/usr/lib64/nim/lib/system/cellseqs_v2.nim
/usr/lib64/nim/lib/system/cellsets.nim
/usr/lib64/nim/lib/system/cgprocs.nim
/usr/lib64/nim/lib/system/channels_builtin.nim
/usr/lib64/nim/lib/system/chcks.nim
/usr/lib64/nim/lib/system/comparisons.nim
/usr/lib64/nim/lib/system/coro_detection.nim
/usr/lib64/nim/lib/system/countbits_impl.nim
/usr/lib64/nim/lib/system/cyclebreaker.nim
/usr/lib64/nim/lib/system/deepcopy.nim
/usr/lib64/nim/lib/system/dollars.nim
/usr/lib64/nim/lib/system/dragonbox.nim
/usr/lib64/nim/lib/system/dyncalls.nim
/usr/lib64/nim/lib/system/embedded.nim
/usr/lib64/nim/lib/system/exceptions.nim
/usr/lib64/nim/lib/system/excpt.nim
/usr/lib64/nim/lib/system/fatal.nim
/usr/lib64/nim/lib/system/formatfloat.nim
/usr/lib64/nim/lib/system/gc.nim
/usr/lib64/nim/lib/system/gc2.nim
/usr/lib64/nim/lib/system/gc_common.nim
/usr/lib64/nim/lib/system/gc_hooks.nim
/usr/lib64/nim/lib/system/gc_interface.nim
/usr/lib64/nim/lib/system/gc_ms.nim
/usr/lib64/nim/lib/system/gc_regions.nim
/usr/lib64/nim/lib/system/hti.nim
/usr/lib64/nim/lib/system/inclrtl.nim
/usr/lib64/nim/lib/system/indexerrors.nim
/usr/lib64/nim/lib/system/integerops.nim
/usr/lib64/nim/lib/system/io.nim
/usr/lib64/nim/lib/system/iterators.nim
/usr/lib64/nim/lib/system/iterators_1.nim
/usr/lib64/nim/lib/system/jssys.nim
/usr/lib64/nim/lib/system/memalloc.nim
/usr/lib64/nim/lib/system/memory.nim
/usr/lib64/nim/lib/system/memtracker.nim
/usr/lib64/nim/lib/system/mm
/usr/lib64/nim/lib/system/mm/boehm.nim
/usr/lib64/nim/lib/system/mm/go.nim
/usr/lib64/nim/lib/system/mm/malloc.nim
/usr/lib64/nim/lib/system/mm/none.nim
/usr/lib64/nim/lib/system/mmdisp.nim
/usr/lib64/nim/lib/system/nimscript.nim
/usr/lib64/nim/lib/system/orc.nim
/usr/lib64/nim/lib/system/osalloc.nim
/usr/lib64/nim/lib/system/platforms.nim
/usr/lib64/nim/lib/system/profiler.nim
/usr/lib64/nim/lib/system/repr.nim
/usr/lib64/nim/lib/system/repr_impl.nim
/usr/lib64/nim/lib/system/repr_v2.nim
/usr/lib64/nim/lib/system/reprjs.nim
/usr/lib64/nim/lib/system/schubfach.nim
/usr/lib64/nim/lib/system/seqs_v2.nim
/usr/lib64/nim/lib/system/seqs_v2_reimpl.nim
/usr/lib64/nim/lib/system/setops.nim
/usr/lib64/nim/lib/system/sets.nim
/usr/lib64/nim/lib/system/stacktraces.nim
/usr/lib64/nim/lib/system/strmantle.nim
/usr/lib64/nim/lib/system/strs_v2.nim
/usr/lib64/nim/lib/system/syslocks.nim
/usr/lib64/nim/lib/system/sysspawn.nim
/usr/lib64/nim/lib/system/sysstr.nim
/usr/lib64/nim/lib/system/threadlocalstorage.nim
/usr/lib64/nim/lib/system/threads.nim
/usr/lib64/nim/lib/system/timers.nim
/usr/lib64/nim/lib/system/widestrs.nim
/usr/lib64/nim/lib/system_overview.rst
/usr/lib64/nim/lib/windows
/usr/lib64/nim/lib/windows/registry.nim
/usr/lib64/nim/lib/windows/winlean.nim
/usr/lib64/nim/lib/wrappers
/usr/lib64/nim/lib/wrappers/linenoise
/usr/lib64/nim/lib/wrappers/linenoise/LICENSE.txt
/usr/lib64/nim/lib/wrappers/linenoise/README.markdown
/usr/lib64/nim/lib/wrappers/linenoise/linenoise.c
/usr/lib64/nim/lib/wrappers/linenoise/linenoise.h
/usr/lib64/nim/lib/wrappers/linenoise/linenoise.nim
/usr/lib64/nim/lib/wrappers/mysql.nim
/usr/lib64/nim/lib/wrappers/odbcsql.nim
/usr/lib64/nim/lib/wrappers/openssl.nim
/usr/lib64/nim/lib/wrappers/pcre.nim
/usr/lib64/nim/lib/wrappers/postgres.nim
/usr/lib64/nim/lib/wrappers/sqlite3.nim
/usr/lib64/nim/lib/wrappers/tinyc.nim
/usr/lib64/nim/tools
/usr/lib64/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 Apr 27 01:37:30 2024