From owner-svn-ports-all@freebsd.org Tue Feb 16 23:12:34 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8EA86AABC03; Tue, 16 Feb 2016 23:12:34 +0000 (UTC) (envelope-from marino@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 mx1.freebsd.org (Postfix) with ESMTPS id 698F61AF9; Tue, 16 Feb 2016 23:12:34 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1GNCXeB082948; Tue, 16 Feb 2016 23:12:33 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1GNCXYH082945; Tue, 16 Feb 2016 23:12:33 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201602162312.u1GNCXYH082945@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 16 Feb 2016 23:12:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409022 - head/ports-mgmt/synth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Feb 2016 23:12:34 -0000 Author: marino Date: Tue Feb 16 23:12:33 2016 New Revision: 409022 URL: https://svnweb.freebsd.org/changeset/ports/409022 Log: ports-mgmt/synth: Release version 1.00 I'm pleased to finally issue the first release of Synth. There were some significant changes since the last release candidate: * Rework piped command handling to fix command parsing Synth was using ada-util to execute external commands and receive the output. Unfortunately, this implementation currently can not handle either extra whitespace nor can it support quoted values. The author is going to fix this soon using popen and pclose for Unix, but I just implemented the functionality by binding to those functions myself. * This was the only use of ada-util (I originally expected to use more of this library's functionality) so it's been dropped as a dependency. This reduces the stripped executable size by about 30%. * The environment was prepopulated with UNAME_[x] variables. This is required for Synth to support building packages for different releases or even architectures (e.g. building 10.2 packages on 11.0-CURRENT). * Define OSREL in the builder's /etc/make.conf. This seemed to be required for emulators/virtio-kmod which uses
 although it's not
    clear defining OSREL is necessary.
  * Fix graceful shutdown handling in text mode.
    When the graceful shutdown key was changed from Escape to Control-Q, it
    stopped working in text mode (i.e. when it wasn't in curses).  I believe
    that's because the curses display uses the "raw" tty mode and lets all
    control characters through.  In text mode, Control-Q has a flow control
    functionality.  I wrote a routine to disable that flow control and give
    Synth access to control-Q keypress in all cases.
  * The same routine disables TTY echoes when they are unwanted
  * Fix "status-everything" dry-run issue where a graceful shutdown resulted
    in an unwanted "sorry" message.
  * In test mode file system violation check, mark changes to /var/run
    during building to be excluded from checks.
  * Add a guard that checks if Synth is launched when the current directory
    is /usr/local (or a subdirectory of it).  Synth will fail
    to mount everything in this case, so now it stops and tells the user
    to change directories and try again.

Modified:
  head/ports-mgmt/synth/Makefile
  head/ports-mgmt/synth/distinfo

Modified: head/ports-mgmt/synth/Makefile
==============================================================================
--- head/ports-mgmt/synth/Makefile	Tue Feb 16 22:48:43 2016	(r409021)
+++ head/ports-mgmt/synth/Makefile	Tue Feb 16 23:12:33 2016	(r409022)
@@ -2,9 +2,8 @@
 # $FreeBSD$
 
 PORTNAME=	synth
-PORTVERSION=	0.99
+PORTVERSION=	1.00
 DISTVERSIONPREFIX=	v
-PORTREVISION=	7
 CATEGORIES=	ports-mgmt
 
 MAINTAINER=	marino@FreeBSD.org
@@ -13,15 +12,14 @@ COMMENT=	Custom package repository build
 LICENSE=	ISCL
 LICENSE_FILE=	${WRKSRC}/License.txt
 
-#BUILD_DEPENDS=	${LOCALBASE}/lib/gnat/util.gpr:${PORTSDIR}/devel/ada-util \
-#		${LOCALBASE}/lib/gnat/${IFM}.gpr:${PORTSDIR}/misc/${IFM} \
+#BUILD_DEPENDS=	${LOCALBASE}/lib/gnat/${IFM}.gpr:${PORTSDIR}/misc/${IFM} \
 #		${LOCALBASE}/lib/gnat/${AC}.gpr:${PORTSDIR}/devel/${AC}
 
 USES=		ada:6 ncurses:port
 USE_GITHUB=	yes
 GH_ACCOUNT=	jrmarino
 GH_PROJECT=	synth_external:bundle
-GH_TAGNAME=	v1.3:bundle a8ed62b
+GH_TAGNAME=	v1.3:bundle
 
 # When framework is moved to Ada6, the ada-util and ini-file-manager
 # libraries can be used as prebuilt (switch default.gpr url)

Modified: head/ports-mgmt/synth/distinfo
==============================================================================
--- head/ports-mgmt/synth/distinfo	Tue Feb 16 22:48:43 2016	(r409021)
+++ head/ports-mgmt/synth/distinfo	Tue Feb 16 23:12:33 2016	(r409022)
@@ -1,4 +1,4 @@
-SHA256 (jrmarino-synth-v0.99-a8ed62b_GH0.tar.gz) = eaaf55991c069e4ab2c81da93cdb32de2d901ad3d7b07915f54def1be934f8a1
-SIZE (jrmarino-synth-v0.99-a8ed62b_GH0.tar.gz) = 90469
+SHA256 (jrmarino-synth-v1.00_GH0.tar.gz) = ac1d0a2bdc6db2eea9e88f4248451da09b95115ce57d7ca745d3616550a1e791
+SIZE (jrmarino-synth-v1.00_GH0.tar.gz) = 91578
 SHA256 (jrmarino-synth_external-v1.3_GH0.tar.gz) = 2afc03e494d2394446eabdb5244967c202a79b449c7cad7ea67a87807cc25f44
 SIZE (jrmarino-synth_external-v1.3_GH0.tar.gz) = 209283