Date: Wed, 29 May 2019 12:01:28 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502952 - head/devel/nimble Message-ID: <201905291201.x4TC1SHP057243@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Wed May 29 12:01:28 2019 New Revision: 502952 URL: https://svnweb.freebsd.org/changeset/ports/502952 Log: devel/nimble: Update to 0.10.0 Changelog: Nimble now uses the Nim compiler directly via nim e to execute nimble scripts rather than embedding the Nim VM. Several other features and fixes have been implemented to improve general development and test workflows: * nimble test now sports a -continue or -c flag that allows tests to continue on failure, removes all created test binaries on completion and warns if no tests found. * The --inclDeps or -i flag enables nimble uninstall to remove all dependent packages during uninstall. * Added documentation on the usage of a custom nimbleDir. * Package type interactive prompt is more readable. * Save temporary files in a per-user temp dir to enable Nimble on multi-user systems. * CTRL-C is now handled correctly in interactive prompts. * Fixed issue where empty package list led to error. * Fixed issue where file:// was prepended incorrectly. * Fixed miscellaneous issues in version parsing, Github auth and briefClone. * Miscellaneous cleanup of deprecated procs. https://github.com/nim-lang/nimble/blob/v0.10.0/changelog.markdown PR: 238187 Submitted by: Neal Nelson <ports@nicandneal.net> (maintainer) Modified: head/devel/nimble/Makefile head/devel/nimble/distinfo Modified: head/devel/nimble/Makefile ============================================================================== --- head/devel/nimble/Makefile Wed May 29 11:42:02 2019 (r502951) +++ head/devel/nimble/Makefile Wed May 29 12:01:28 2019 (r502952) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= nimble -PORTREVISION= 1 DISTVERSIONPREFIX= v -DISTVERSION= 0.9.0 +DISTVERSION= 0.10.0 CATEGORIES= devel MAINTAINER= ports@nicandneal.net Modified: head/devel/nimble/distinfo ============================================================================== --- head/devel/nimble/distinfo Wed May 29 11:42:02 2019 (r502951) +++ head/devel/nimble/distinfo Wed May 29 12:01:28 2019 (r502952) @@ -1,3 +1,3 @@ -TIMESTAMP = 1540824240 -SHA256 (nim-lang-nimble-v0.9.0_GH0.tar.gz) = d02cc0b1787fa30e6d88a1ee7aa067c1555b7763d2716742d1d10132df550456 -SIZE (nim-lang-nimble-v0.9.0_GH0.tar.gz) = 82152 +TIMESTAMP = 1559035056 +SHA256 (nim-lang-nimble-v0.10.0_GH0.tar.gz) = dd363ce99a96327a0fe53dec318adb096236530983a05d5b9c0b105fe904fc3b +SIZE (nim-lang-nimble-v0.10.0_GH0.tar.gz) = 85870
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905291201.x4TC1SHP057243>