From owner-svn-ports-all@freebsd.org Sun Jan 24 09:42:46 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 6654D75CE; Sun, 24 Jan 2016 09:42:46 +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 3F977E24; Sun, 24 Jan 2016 09:42:46 +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 u0O9gjMF080865; Sun, 24 Jan 2016 09:42:45 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0O9gjkM080862; Sun, 24 Jan 2016 09:42:45 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201601240942.u0O9gjkM080862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 24 Jan 2016 09:42:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407093 - 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: Sun, 24 Jan 2016 09:42:46 -0000 Author: marino Date: Sun Jan 24 09:42:44 2016 New Revision: 407093 URL: https://svnweb.freebsd.org/changeset/ports/407093 Log: ports-mgmt/synth: Finish test mode and various fixes The following changes have been implemented: * The "test" command checks for file system violations between the configure and build targets (inclusive) * The "test" command hecks for leftover (extra), missing, and unexpectedly modified files and directories between the stage and deinstall targets (inclusive) * Fix bug where success system-upgrade was indicated as a failure * Bring in procfs mounts for x11-toolkits/gnustep-gui (only!) It appears to the be only port that needs it, but procfs appears to be pretty unstable, so we don't mount/dismount it unconditionally * Similarly, change linprocfs mounts/dismounts to only occur when when linux ports are building. Linprocfs stability is unknown (and I can't test it on DF) so be conservative and use it as little as possible. * Fix bug on builders /etc/group file (some groups were missing) * Install /etc/master.passwd in builders, it is required for at least one port * Install /etc/rc.d and /etc/defaults/rc.conf in builders. It is required for at least one port * Disable repository rebuild after synth-everything. Twice it has removed all packages (over 23,000!) after a build, so there's a bug or missing safeguard there. * Watchdog status: Situation is better if scons ports are unwatched, but python3* freezes along with a handful of other ports. It works 99% of the time, but not reliably enough yet to re-enable. Modified: head/ports-mgmt/synth/Makefile head/ports-mgmt/synth/distinfo Modified: head/ports-mgmt/synth/Makefile ============================================================================== --- head/ports-mgmt/synth/Makefile Sun Jan 24 09:29:28 2016 (r407092) +++ head/ports-mgmt/synth/Makefile Sun Jan 24 09:42:44 2016 (r407093) @@ -3,7 +3,7 @@ PORTNAME= synth PORTVERSION= 0.98 -PORTREVISION= 4 +PORTREVISION= 5 DISTVERSIONPREFIX= v CATEGORIES= ports-mgmt @@ -21,7 +21,7 @@ USES= ada:6 ncurses:port USE_GITHUB= yes GH_ACCOUNT= jrmarino GH_PROJECT= synth_external:bundle -GH_TAGNAME= v1.3:bundle 87fa713 +GH_TAGNAME= v1.3:bundle 4507b31 # When framework is moved to Ada6, the ada-util and ini-file-manager # libraries can be used as prebuilt (switch default.gpr url) @@ -42,12 +42,12 @@ do-build: (cd ${WRKSRC}/external/include/adacurses && ${SETENV} ${MAKE_ENV} \ gcc -I. -c ${csrc}.c -o ../../build/adacurses/${csrc}.o) .endfor - (cd ${WRKSRC}/synthexec && ${SETENV} ${MAKE_ENV} \ - gcc -c nonblock_wait.c -o ../build/nonblock_wait.o) + (cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} \ + gcc -c unix_core.c -o ../build/unix_core.o) (cd ${WRKSRC}/synthexec && ${SETENV} ${MAKE_ENV} \ gcc synthexec.c -o ../build/synthexec) (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} gnatmake -P default \ - -largs build/nonblock_wait.o) + -largs build/unix_core.o) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/build/synth \ Modified: head/ports-mgmt/synth/distinfo ============================================================================== --- head/ports-mgmt/synth/distinfo Sun Jan 24 09:29:28 2016 (r407092) +++ head/ports-mgmt/synth/distinfo Sun Jan 24 09:42:44 2016 (r407093) @@ -1,4 +1,4 @@ -SHA256 (jrmarino-synth-v0.98-87fa713_GH0.tar.gz) = aa5c5b3ec8c676c403d91ef0eecd0c4bef554fcfa7485a2e5bf01161d04d9986 -SIZE (jrmarino-synth-v0.98-87fa713_GH0.tar.gz) = 75751 +SHA256 (jrmarino-synth-v0.98-4507b31_GH0.tar.gz) = f31587d240e9e987b6088845ee20cadaf4a4fd690d654207202bce29fba7e984 +SIZE (jrmarino-synth-v0.98-4507b31_GH0.tar.gz) = 79026 SHA256 (jrmarino-synth_external-v1.3_GH0.tar.gz) = 2afc03e494d2394446eabdb5244967c202a79b449c7cad7ea67a87807cc25f44 SIZE (jrmarino-synth_external-v1.3_GH0.tar.gz) = 209283