From owner-svn-ports-head@freebsd.org Wed May 29 12:01:29 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D37015C0F29; Wed, 29 May 2019 12:01:29 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1E268FD40; Wed, 29 May 2019 12:01:28 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE0D51572; Wed, 29 May 2019 12:01:28 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4TC1S99057244; Wed, 29 May 2019 12:01:28 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4TC1SHP057243; Wed, 29 May 2019 12:01:28 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201905291201.x4TC1SHP057243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 29 May 2019 12:01:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502952 - head/devel/nimble X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/devel/nimble X-SVN-Commit-Revision: 502952 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D1E268FD40 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.951,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 May 2019 12:01:29 -0000 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 (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