pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang/nim



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Tue Apr  3 03:24:56 UTC 2018

Modified Files:
        pkgsrc/lang/nim: Makefile PLIST distinfo

Log Message:
Update to 0.18.0

Changelog:
0.18.0:
Changes affecting backwards compatibility
Breaking changes in the standard library

    The [] proc for strings now raises an IndexError exception when the specified slice is out of bounds. See issue #6223 for more details. You can use substr(str, start, finish) to get the old 
behaviour back, see this commit for an example.

    strutils.split and strutils.rsplit with an empty string and a separator now returns that empty string. See issue #4377.

    Arrays of char cannot be converted to cstring anymore, pointers to arrays of char can! This means $ for arrays can finally exist in system.nim and do the right thing. This means $myArrayOfChar 
changed its behaviour! Compile with -d:nimNoArrayToString to see where to fix your code.

    reExtended is no longer default for the re constructor in the re module.

    The behavior of $ has been changed for all standard library collections. The collection-to-string implementations now perform proper quoting and escaping of strings and chars.

    newAsyncSocket taking an AsyncFD now runs setBlocking(false) on the fd.

    mod and bitwise and do not produce range subtypes anymore. This turned out to be more harmful than helpful and the language is simpler without this special typing rule.

    formatFloat/formatBiggestFloat now support formatting floats with zero precision digits. The previous precision = 0 behavior (default formatting) is now available via precision = -1.
    Moved from stdlib into Nimble packages:
        basic2d deprecated: use glm, arraymancer, neo, or another package instead
        basic3d deprecated: use glm, arraymancer, neo, or another package instead
        gentabs
        libuv
        polynumeric
        pdcurses
        romans
        libsvm
        joyent_http_parser

    Proc toCountTable now produces a CountTable with values correspoding to the number of occurrences of the key in the input. It used to produce a table with all values set to 1.

    Counting occurrences in a sequence used to be:

    let mySeq = @[1, 2, 1, 3, 1, 4]
    var myCounter = initCountTable[int]()

    for item in mySeq:
      myCounter.inc item

    Now, you can simply do:

    let
      mySeq = @[1, 2, 1, 3, 1, 4]
      myCounter = mySeq.toCountTable()

    If you use --dynlibOverride:ssl with OpenSSL 1.0.x, you now have to define openssl10 symbol (-d:openssl10). By default OpenSSL 1.1.x is assumed.

    newNativeSocket is now named createNativeSocket.

    newAsyncNativeSocket is now named createAsyncNativeSocket and it no longer raises an OS error but returns an osInvalidSocket when creation fails.

    The securehash module is now deprecated. Instead import std / sha1.
    The readPasswordFromStdin proc has been moved from the rdstdin to the terminal module, thus it does not depend on linenoise anymore.

Breaking changes in the compiler

    \n is now only the single line feed character like in most other programming languages. The new platform specific newline escape sequence is written as \p. This change only affects the Windows 
platform.

    The overloading rules changed slightly so that constrained generics are preferred over unconstrained generics. (Bug #6526)

    We changed how array accesses “from backwards” like a[^1] or a[0..^1] are implemented. These are now implemented purely in system.nim without compiler support. There is a new “heterogenous” slice 
type system.HSlice that takes 2 generic parameters which can be BackwardsIndex indices. BackwardsIndex is produced by system.^. This means if you overload [] or []= you need to ensure they also work 
with system.BackwardsIndex (if applicable for the accessors).

    The parsing rules of if expressions were changed so that multiple statements are allowed in the branches. We found few code examples that now fail because of this change, but here is one:

    t[ti] = if exp_negative: '-' else: '+'; inc(ti)

    This now needs to be written as:

    t[ti] = (if exp_negative: '-' else: '+'); inc(ti)

    The experimental overloading of the dot . operators now take an untyped parameter as the field name, it used to be a static[string]. You can use when defined(nimNewDot) to make your code work 
with both old and new Nim versions. See special-operators for more information.

    yield (or await which is mapped to yield) never worked reliably in an array, seq or object constructor and is now prevented at compile-time.

Library additions

    Added sequtils.mapLiterals for easier construction of array and tuple literals.

    Added system.runnableExamples to make examples in Nim’s documentation easier to write and test. The examples are tested as the last step of nim doc.

    Implemented getIoHandler proc in the asyncdispatch module that allows you to retrieve the underlying IO Completion Port or Selector[AsyncData] object in the specified dispatcher.

    For string formatting / interpolation a new module called strformat has been added to the stdlib.

    The ReadyKey type in the selectors module now contains an errorCode field to help distinguish between Event.Error events.

    Implemented an accept proc that works on a SocketHandle in nativesockets.

    Added algorithm.rotateLeft.

    Added typetraits.$ as an alias for typetraits.name.

    Added system.getStackTraceEntries that allows you to access the stack trace in a structured manner without string parsing.

    Added parseutils.parseSaturatedNatural.

    Added macros.unpackVarargs.

    Added support for asynchronous programming for the JavaScript backend using the asyncjs module.

    Added true color support for some terminals. Example:

    import colors, terminal

    const Nim = "Efficient and expressive programming."

    var
      fg = colYellow
      bg = colBlue
      int = 1.0

    enableTrueColors()

    for i in 1..15:
      styledEcho bgColor, bg, fgColor, fg, Nim, resetStyle
      int -= 0.01
      fg = intensity(fg, int)

    setForegroundColor colRed
    setBackgroundColor colGreen
    styledEcho "Red on Green.", resetStyle

Library changes

    echo now works with strings that contain \0 (the binary zero is not shown) and nil strings are equal to empty strings.

    JSON: Deprecated getBVal, getFNum, and getNum in favour of getBool, getFloat, getBiggestInt. A new getInt procedure was also added.

    rationals.toRational now uses an algorithm based on continued fractions. This means its results are more precise and it can’t run into an infinite loop anymore.

    os.getEnv now takes an optional default parameter that tells getEnv what to return if the environment variable does not exist.

    The random procs in random.nim have all been deprecated. Instead use the new rand procs. The module now exports the state of the random number generator as type Rand so multiple threads can 
easily use their own random number generators that do not require locking. For more information about this rename see issue #6934

    writeStackTrace is now proclaimed to have no IO effect (even though it does) so that it is more useful for debugging purposes.

    db_mysql module: DbConn is now a distinct type that doesn’t expose the details of the underlying PMySQL type.

    parseopt2 is now deprecated, use parseopt instead.

Language additions

    It is now possible to forward declare object types so that mutually recursive types can be created across module boundaries. See package level objects for more information.

    Added support for casting between integers of same bitsize in VM (compile time and nimscript). This allows to, among other things, reinterpret signed integers as unsigned.

    Custom pragmas are now supported using pragma pragma, please see language manual for details.

    Standard library modules can now also be imported via the std pseudo-directory. This is useful in order to distinguish between standard library and nimble package imports:

    import std / [strutils, os, osproc]
    import someNimblePackage / [strutils, os]

Language changes

    The unary < is now deprecated, for .. < use ..< for other usages use the pred proc.

    Bodies of for loops now get their own scope:

    # now compiles:
    for i in 0..4:
      let i = i + 1
      echo i

    To make Nim even more robust the system iterators .. and countup now only accept a single generic type T. This means the following code doesn’t die with an “out of range” error anymore:

    var b = 5.Natural
    var a = -5
    for i in a..b:
      echo i

    atomic and generic are no longer keywords in Nim. generic used to be an alias for concept, atomic was not used for anything.

    The memory manager now uses a variant of the TLSF algorithm that has much better memory fragmentation behaviour. According to http://www.gii.upv.es/tlsf/ the maximum fragmentation measured is 
lower than 25%. As a nice bonus alloc and dealloc became O(1) operations.

    The compiler is now more consistent in its treatment of ambiguous symbols: Types that shadow procs and vice versa are marked as ambiguous (bug #6693).

    codegenDecl pragma now works for the JavaScript backend. It returns an empty string for function return type placeholders.

    Extra semantic checks for procs with noreturn pragma: return type is not allowed, statements after call to noreturn procs are no longer allowed.
    Noreturn proc calls and raising exceptions branches are now skipped during common type deduction in if and case expressions. The following code snippets now compile:

    import strutils
    let str = "Y"
    let a = case str:
      of "Y": true
      of "N": false
      else: raise newException(ValueError, "Invalid boolean")
    let b = case str:
      of nil, "": raise newException(ValueError, "Invalid boolean")
      elif str.startsWith("Y"): true
      elif str.startsWith("N"): false
      else: false
    let c = if str == "Y": true
      elif str == "N": false
      else:
        echo "invalid bool"
        quit("this is the end")

    Pragmas now support call syntax, for example: {.exportc"myname".} and {.exportc("myname").}

    The deprecated pragma now supports a user-definable warning message for procs.

    proc bar {.deprecated: "use foo instead".} =
      return

    bar()

Tool changes

    The nim doc command is now an alias for nim doc2, the second version of the documentation generator. The old version 1 can still be accessed via the new nim doc0 command.

    Nim’s rst2html command now supports the testing of code snippets via an RST extension that we called :test:::

    .. code-block:: nim
        :test:
      # shows how the 'if' statement works
      if true: echo "yes"

0.17.0:
Changes affecting backwards compatibility

    There are now two different HTTP response types, Response and AsyncResponse. AsyncResponse’s body accessor returns a Future[string]!

    Due to this change you may need to add another await in your code.
    httpclient.request now respects the maxRedirects option. Previously redirects were handled only by get and post procs.
    The IO routines now raise EOFError for the “end of file” condition. EOFError is a subtype of IOError and so it’s easier to distinguish between “error during read” and “error due to EOF”.
    A hash procedure has been added for cstring type in hashes module. Previously, hash of a cstring would be calculated as a hash of the pointer. Now the hash is calculated from the contents of the 
string, assuming cstring is a null-terminated string. Equal string and cstring values produce an equal hash value.
    Macros accepting varargs arguments will now receive a node having the nkArgList node kind. Previous code expecting the node kind to be nkBracket may have to be updated.
    memfiles.open now closes file handles/fds by default. Passing allowRemap=true to memfiles.open recovers the old behavior. The old behavior is only needed to call mapMem on the resulting MemFile.
    posix.nim: For better C++ interop the field sa_sigaction*: proc (x: cint, y: var SigInfo, z: pointer) {.noconv.} was changed to sa_sigaction*: proc (x: cint, y: ptr SigInfo, z: pointer) 
{.noconv.}.
    The compiler doesn’t infer effects for .base methods anymore. This means you need to annotate them with .gcsafe or similar to clearly declare upfront every implementation needs to fullfill these 
contracts.
    system.getAst templateCall(x, y) now typechecks the templateCall properly. You need to patch your code accordingly.
    macros.getType and macros.getTypeImpl for an enum will now return an AST that is the same as what is used to define an enum. Previously the AST returned had a repeated EnumTy node and was missing 
the initial pragma node (which is currently empty for an enum).
    macros.getTypeImpl now correctly returns the implementation for a symbol of type tyGenericBody.
    If the dispatcher parameter’s value used in multi method is nil, a NilError exception is raised. The old behavior was that the method would be a nop then.
    posix.nim: the family of ntohs procs now takes unsigned integers instead of signed integers.
    In Nim identifiers en-dash (Unicode point U+2013) is not an alias for the underscore anymore. Use underscores instead.
    When the requiresInit pragma is applied to a record type, future versions of Nim will also require you to initialize all the fields of the type during object construction. For now, only a warning 
will be produced.
    The Object construction syntax now performs a number of additional safety checks. When fields within case objects are initialiazed, the compiler will now demand that the respective discriminator 
field has a matching known compile-time value.
    On posix, the results of waitForExit, peekExitCode, execCmd will return 128 + signal number if the application terminates via signal.
    ospaths.getConfigDir now conforms to the XDG Base Directory specification on non-Windows OSs. It returns the value of the XDG_CONFIG_DIR environment variable if it is set, and returns the default 
configuration directory, “~/.config/”, otherwise.
    Renamed the line info node parameter for newNimNode procedure.

    The parsing rules of do changed.

      foo bar do:
        baz

    Used to be parsed as:

      foo(bar(do:
        baz))

    Now it is parsed as:

      foo(bar, do:
        baz)

Library Additions

    Added system.onThreadDestruction.

    Added dial procedure to networking modules: net, asyncdispatch, asyncnet. It merges socket creation, address resolution, and connection into single step. When using dial, you don’t have to worry 
about the IPv4 vs IPv6 problem. httpclient now supports IPv6.

    Added to macro which allows JSON to be unmarshalled into a type.

      import json

      type
        Person = object
          name: string
          age: int

      let data = """
        {
          "name": "Amy",
          "age": 4
        }
      """

      let node = parseJson(data)
      let obj = node.to(Person)
      echo(obj)

Tool Additions

    The finish tool can now download MingW for you should it not find a working MingW installation.

Compiler Additions

    The name mangling rules used by the C code generator changed. Most of the time local variables and parameters are not mangled at all anymore. This improves the debugging experience.
    The compiler produces explicit name mangling files when --debugger:native is enabled. Debuggers can read these .ndi files in order to improve debugging Nim code.

Language Additions

    The try statement’s except branches now support the binding of a caught exception to a variable:

        try:
          raise newException(Exception, "Hello World")
        except Exception as exc:
          echo(exc.msg)

    This replaces the getCurrentException and getCurrentExceptionMsg() procedures, although these procedures will remain in the stdlib for the foreseeable future. This new language feature is 
actually implemented using these procedures.

    In the near future we will be converting all exception types to refs to remove the need for the newException template.
    A new pragma .used can be used for symbols to prevent the “declared but not used” warning. More details can be found here.

    The popular “colon block of statements” syntax is now also supported for let and var statements and assignments:

      template ve(value, effect): untyped =
        effect
        value

      let x = ve(4):
        echo "welcome to Nim!"

    This is particularly useful for DSLs that help in tree construction.

Language changes

    The .procvar annotation is not required anymore. That doesn’t mean you can pass system.$ to map just yet though.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/nim/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/nim/PLIST pkgsrc/lang/nim/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/nim/Makefile
diff -u pkgsrc/lang/nim/Makefile:1.3 pkgsrc/lang/nim/Makefile:1.4
--- pkgsrc/lang/nim/Makefile:1.3        Wed Feb 22 21:22:10 2017
+++ pkgsrc/lang/nim/Makefile    Tue Apr  3 03:24:56 2018
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2017/02/22 21:22:10 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2018/04/03 03:24:56 ryoon Exp $
 
-DISTNAME=      nim-0.16.0
+DISTNAME=      nim-0.18.0
 CATEGORIES=    lang
 MASTER_SITES=  http://nim-lang.org/download/
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/lang/nim/PLIST
diff -u pkgsrc/lang/nim/PLIST:1.2 pkgsrc/lang/nim/PLIST:1.3
--- pkgsrc/lang/nim/PLIST:1.2   Sun Feb  5 01:27:30 2017
+++ pkgsrc/lang/nim/PLIST       Tue Apr  3 03:24:56 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2017/02/05 01:27:30 kamil Exp $
+@comment $NetBSD: PLIST,v 1.3 2018/04/03 03:24:56 ryoon Exp $
 bin/nim
 nim/bin/nim
 nim/compiler.nimble
@@ -22,6 +22,8 @@ nim/compiler/commands.nim
 nim/compiler/condsyms.nim
 nim/compiler/debuginfo.nim
 nim/compiler/depends.nim
+nim/compiler/destroyer.nim
+nim/compiler/dfa.nim
 nim/compiler/docgen.nim
 nim/compiler/docgen2.nim
 nim/compiler/evalffi.nim
@@ -30,6 +32,7 @@ nim/compiler/extccomp.nim
 nim/compiler/filter_tmpl.nim
 nim/compiler/filters.nim
 nim/compiler/forloops.nim
+nim/compiler/gorgeimpl.nim
 nim/compiler/guards.nim
 nim/compiler/hlo.nim
 nim/compiler/idents.nim
@@ -40,6 +43,7 @@ nim/compiler/jsgen.nim
 nim/compiler/jstypes.nim
 nim/compiler/lambdalifting.nim
 nim/compiler/lexer.nim
+nim/compiler/liftlocals.nim
 nim/compiler/lists.nim
 nim/compiler/llstream.nim
 nim/compiler/lookups.nim
@@ -48,8 +52,10 @@ nim/compiler/magicsys.nim
 nim/compiler/main.nim
 nim/compiler/mapping.txt
 nim/compiler/modulegraphs.nim
+nim/compiler/modulepaths.nim
 nim/compiler/modules.nim
 nim/compiler/msgs.nim
+nim/compiler/ndi.nim
 nim/compiler/nim.cfg
 nim/compiler/nim.nim
 nim/compiler/nimblecmd.nim
@@ -77,9 +83,13 @@ nim/compiler/plugins/itersgen.nim
 nim/compiler/plugins/locals/locals.nim
 nim/compiler/pluginsupport.nim
 nim/compiler/pragmas.nim
+nim/compiler/prefixmatches.nim
 nim/compiler/procfind.nim
 nim/compiler/readme.txt
 nim/compiler/renderer.nim
+nim/compiler/reorder.nim
+nim/compiler/rod.nim
+nim/compiler/rodimpl.nim
 nim/compiler/rodread.nim
 nim/compiler/rodutils.nim
 nim/compiler/rodwrite.nim
@@ -90,7 +100,6 @@ nim/compiler/sem.nim
 nim/compiler/semasgn.nim
 nim/compiler/semcall.nim
 nim/compiler/semdata.nim
-nim/compiler/semdestruct.nim
 nim/compiler/semexprs.nim
 nim/compiler/semfields.nim
 nim/compiler/semfold.nim
@@ -98,6 +107,7 @@ nim/compiler/semgnrc.nim
 nim/compiler/seminst.nim
 nim/compiler/semmacrosanity.nim
 nim/compiler/semmagic.nim
+nim/compiler/semobjconstr.nim
 nim/compiler/semparallel.nim
 nim/compiler/sempass2.nim
 nim/compiler/semstmts.nim
@@ -110,7 +120,6 @@ nim/compiler/sigmatch.nim
 nim/compiler/suggest.nim
 nim/compiler/syntaxes.nim
 nim/compiler/tccgen.nim
-nim/compiler/testability.nim
 nim/compiler/transf.nim
 nim/compiler/trees.nim
 nim/compiler/treetab.nim
@@ -130,16 +139,18 @@ nim/config/nimdoc.cfg
 nim/config/nimdoc.tex.cfg
 nim/doc/advopt.txt
 nim/doc/basicopt.txt
-nim/lib/arch/arch.nim
-nim/lib/arch/i386.asm
-nim/lib/arch/ms_amd64.asm
-nim/lib/arch/ms_i386.asm
-nim/lib/arch/unix_amd64.asm
-nim/lib/arch/unix_i386.asm
+nim/doc/html/overview.html
+nim/lib/arch/x86/amd64.S
+nim/lib/arch/x86/i386.S
+nim/lib/core/allocators.nim
 nim/lib/core/locks.nim
 nim/lib/core/macros.nim
+nim/lib/core/refs.nim
 nim/lib/core/rlocks.nim
+nim/lib/core/seqs.nim
+nim/lib/core/strs.nim
 nim/lib/core/typeinfo.nim
+nim/lib/core/typelayouts.nim
 nim/lib/cycle.h
 nim/lib/deprecated/core/unsigned.nim
 nim/lib/deprecated/pure/actors.nim
@@ -149,6 +160,8 @@ nim/lib/deprecated/pure/ftpclient.nim
 nim/lib/deprecated/pure/parseurl.nim
 nim/lib/deprecated/pure/rawsockets.nim
 nim/lib/deprecated/pure/sockets.nim
+nim/lib/genode_cpp/syslocks.h
+nim/lib/genode_cpp/threads.h
 nim/lib/impure/db_mysql.nim
 nim/lib/impure/db_odbc.nim
 nim/lib/impure/db_postgres.nim
@@ -160,8 +173,10 @@ nim/lib/impure/osinfo_win.nim
 nim/lib/impure/rdstdin.nim
 nim/lib/impure/re.nim
 nim/lib/impure/ssl.nim
+nim/lib/js/asyncjs.nim
 nim/lib/js/dom.nim
 nim/lib/js/jsconsole.nim
+nim/lib/js/jsffi.nim
 nim/lib/nimbase.h
 nim/lib/nimrtl.nim
 nim/lib/nimrtl.nim.cfg
@@ -170,24 +185,31 @@ nim/lib/packages/docutils/highlite.nim
 nim/lib/packages/docutils/rst.nim
 nim/lib/packages/docutils/rstast.nim
 nim/lib/packages/docutils/rstgen.nim
+nim/lib/packages/fsmonitor.nim
 nim/lib/posix/epoll.nim
 nim/lib/posix/inotify.nim
 nim/lib/posix/kqueue.nim
 nim/lib/posix/linux.nim
 nim/lib/posix/posix.nim
+nim/lib/posix/posix_linux_amd64.nim
+nim/lib/posix/posix_linux_amd64_consts.nim
+nim/lib/posix/posix_other.nim
+nim/lib/posix/posix_other_consts.nim
 nim/lib/posix/termios.nim
 nim/lib/prelude.nim
 nim/lib/pure/algorithm.nim
+nim/lib/pure/async.nim
 nim/lib/pure/asyncdispatch.nim
 nim/lib/pure/asyncdispatch.nim.cfg
 nim/lib/pure/asyncfile.nim
 nim/lib/pure/asyncftpclient.nim
+nim/lib/pure/asyncfutures.nim
 nim/lib/pure/asynchttpserver.nim
 nim/lib/pure/asyncmacro.nim
 nim/lib/pure/asyncnet.nim
+nim/lib/pure/asyncstreams.nim
 nim/lib/pure/base64.nim
-nim/lib/pure/basic2d.nim
-nim/lib/pure/basic3d.nim
+nim/lib/pure/bitops.nim
 nim/lib/pure/browsers.nim
 nim/lib/pure/cgi.nim
 nim/lib/pure/collections/LockFreeHash.nim
@@ -215,30 +237,30 @@ nim/lib/pure/concurrency/threadpool.nim.
 nim/lib/pure/cookies.nim
 nim/lib/pure/coro.nim
 nim/lib/pure/coro.nimcfg
+nim/lib/pure/cstrutils.nim
 nim/lib/pure/db_common.nim
 nim/lib/pure/distros.nim
 nim/lib/pure/dynlib.nim
 nim/lib/pure/encodings.nim
 nim/lib/pure/endians.nim
-nim/lib/pure/etcpriv.nim
 nim/lib/pure/events.nim
 nim/lib/pure/fenv.nim
-nim/lib/pure/fsmonitor.nim
 nim/lib/pure/future.nim
-nim/lib/pure/gentabs.nim
 nim/lib/pure/hashes.nim
 nim/lib/pure/htmlgen.nim
 nim/lib/pure/htmlparser.nim
 nim/lib/pure/httpclient.nim
 nim/lib/pure/httpcore.nim
 nim/lib/pure/httpserver.nim
-nim/lib/pure/includes/asyncfutures.nim
-nim/lib/pure/ioselectors.nim
+nim/lib/pure/includes/asynccommon.nim
+nim/lib/pure/includes/osenv.nim
+nim/lib/pure/includes/oserr.nim
 nim/lib/pure/ioselects/ioselectors_epoll.nim
 nim/lib/pure/ioselects/ioselectors_kqueue.nim
 nim/lib/pure/ioselects/ioselectors_poll.nim
 nim/lib/pure/ioselects/ioselectors_select.nim
 nim/lib/pure/json.nim
+nim/lib/pure/lenientops.nim
 nim/lib/pure/lexbase.nim
 nim/lib/pure/logging.nim
 nim/lib/pure/marshal.nim
@@ -253,7 +275,6 @@ nim/lib/pure/net.nim
 nim/lib/pure/nimprof.nim
 nim/lib/pure/nimprof.nim.cfg
 nim/lib/pure/nimtracker.nim
-nim/lib/pure/numeric.nim
 nim/lib/pure/oids.nim
 nim/lib/pure/options.nim
 nim/lib/pure/os.nim
@@ -268,19 +289,19 @@ nim/lib/pure/parsesql.nim
 nim/lib/pure/parseutils.nim
 nim/lib/pure/parsexml.nim
 nim/lib/pure/pegs.nim
-nim/lib/pure/poly.nim
 nim/lib/pure/punycode.nim
 nim/lib/pure/random.nim
 nim/lib/pure/rationals.nim
-nim/lib/pure/romans.nim
 nim/lib/pure/ropes.nim
 nim/lib/pure/scgi.nim
 nim/lib/pure/securehash.nim
+nim/lib/pure/segfaults.nim
 nim/lib/pure/selectors.nim
 nim/lib/pure/smtp.nim
 nim/lib/pure/smtp.nim.cfg
 nim/lib/pure/stats.nim
 nim/lib/pure/streams.nim
+nim/lib/pure/strformat.nim
 nim/lib/pure/strmisc.nim
 nim/lib/pure/strscans.nim
 nim/lib/pure/strtabs.nim
@@ -295,10 +316,12 @@ nim/lib/pure/unidecode/unidecode.dat
 nim/lib/pure/unidecode/unidecode.nim
 nim/lib/pure/unittest.nim
 nim/lib/pure/uri.nim
+nim/lib/pure/volatile.nim
 nim/lib/pure/xmldom.nim
 nim/lib/pure/xmldomparser.nim
 nim/lib/pure/xmlparser.nim
 nim/lib/pure/xmltree.nim
+nim/lib/std/sha1.nim
 nim/lib/stdlib.nimble
 nim/lib/system.nim
 nim/lib/system/alloc.nim
@@ -321,7 +344,8 @@ nim/lib/system/gc.nim
 nim/lib/system/gc2.nim
 nim/lib/system/gc_common.nim
 nim/lib/system/gc_ms.nim
-nim/lib/system/gc_stack.nim
+nim/lib/system/gc_regions.nim
+nim/lib/system/genodealloc.nim
 nim/lib/system/hti.nim
 nim/lib/system/inclrtl.nim
 nim/lib/system/jssys.nim
@@ -341,24 +365,18 @@ nim/lib/system/sysstr.nim
 nim/lib/system/threads.nim
 nim/lib/system/timers.nim
 nim/lib/system/widestrs.nim
-nim/lib/upcoming/asyncdispatch.nim
 nim/lib/windows/registry.nim
 nim/lib/windows/winlean.nim
 nim/lib/wrappers/iup.nim
-nim/lib/wrappers/joyent_http_parser.nim
-nim/lib/wrappers/libsvm.nim
-nim/lib/wrappers/libuv.nim
 nim/lib/wrappers/linenoise/LICENSE.txt
 nim/lib/wrappers/linenoise/README.markdown
-nim/lib/wrappers/linenoise/clinenoise.c
-nim/lib/wrappers/linenoise/clinenoise.h
+nim/lib/wrappers/linenoise/linenoise.c
+nim/lib/wrappers/linenoise/linenoise.h
 nim/lib/wrappers/linenoise/linenoise.nim
 nim/lib/wrappers/mysql.nim
 nim/lib/wrappers/odbcsql.nim
 nim/lib/wrappers/openssl.nim
 nim/lib/wrappers/pcre.nim
-nim/lib/wrappers/pdcurses.nim
 nim/lib/wrappers/postgres.nim
 nim/lib/wrappers/sqlite3.nim
 nim/lib/wrappers/tinyc.nim
-@pkgdir nim/compiler/nimsuggest
Index: pkgsrc/lang/nim/distinfo
diff -u pkgsrc/lang/nim/distinfo:1.2 pkgsrc/lang/nim/distinfo:1.3
--- pkgsrc/lang/nim/distinfo:1.2        Sun Feb  5 01:27:30 2017
+++ pkgsrc/lang/nim/distinfo    Tue Apr  3 03:24:56 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2017/02/05 01:27:30 kamil Exp $
+$NetBSD: distinfo,v 1.3 2018/04/03 03:24:56 ryoon Exp $
 
-SHA1 (nim-0.16.0.tar.xz) = ef14fea436f9dc8155b0aeadbb332e3d53ea3df0
-RMD160 (nim-0.16.0.tar.xz) = 1a3e073cb24a73d7788f3b035104036132af22a5
-SHA512 (nim-0.16.0.tar.xz) = 6be1c00328b7e5bdaa9070e1cd0e3c6e1883c5bc1e44e9c574785f9bce93697f05753f598cf6fdaa6c5a66f08c2ad6f7afb8f6650fc3b1c8e461eb0cf80baabd
-Size (nim-0.16.0.tar.xz) = 2907076 bytes
+SHA1 (nim-0.18.0.tar.xz) = 2f261782f80aaf30b8a72b93fc79e9e10f331f1a
+RMD160 (nim-0.18.0.tar.xz) = aabb04f85eb0fe074a4e887a9e13ef42424e100a
+SHA512 (nim-0.18.0.tar.xz) = 6434da5350858c434c4d39afa60854a8accdffb1a975edfc92cbb32a25a11a6f677a5bb335ae164bdb42555936b2835a80529e4e1e66ccc6d325163cd8c416bc
+Size (nim-0.18.0.tar.xz) = 4415048 bytes



Home | Main Index | Thread Index | Old Index