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:           Fri Oct  4 13:25:23 UTC 2019

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

Log Message:
Update to 1.0.0

Changelog:
This is a major release containing nearly 60 commits. Most changes are bug fixes, but this release also includes a couple new features:

    Binaries can now be built and run using the new run command.
    The NimblePkgVersion is now defined so you can easily get the package version in your source code (example).

Some other highlights:

    Temporary files are now kept when the --debug flag is used.
    Fixed dependency resolution issues with "#head" packages (#432 and #672).
    The install command can now take Nim compiler flags via the new --passNim flag.
    Command line arguments are now passed properly to tasks (#633).
    The test command now respects the specified backend (#631).
    The dump command will no longer prompt and now has an implicit -y.
    Fixed bugs with the new nimscript executor (#665).
    Fixed multiple downloads and installs of the same package (#678).
    Nimble init no longer overwrites existing files (#581).
    Fixed incorrect submodule version being pulled when in a non-master branch (#675).


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/nim/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/nim/PLIST
cvs rdiff -u -r1.8 -r1.9 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.9 pkgsrc/lang/nim/Makefile:1.10
--- pkgsrc/lang/nim/Makefile:1.9        Wed Jul 17 21:56:37 2019
+++ pkgsrc/lang/nim/Makefile    Fri Oct  4 13:25:23 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2019/07/17 21:56:37 ryoon Exp $
+# $NetBSD: Makefile,v 1.10 2019/10/04 13:25:23 ryoon Exp $
 
-DISTNAME=      nim-0.20.2
+DISTNAME=      nim-1.0.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.7 pkgsrc/lang/nim/PLIST:1.8
--- pkgsrc/lang/nim/PLIST:1.7   Wed Jul 17 21:56:37 2019
+++ pkgsrc/lang/nim/PLIST       Fri Oct  4 13:25:23 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2019/07/17 21:56:37 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.8 2019/10/04 13:25:23 ryoon Exp $
 bin/nim
 nim/bin/nim
 nim/compiler.nimble
@@ -159,17 +159,18 @@ nim/lib/core/hotcodereloading.nim
 nim/lib/core/locks.nim
 nim/lib/core/macrocache.nim
 nim/lib/core/macros.nim
-nim/lib/core/refs.nim
 nim/lib/core/rlocks.nim
 nim/lib/core/runtime_v2.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/pure/LockFreeHash.nim
+nim/lib/deprecated/pure/events.nim
 nim/lib/deprecated/pure/ospaths.nim
 nim/lib/deprecated/pure/parseopt2.nim
 nim/lib/deprecated/pure/securehash.nim
+nim/lib/deprecated/pure/sharedstrings.nim
 nim/lib/experimental/diff.nim
 nim/lib/genode/alloc.nim
 nim/lib/genode/env.nim
@@ -231,7 +232,6 @@ nim/lib/pure/base64.nim
 nim/lib/pure/bitops.nim
 nim/lib/pure/browsers.nim
 nim/lib/pure/cgi.nim
-nim/lib/pure/collections/LockFreeHash.nim
 nim/lib/pure/collections/chains.nim
 nim/lib/pure/collections/critbits.nim
 nim/lib/pure/collections/deques.nim
@@ -244,7 +244,6 @@ nim/lib/pure/collections/sequtils.nim
 nim/lib/pure/collections/setimpl.nim
 nim/lib/pure/collections/sets.nim
 nim/lib/pure/collections/sharedlist.nim
-nim/lib/pure/collections/sharedstrings.nim
 nim/lib/pure/collections/sharedtables.nim
 nim/lib/pure/collections/tableimpl.nim
 nim/lib/pure/collections/tables.nim
@@ -264,7 +263,6 @@ nim/lib/pure/distros.nim
 nim/lib/pure/dynlib.nim
 nim/lib/pure/encodings.nim
 nim/lib/pure/endians.nim
-nim/lib/pure/events.nim
 nim/lib/pure/fenv.nim
 nim/lib/pure/future.nim
 nim/lib/pure/hashes.nim
@@ -339,6 +337,7 @@ nim/lib/pure/volatile.nim
 nim/lib/pure/xmlparser.nim
 nim/lib/pure/xmltree.nim
 nim/lib/std/editdistance.nim
+nim/lib/std/monotimes.nim
 nim/lib/std/sha1.nim
 nim/lib/std/sums.nim
 nim/lib/std/time_t.nim
@@ -357,17 +356,17 @@ nim/lib/system/cellsets.nim
 nim/lib/system/cgprocs.nim
 nim/lib/system/channels.nim
 nim/lib/system/chcks.nim
-nim/lib/system/debugger.nim
 nim/lib/system/deepcopy.nim
 nim/lib/system/dollars.nim
 nim/lib/system/dyncalls.nim
 nim/lib/system/embedded.nim
-nim/lib/system/endb.nim
 nim/lib/system/excpt.nim
 nim/lib/system/fatal.nim
+nim/lib/system/formatfloat.nim
 nim/lib/system/gc.nim
 nim/lib/system/gc2.nim
 nim/lib/system/gc_common.nim
+nim/lib/system/gc_hooks.nim
 nim/lib/system/gc_ms.nim
 nim/lib/system/gc_regions.nim
 nim/lib/system/hti.nim

Index: pkgsrc/lang/nim/distinfo
diff -u pkgsrc/lang/nim/distinfo:1.8 pkgsrc/lang/nim/distinfo:1.9
--- pkgsrc/lang/nim/distinfo:1.8        Wed Jul 17 21:56:37 2019
+++ pkgsrc/lang/nim/distinfo    Fri Oct  4 13:25:23 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.8 2019/07/17 21:56:37 ryoon Exp $
+$NetBSD: distinfo,v 1.9 2019/10/04 13:25:23 ryoon Exp $
 
-SHA1 (nim-0.20.2.tar.xz) = 5a503fde01fa877b13dc244e61ea4280dddfb9fe
-RMD160 (nim-0.20.2.tar.xz) = 7e5ec6ae96ddedbb1d4c476c14e09db85020aae4
-SHA512 (nim-0.20.2.tar.xz) = 231d95950ca5a7abe86175f93085ea27fae493e4f8dde3c9e086993431f9517781ceffeb4f9e761eb524523df3703d0a315fe53e32bc6daea6a684bf90589282
-Size (nim-0.20.2.tar.xz) = 5032768 bytes
+SHA1 (nim-1.0.0.tar.xz) = 81d315804146e608fb9892e6af75b8cba3690481
+RMD160 (nim-1.0.0.tar.xz) = 44e0cbe359b42cb2653b3101489136504910585b
+SHA512 (nim-1.0.0.tar.xz) = 951bbec06a6a1059214b485c5eddfa3c1be0a4ccf6ba98ac3ee624f57d36e86ae1212ffcb6d1bb7ea0938aabbe95a8a6587b140f3219ddb24ec7c93f5672266f
+Size (nim-1.0.0.tar.xz) = 5136624 bytes



Home | Main Index | Thread Index | Old Index