From owner-freebsd-tcltk@FreeBSD.ORG Thu Mar 13 02:42:14 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A7F5B02; Thu, 13 Mar 2014 02:42:14 +0000 (UTC) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F9A1699; Thu, 13 Mar 2014 02:42:13 +0000 (UTC) Received: from ur.gsoft.com.au (Ur.gsoft.com.au [203.31.81.34]) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id s2D2fr1F020798 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Thu, 13 Mar 2014 13:11:58 +1030 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" Content-Type: multipart/signed; boundary="Apple-Mail=_176A1B19-945B-4623-B1EE-E58057155996"; protocol="application/pgp-signature"; micalg=pgp-sha1 Message-Id: Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Date: Thu, 13 Mar 2014 13:11:51 +1030 Subject: Tk86 not loadable via package require To: tcltk@FreeBSD.org X-Mailer: Apple Mail (2.1874) X-Spam-Score: -2.51 () ALL_TRUSTED,BAYES_00,T_RP_MATCHES_RCVD X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Cc: mm@FreeBSD.org X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 02:42:14 -0000 --Apple-Mail=_176A1B19-945B-4623-B1EE-E58057155996 Content-Type: multipart/mixed; boundary="Apple-Mail=_1697F2AD-2E20-4CE5-B699-44E2BE6CF715" --Apple-Mail=_1697F2AD-2E20-4CE5-B699-44E2BE6CF715 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Hi, I installed tcl86 and tk86 but I can't load Tk from tclsh86, eg.. [mdtest 2:27] ~ >tclsh8.6 tclsh8.6 [/local0~]package require Tk can't find package Tk while evaluating {package require Tk} It turns out that this is due to a broken = /usr/local/lib/tk8.6/pkgIndex.tcl It is.. if {[catch {package present Tcl 8.6.0}]} return package ifneeded Tk 8.6.1 [list load [file normalize [file join $dir .. = libtk86.so.1]] Tk] but the tcl86 reports as Tcl 8.6b2 hence the package present fails and = Tk is never loaded. It can be worked around by changing the 8.6.0 to 8.6b2 with the attached = patch. -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --Apple-Mail=_1697F2AD-2E20-4CE5-B699-44E2BE6CF715 Content-Disposition: attachment; filename=fix-package-require.diff Content-Type: application/octet-stream; x-unix-mode=0644; name="fix-package-require.diff" Content-Transfer-Encoding: 7bit diff -ur /usr/ports/x11-toolkits/tk86/files/patch-unix::Makefile.in tk86/files/patch-unix::Makefile.in --- /usr/ports/x11-toolkits/tk86/files/patch-unix::Makefile.in 2014-02-03 11:03:15.000000000 +0000 +++ tk86/files/patch-unix::Makefile.in 2014-03-13 02:39:59.000000000 +0000 @@ -1,5 +1,5 @@ ---- Makefile.in.orig 2013-09-17 14:25:13.000000000 +0200 -+++ Makefile.in 2014-02-03 12:02:57.000000000 +0100 +--- Makefile.in.orig 2013-09-17 12:25:13.000000000 +0000 ++++ Makefile.in 2014-03-13 02:39:39.000000000 +0000 @@ -64,6 +64,8 @@ # Directory in which to install the include file tk.h: @@ -59,6 +59,15 @@ @for i in "$(LIB_INSTALL_DIR)" "$(BIN_INSTALL_DIR)" \ "$(PKG_INSTALL_DIR)" "$(CONFIG_INSTALL_DIR)" ; \ do \ +@@ -727,7 +736,7 @@ + echo "Creating package index $(PKG_INDEX)"; \ + rm -f "$(PKG_INDEX)"; \ + (\ +- echo "if {[catch {package present Tcl 8.6.0}]} return";\ ++ echo "if {[catch {package present Tcl 8.6b2}]} return";\ + relative=`echo | awk '{ORS=" "; split("$(TK_PKG_DIR)",a,"/"); for (f in a) {print ".."}}'`;\ + if test "x$(DLL_INSTALL_DIR)" != "x$(BIN_INSTALL_DIR)"; then \ + echo "package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION)$(PATCH_LEVEL) [list load [file normalize [file join \$$dir $${relative}$(TK_LIB_FILE)]] Tk]";\ @@ -744,6 +753,10 @@ @echo "Installing $(LIB_FILE) to $(DLL_INSTALL_DIR)/" @@INSTALL_LIB@ --Apple-Mail=_1697F2AD-2E20-4CE5-B699-44E2BE6CF715 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii --Apple-Mail=_1697F2AD-2E20-4CE5-B699-44E2BE6CF715-- --Apple-Mail=_176A1B19-945B-4623-B1EE-E58057155996 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iD8DBQFTIRrv5ZPcIHs/zowRAkQMAJwNjvYp0ypfIaoo0Y+wB+rV6O+5dgCgmK0g fYdjscHI8+/LlbkkjX1Dz5c= =VnHl -----END PGP SIGNATURE----- --Apple-Mail=_176A1B19-945B-4623-B1EE-E58057155996-- From owner-freebsd-tcltk@FreeBSD.ORG Thu Mar 13 03:22:30 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30052538; Thu, 13 Mar 2014 03:22:30 +0000 (UTC) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A893DA9D; Thu, 13 Mar 2014 03:22:29 +0000 (UTC) Received: from ur.gsoft.com.au (Ur.gsoft.com.au [203.31.81.34]) (authenticated bits=0) by cain.gsoft.com.au (8.14.4/8.14.3) with ESMTP id s2D3MFGw023015 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO); Thu, 13 Mar 2014 13:52:20 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Subject: Re: Tk86 not loadable via package require Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Content-Type: multipart/signed; boundary="Apple-Mail=_AEB5BEA8-2678-4082-9548-FCF5909FC63E"; protocol="application/pgp-signature"; micalg=pgp-sha1 From: "Daniel O'Connor" In-Reply-To: Date: Thu, 13 Mar 2014 13:52:13 +1030 Message-Id: References: To: tcltk@FreeBSD.org X-Mailer: Apple Mail (2.1874) X-Spam-Score: -2.51 () ALL_TRUSTED,BAYES_00,T_RP_MATCHES_RCVD X-Scanned-By: MIMEDefang 2.67 on 203.31.81.10 Cc: mm@FreeBSD.org X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 03:22:30 -0000 --Apple-Mail=_AEB5BEA8-2678-4082-9548-FCF5909FC63E Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 13 Mar 2014, at 13:11, Daniel O'Connor wrote: > It can be worked around by changing the 8.6.0 to 8.6b2 with the = attached patch. Pleas disregard, I had an out of date tcl86 port installed -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C --Apple-Mail=_AEB5BEA8-2678-4082-9548-FCF5909FC63E Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iD8DBQFTISRl5ZPcIHs/zowRArQmAKCVu98sQowRSwUOD5u4QsEgbjZ+HACeMeFu FtntNeoiABM1MXgSplRQ6wY= =O8Pg -----END PGP SIGNATURE----- --Apple-Mail=_AEB5BEA8-2678-4082-9548-FCF5909FC63E-- From owner-freebsd-tcltk@FreeBSD.ORG Mon Apr 7 08:28:40 2014 Return-Path: Delivered-To: tcltk@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26A44DB1 for ; Mon, 7 Apr 2014 08:28:40 +0000 (UTC) Received: from portsmon.freebsd.org (portsmon.freebsd.org [IPv6:2001:1900:2254:206a::50:3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFF2F9DE for ; Mon, 7 Apr 2014 08:28:39 +0000 (UTC) Received: from portsmon.freebsd.org ([127.0.1.104]) by portsmon.freebsd.org (8.14.8/8.14.8) with ESMTP id s378SdIU090926 for ; Mon, 7 Apr 2014 08:28:39 GMT (envelope-from linimon@FreeBSD.org) Date: Mon, 7 Apr 2014 08:28:39 GMT Message-Id: <201404070828.s378SdIU090926@portsmon.freebsd.org> From: linimon@FreeBSD.org To: tcltk@freebsd.org Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Apr 2014 08:28:40 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: print/pdf4tcl broken because: Does not build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=print&portname=pdf4tcl If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-tcltk@FreeBSD.ORG Sun Apr 27 13:18:49 2014 Return-Path: Delivered-To: tcltk@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C09A1B5; Sun, 27 Apr 2014 13:18:49 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 1E8AF134C; Sun, 27 Apr 2014 13:18:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3RDIm79042255; Sun, 27 Apr 2014 13:18:48 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3RDImlN042254; Sun, 27 Apr 2014 13:18:48 GMT (envelope-from edwin) Date: Sun, 27 Apr 2014 13:18:48 GMT Message-Id: <201404271318.s3RDImlN042254@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tcltk@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/188712: lang/tcl85 on FreeBSD 10.0-STABLE fails to install with missing files X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Apr 2014 13:18:49 -0000 Synopsis: lang/tcl85 on FreeBSD 10.0-STABLE fails to install with missing files Responsible-Changed-From-To: freebsd-ports-bugs->tcltk Responsible-Changed-By: edwin Responsible-Changed-When: Sun Apr 27 13:18:48 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=188712 From owner-freebsd-tcltk@FreeBSD.ORG Mon Apr 28 08:17:55 2014 Return-Path: Delivered-To: tcltk@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D62FBDB6; Mon, 28 Apr 2014 08:17:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 AC43F199D; Mon, 28 Apr 2014 08:17:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3S8Htn7023768; Mon, 28 Apr 2014 08:17:55 GMT (envelope-from gahr@freefall.freebsd.org) Received: (from gahr@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3S8HtCL023767; Mon, 28 Apr 2014 08:17:55 GMT (envelope-from gahr) Date: Mon, 28 Apr 2014 08:17:55 GMT Message-Id: <201404280817.s3S8HtCL023767@freefall.freebsd.org> To: rallenh@hotmail.com, gahr@FreeBSD.org, tcltk@FreeBSD.org From: gahr@FreeBSD.org Subject: Re: ports/188712: lang/tcl85 on FreeBSD 10.0-STABLE fails to install with missing files X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 08:17:55 -0000 Synopsis: lang/tcl85 on FreeBSD 10.0-STABLE fails to install with missing files State-Changed-From-To: open->closed State-Changed-By: gahr State-Changed-When: Mon Apr 28 08:17:55 UTC 2014 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=188712 From owner-freebsd-tcltk@FreeBSD.ORG Mon Apr 28 08:20:01 2014 Return-Path: Delivered-To: tcltk@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 654CBDE2 for ; Mon, 28 Apr 2014 08:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 43E0B19B2 for ; Mon, 28 Apr 2014 08:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3S8K138024175 for ; Mon, 28 Apr 2014 08:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3S8K1oF024174; Mon, 28 Apr 2014 08:20:01 GMT (envelope-from gnats) Date: Mon, 28 Apr 2014 08:20:01 GMT Message-Id: <201404280820.s3S8K1oF024174@freefall.freebsd.org> To: tcltk@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/188712: commit references a PR X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 08:20:01 -0000 The following reply was made to PR ports/188712; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/188712: commit references a PR Date: Mon, 28 Apr 2014 08:17:54 +0000 (UTC) Author: gahr Date: Mon Apr 28 08:17:49 2014 New Revision: 352471 URL: http://svnweb.freebsd.org/changeset/ports/352471 QAT: https://qat.redports.org/buildarchive/r352471/ Log: - Fix PLIST with non-standard OPTIONS PR: 188712 Submitted by: Allen Hewes Modified: head/lang/tcl85/files/patch-unix-Makefile.in head/lang/tcl85/pkg-plist Modified: head/lang/tcl85/files/patch-unix-Makefile.in ============================================================================== --- head/lang/tcl85/files/patch-unix-Makefile.in Mon Apr 28 08:17:25 2014 (r352470) +++ head/lang/tcl85/files/patch-unix-Makefile.in Mon Apr 28 08:17:49 2014 (r352471) @@ -1,5 +1,5 @@ --- Makefile.in.orig 2013-09-13 18:07:56.000000000 +0200 -+++ Makefile.in 2014-02-03 10:23:39.000000000 +0100 ++++ Makefile.in 2014-04-28 09:48:13.000000000 +0200 @@ -54,6 +54,8 @@ # Directory in which to install the include file tcl.h: @@ -77,11 +77,11 @@ fi; \ done; - @for i in opt0.4 http1.0 encoding ../tcl8 ../tcl8/8.4 ../tcl8/8.4/platform ../tcl8/8.5; \ -+ @for i in opt0.4 http1.0 encoding; \ ++ @for i in encoding; \ do \ if [ ! -d "$(SCRIPT_INSTALL_DIR)"/$$i ] ; then \ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ -@@ -748,51 +766,53 @@ +@@ -748,51 +766,61 @@ fi; \ done; @echo "Installing header files to $(INCLUDE_INSTALL_DIR)/"; @@ -109,11 +109,6 @@ done; - @echo "Installing package http1.0 files to $(SCRIPT_INSTALL_DIR)/http1.0/"; - @for i in $(TOP_DIR)/library/http1.0/*.tcl ; \ -- do \ -- $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/http1.0; \ -- done; -- @echo "Installing package http 2.7.12 as a Tcl Module"; -- @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl "$(SCRIPT_INSTALL_DIR)"/../tcl8/8.4/http-2.7.12.tm; + @echo "Installing encoding files to $(SCRIPT_INSTALL_DIR)/encoding/"; + @for i in $(TOP_DIR)/library/encoding/*.enc ; do \ + $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/encoding; \ @@ -123,6 +118,17 @@ + "$(SCRIPT_INSTALL_DIR)"/tm.tcl; + +install-tm: ++ @for i in opt0.4 http1.0; \ + do \ +- $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/http1.0; \ ++ if [ ! -d "$(SCRIPT_INSTALL_DIR)"/$$i ] ; then \ ++ echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \ ++ $(INSTALL_DATA_DIR) "$(SCRIPT_INSTALL_DIR)"/$$i; \ ++ else true; \ ++ fi; \ + done; +- @echo "Installing package http 2.7.12 as a Tcl Module"; +- @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl "$(SCRIPT_INSTALL_DIR)"/../tcl8/8.4/http-2.7.12.tm; @echo "Installing package opt0.4 files to $(SCRIPT_INSTALL_DIR)/opt0.4/"; @for i in $(TOP_DIR)/library/opt/*.tcl ; \ do \ @@ -163,7 +169,7 @@ install-tzdata: @for i in tzdata; \ do \ -@@ -1564,7 +1584,7 @@ +@@ -1564,7 +1592,7 @@ match=1; \ fi; \ done; \ @@ -172,7 +178,7 @@ done # -@@ -1581,7 +1601,7 @@ +@@ -1581,7 +1609,7 @@ match=1; \ fi; \ done; \ Modified: head/lang/tcl85/pkg-plist ============================================================================== --- head/lang/tcl85/pkg-plist Mon Apr 28 08:17:25 2014 (r352470) +++ head/lang/tcl85/pkg-plist Mon Apr 28 08:17:49 2014 (r352471) @@ -108,8 +108,6 @@ lib/tcl%%TCL_VER%%/encoding/shiftjis.enc lib/tcl%%TCL_VER%%/encoding/symbol.enc lib/tcl%%TCL_VER%%/encoding/tis-620.enc lib/tcl%%TCL_VER%%/history.tcl -lib/tcl%%TCL_VER%%/http1.0/http.tcl -lib/tcl%%TCL_VER%%/http1.0/pkgIndex.tcl lib/tcl%%TCL_VER%%/init.tcl lib/tcl%%TCL_VER%%/msgs/af.msg lib/tcl%%TCL_VER%%/msgs/af_za.msg @@ -238,8 +236,6 @@ lib/tcl%%TCL_VER%%/msgs/zh_cn.msg lib/tcl%%TCL_VER%%/msgs/zh_hk.msg lib/tcl%%TCL_VER%%/msgs/zh_sg.msg lib/tcl%%TCL_VER%%/msgs/zh_tw.msg -lib/tcl%%TCL_VER%%/opt0.4/optparse.tcl -lib/tcl%%TCL_VER%%/opt0.4/pkgIndex.tcl lib/tcl%%TCL_VER%%/package.tcl lib/tcl%%TCL_VER%%/parray.tcl lib/tcl%%TCL_VER%%/safe.tcl @@ -1556,14 +1552,18 @@ lib/tcl%%TCL_VER%%/word.tcl %%TZDATA%%@dirrm lib/tcl%%TCL_VER%%/tzdata/Africa %%TZDATA%%@dirrm lib/tcl%%TCL_VER%%/tzdata %%MODULES%%lib/tcl%%TCL_VER%%/http-2.7.12.tm -%%MODULES%%lib/tcl%%TCL_VER%%/platform/shell-1.1.4.tm -%%MODULES%%lib/tcl%%TCL_VER%%/platform-1.0.12.tm +%%MODULES%%lib/tcl%%TCL_VER%%/http1.0/http.tcl +%%MODULES%%lib/tcl%%TCL_VER%%/http1.0/pkgIndex.tcl %%MODULES%%lib/tcl%%TCL_VER%%/msgcat-1.5.2.tm +%%MODULES%%lib/tcl%%TCL_VER%%/opt0.4/optparse.tcl +%%MODULES%%lib/tcl%%TCL_VER%%/opt0.4/pkgIndex.tcl +%%MODULES%%lib/tcl%%TCL_VER%%/platform-1.0.12.tm +%%MODULES%%lib/tcl%%TCL_VER%%/platform/shell-1.1.4.tm %%MODULES%%lib/tcl%%TCL_VER%%/tcltest-2.3.5.tm -@dirrm lib/tcl%%TCL_VER%%/platform -@dirrm lib/tcl%%TCL_VER%%/opt0.4 +%%MODULES%%@dirrm lib/tcl%%TCL_VER%%/platform +%%MODULES%%@dirrm lib/tcl%%TCL_VER%%/opt0.4 +%%MODULES%%@dirrm lib/tcl%%TCL_VER%%/http1.0 @dirrm lib/tcl%%TCL_VER%%/msgs -@dirrm lib/tcl%%TCL_VER%%/http1.0 @dirrm lib/tcl%%TCL_VER%%/encoding @dirrmtry lib/tcl%%TCL_VER%% @dirrm include/tcl%%TCL_VER%%/unix _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-tcltk@FreeBSD.ORG Sun May 4 17:17:57 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8893BB18; Sun, 4 May 2014 17:17:57 +0000 (UTC) Received: from mx1a.lautre.net (mx1a.lautre.net [80.67.160.71]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.lautre.net", Issuer "StartCom Class 2 Primary Intermediate Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49F641C84; Sun, 4 May 2014 17:17:56 +0000 (UTC) Received: from graf.pompo.net (graf.pompo.net [78.225.128.39]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: thierry@pompo.net) by mx1a.lautre.net (Postfix) with ESMTPSA id 1ED3840E59; Sun, 4 May 2014 19:17:54 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id A467F71E43A; Sun, 4 May 2014 19:17:53 +0200 (CEST) To: FreeBSD-gnats-submit@freebsd.org Subject: lang/tcl-wrapper: should install the sample configuration file by default From: Thierry Thomas X-send-pr-version: 3.114 X-GNATS-Notify: Message-Id: <20140504171753.A467F71E43A@graf.pompo.net> Date: Sun, 4 May 2014 19:17:53 +0200 (CEST) Cc: tcltk@FreeBSD.org X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Thierry Thomas List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2014 17:17:57 -0000 >Submitter-Id: current-users >Originator: Thierry Thomas >Organization: Kabbale Eros >Confidential: no >Synopsis: lang/tcl-wrapper: should install the sample configuration file by default >Severity: non-critical >Priority: medium >Category: ports >Class: change-request >Release: FreeBSD 10.0-STABLE amd64 >Environment: System: FreeBSD graf.pompo.net 10.0-STABLE FreeBSD 10.0-STABLE #1 r265158: Wed Apr 30 22:21:59 CEST 2014 thierry@graf.pompo.net:/usr/obj/usr/src/sys/GRAF140430 amd64 >Description: tclsh is not usable out of the box: it failw with the message Configuration file not found: /usr/local/etc/tclsh.conf Please see the sample configuration file for details: /usr/local/etc/tclsh.conf.sample Then, it cannot be used by other ports as a dependency. >How-To-Repeat: Just run tclsh. >Fix: Please install the sample configuration file as the default conf if the user has not already one. From owner-freebsd-tcltk@FreeBSD.ORG Sun May 4 17:20:04 2014 Return-Path: Delivered-To: tcltk@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69DEFB5E; Sun, 4 May 2014 17:20:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 412D61CF9; Sun, 4 May 2014 17:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s44HK4Gk075219; Sun, 4 May 2014 17:20:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s44HK4cW075218; Sun, 4 May 2014 17:20:04 GMT (envelope-from edwin) Date: Sun, 4 May 2014 17:20:04 GMT Message-Id: <201405041720.s44HK4cW075218@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tcltk@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/189359: lang/tcl-wrapper: should install the sample configuration file by default X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2014 17:20:04 -0000 Synopsis: lang/tcl-wrapper: should install the sample configuration file by default Responsible-Changed-From-To: freebsd-ports-bugs->tcltk Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 4 17:20:03 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=189359 From owner-freebsd-tcltk@FreeBSD.ORG Mon May 5 11:08:11 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B0656FB for ; Mon, 5 May 2014 11:08:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 D27431F9C for ; Mon, 5 May 2014 11:08:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s45B8Akm084935 for ; Mon, 5 May 2014 11:08:10 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s45B8APs084933 for tcltk@FreeBSD.org; Mon, 5 May 2014 11:08:10 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 5 May 2014 11:08:10 GMT Message-Id: <201405051108.s45B8APs084933@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: tcltk@FreeBSD.org Subject: Current problem reports assigned to tcltk@FreeBSD.org X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2014 11:08:11 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/189359 tcltk lang/tcl-wrapper: should install the sample configurat 1 problem total. From owner-freebsd-tcltk@FreeBSD.ORG Mon May 5 14:00:01 2014 Return-Path: Delivered-To: tcltk@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 478159D2 for ; Mon, 5 May 2014 14:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 3546010B0 for ; Mon, 5 May 2014 14:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s45E01kD048149 for ; Mon, 5 May 2014 14:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s45E01fK048147; Mon, 5 May 2014 14:00:01 GMT (envelope-from gnats) Date: Mon, 5 May 2014 14:00:01 GMT Message-Id: <201405051400.s45E01fK048147@freefall.freebsd.org> To: tcltk@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/189359: commit references a PR Reply-To: dfilter@FreeBSD.ORG (dfilter service) X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2014 14:00:01 -0000 The following reply was made to PR ports/189359; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/189359: commit references a PR Date: Mon, 5 May 2014 13:57:44 +0000 (UTC) Author: gahr Date: Mon May 5 13:57:35 2014 New Revision: 353003 URL: http://svnweb.freebsd.org/changeset/ports/353003 QAT: https://qat.redports.org/buildarchive/r353003/ Log: - Use the sample configuration file if the actual one is not available.This makes the wrapper usable right after make install. PR: 189359 Submitted by: Thierry Thomas Modified: head/lang/tcl-wrapper/Makefile head/lang/tcl-wrapper/files/wrapper.in Modified: head/lang/tcl-wrapper/Makefile ============================================================================== --- head/lang/tcl-wrapper/Makefile Mon May 5 13:48:25 2014 (r353002) +++ head/lang/tcl-wrapper/Makefile Mon May 5 13:57:35 2014 (r353003) @@ -3,7 +3,7 @@ PORTNAME= wrapper PORTVERSION= 1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang tcl MASTER_SITES= # empty PKGNAMEPREFIX= ${TX_PORT}- Modified: head/lang/tcl-wrapper/files/wrapper.in ============================================================================== --- head/lang/tcl-wrapper/files/wrapper.in Mon May 5 13:48:25 2014 (r353002) +++ head/lang/tcl-wrapper/files/wrapper.in Mon May 5 13:57:35 2014 (r353003) @@ -6,6 +6,10 @@ %%TX_SHELL_U%%= %%TX_SHELL_U%%_CONF=%%TX_CONF_FULL%% +if [ ! -f "${%%TX_SHELL_U%%_CONF}" ]; then + %%TX_SHELL_U%%_CONF=${%%TX_SHELL_U%%_CONF}.sample +fi + if [ -f "${%%TX_SHELL_U%%_CONF}" ]; then . ${%%TX_SHELL_U%%_CONF} if [ -n "${%%TX_SHELL_U%%}" ]; then _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-tcltk@FreeBSD.ORG Mon May 5 14:03:42 2014 Return-Path: Delivered-To: tcltk@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4F46A26; Mon, 5 May 2014 14:03:42 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 89990113F; Mon, 5 May 2014 14:03:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s45E3gjs051026; Mon, 5 May 2014 14:03:42 GMT (envelope-from gahr@freefall.freebsd.org) Received: (from gahr@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s45E3gic051025; Mon, 5 May 2014 14:03:42 GMT (envelope-from gahr) Date: Mon, 5 May 2014 14:03:42 GMT Message-Id: <201405051403.s45E3gic051025@freefall.freebsd.org> To: thierry@FreeBSD.org, gahr@FreeBSD.org, tcltk@FreeBSD.org From: gahr@FreeBSD.org Subject: Re: ports/189359: lang/tcl-wrapper: should install the sample configuration file by default X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 May 2014 14:03:42 -0000 Synopsis: lang/tcl-wrapper: should install the sample configuration file by default State-Changed-From-To: open->closed State-Changed-By: gahr State-Changed-When: Mon May 5 14:03:42 UTC 2014 State-Changed-Why: Fixed in a slightly different way. Now, if tclsh.conf doesn't exist, tclsh.conf.sample gets sourced instead. Thanks for the report! http://www.freebsd.org/cgi/query-pr.cgi?pr=189359 From owner-freebsd-tcltk@FreeBSD.ORG Sat May 10 15:36:27 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9D03317 for ; Sat, 10 May 2014 15:36:27 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 9D427C23 for ; Sat, 10 May 2014 15:36:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s4AFaR1o089556 for ; Sat, 10 May 2014 15:36:27 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s4AFaRX1089555 for tcltk@FreeBSD.org; Sat, 10 May 2014 15:36:27 GMT (envelope-from bdrewery) Received: (qmail 28216 invoked from network); 10 May 2014 10:34:31 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 10 May 2014 10:34:31 -0500 Message-ID: <536E46E0.7030906@FreeBSD.org> Date: Sat, 10 May 2014 10:33:52 -0500 From: Bryan Drewery Reply-To: portmgr-feedback@FreeBSD.org Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: FreeBSD Ports Subject: ACTION REQUIRED - Unstaged Ports being DEPRECATED on June 31st. X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NM3k2II1dNSbvov6bslS00FnNm0uu8OwL" X-Mailman-Approved-At: Sat, 10 May 2014 16:22:58 +0000 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 May 2014 15:36:27 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --NM3k2II1dNSbvov6bslS00FnNm0uu8OwL Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable You are receiving this mail as it affects FreeBSD ports that you maintain= =2E In September 2013, the Ports framework learned how to Stage ports. On June 31st, all unstaged ports will be marked DEPRECATED and have their MAINTAINER reset. On August 31st, all unstaged ports will be removed from the ports tree. Read on for more details. Staging is when the port installs into the work directory instead of into /. From here a package can be created without ever installing into / and often as a user without root. This also gives us abilities to improve quality of packages and opens up opportunities for sub-packages in the future. With staging we have had the ability to add in-tree testing of plists which in the past required a tool such as porttools, Tinderbox or Poudriere. A guide for converting your port to Staging can be found at: https://wiki.freebsd.org/ports/StageDir Staging is also mentioned throughout the Porters Handbook. You can test your plist with: Add DEVELOPER=3Dyes to /etc/make.conf # make stage # make check-plist However, Poudriere should be used to test staging conversions as it is much more strict than the in-tree checks currently. It will detect if something installs outside of the STAGEDIR. Poudriere 3.0.16 (just released) should be used for this testing, or the latest -devel version. Out of the more than 24,000 ports there remains 4,170 ports not yet staged. Staging is not optional. We must have all staged to progress with the framework, new features, and automated testing. We recently granted blanket approval to committers to stage ports without maintainer approval and then also blocked updates to unstaged ports in the hopes that this would force more ports to be converted. However with so many ports remaining unstaged at this point it is unknown if these ports are actually being maintained. So we will be DEPRECATING and resetting maintainer on all unstaged ports on June 31st. These ports will be set to EXPIRE on August 31st and will then be removed from the tree. They will not be restored unless someone stages them as well. This decision was not easy, but if a port is not being staged after almost a year, we wonder if the ports are actually maintained and updated for releases and security issues. If you have an unstaged port you will begin to receive email notifications informing you of this until it is staged or maintainer is reset. If you have a port that is unstaged, please stage it. If you do not have interest in maintaining it anymore then please release it. If you are using ports that are not staged please step up and send a PR today to stage the port and keep it. A guide for submitting patches is here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting= -submitting.html If you already have PR needing to be committed please let us know and we will try to get on them ASAP. --=20 Regards, Bryan Drewery on behalf of portmgr --NM3k2II1dNSbvov6bslS00FnNm0uu8OwL Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTbkbgAAoJEDXXcbtuRpfPxy4H/3+r7XKgD8vJIEwSr+GOSRAH XfhaU5Jt8hYo6M6sCrlJ898HPvSnN2v18Pg4bvTic8rNyzobaDiu+302Xjdu8jr0 g+9kFrCv4RB+J3U1ujr12kHxzMlJOAZNv8hsWwNqPm1EwU5bBl6tcRbgKdHGG30/ cxnw4Bi1MaWV8TgN/JVJ25wcAl2GvNGxjazpXjHhkE99UMb83yiop3cXGO4Z7e/e e1AuZnkBI6Vso4H7hv5oqFjWK4rkvjo5JlVY2UEPAbVnzZnRFAq84rDDMynzE20z Zs2R7/C1AzfCCMSttFOkk3AU6aoXI1yCUPxnrFpVcLqHd6LK0TvZJU/g7M7ZcvQ= =jyMq -----END PGP SIGNATURE----- --NM3k2II1dNSbvov6bslS00FnNm0uu8OwL-- From owner-freebsd-tcltk@FreeBSD.ORG Mon May 19 14:10:41 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19BCF45B for ; Mon, 19 May 2014 14:10:41 +0000 (UTC) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.17.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-SHA256 (256/256 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9B0782FF6 for ; Mon, 19 May 2014 14:10:40 +0000 (UTC) Received: from rose.naumburg.elmicron.de (217-68-173-241.dynamic.primacom.net [217.68.173.241]) by mrelayeu.kundenserver.de (node=mreue103) with ESMTP (Nemesis) id 0MaD2e-1WSfWv2U7k-00Jpli; Mon, 19 May 2014 16:10:29 +0200 Received: from localhost (localhost.localdomain [127.0.0.1]) by rose.naumburg.elmicron.de (Postfix) with ESMTP id 38A9EF7B; Mon, 19 May 2014 16:10:29 +0200 (CEST) X-Virus-Scanned: amavisd-new at naumburg.elmicron.de Received: from rose.naumburg.elmicron.de ([127.0.0.1]) by localhost (lilie.naumburg.elmicron.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 53r08Ki5-qxU; Mon, 19 May 2014 16:10:18 +0200 (CEST) Received: from [168.200.0.103] (centostest.naumburg.elmicron.de [168.200.0.103]) by rose.naumburg.elmicron.de (Postfix) with ESMTP id 8528AD9E; Mon, 19 May 2014 16:10:18 +0200 (CEST) Message-ID: <537A10C9.3050208@elmicron.de> Date: Mon, 19 May 2014 16:10:17 +0200 From: Harald Oehlmann User-Agent: Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Jan Nijtmans , tcltk@FreeBSD.org, mw@barfooze.de, Reinhard Max Subject: BSD build issue X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:VmFtnbf67Yxg+wp78LAMqQx/VHviNzWKrgaxUIydy3p bwLHzgM1eyBvEAsi/Z0eib4VnvjQbptOuqBn+WyWOWfTMpwaIN hyOyGKuTxV7VNIOzaMLpYIISpXAIXrqkUooKhEb2Atrrv3cX8h Ozf8LX6ddSCm33fdxKzGKhZszTgBlUrNgTg2VT5rpDoAk6vQ29 hnhrDm4dS6V3FKhIbC+DjLF4HRUPzubJkZ6TJUKAqbPDioxsI7 UgUbdaQx8z/weUAzv+ghkgj9UbVA3JLN+zeWD9E9v27YY/rdpK X+vJxF+cdZQRe2S0TEIdU87SVCrhXc1ldigyIGBxmjYIGGLN/2 XQcJe+jHhnc/MBZeFdW0caXLQCcI9ZVDIvybVoWoV X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 14:10:41 -0000 Jan, Reinhard and me try to test the revised socket code on bsd. Steve reported test failures there. Today, ente (mw@barfooze.de) tested tcl branch "bug-13d3af3ad5" on FreeBSD: https://core.tcl.tk/tcl/info/9b3b3adf47823f5980b57a1df6432be39c5858c3 He got the following link error: cd unix ./configure make ... gcc -DNDEBUG -O2 -pipe tclAppInit.o -L/tmp/Tcl_Source_Code-9b3b3adf47823f59/_build -ltcl86 libtclstub86.a -lz -lpthread -lm -Wl,-rpath,/usr/local/lib -o tclsh /usr/bin/ld: cannot find -ltcl86 There is: mw@furnace:/tmp/Tcl_Source_Code-9b3b3adf47823f59 $ file libtcl86.so.1 libtcl86.so.1: ELF 64-bit LSB shared object, x86-64, version 1 (FreeBSD), dynamically linked, not stripped but no libtcl86.so Adding a symlink fixes the issue. Ente reported the following: the FreeBSD ports tree apparently has a patch that creates a symlink http://svnweb.freebsd.org/ports/head/lang/tcl86/files/patch-unix-Makefile.in?view=markup line 41, I suppose Reinhard observed this: For FreeBSD unix/tcl.m4 sets: SHARED_LIB_SUFFIX='${TCL_TRIM_DOTS}\$\{DBGX\}.so.1' Jan, maybee you may look after the issue. Thank you and best regards, Harald From owner-freebsd-tcltk@FreeBSD.ORG Mon May 19 14:20:24 2014 Return-Path: Delivered-To: tcltk@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF12D559 for ; Mon, 19 May 2014 14:20:24 +0000 (UTC) Received: from mail-lb0-x235.google.com (mail-lb0-x235.google.com [IPv6:2a00:1450:4010:c04::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39FE2212E for ; Mon, 19 May 2014 14:20:24 +0000 (UTC) Received: by mail-lb0-f181.google.com with SMTP id u10so434997lbd.40 for ; Mon, 19 May 2014 07:20:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=jxNyOnmrBj4+VdEg/BWywmFtzQGDjkOUjUhxIgonCNc=; b=s7IjZiuSiEek4YtazSYswCuU82jHGhC8W4YSqkhehqeRF6QxxfydagzybVvlKnngcl p1+0eQNQBfN1Hk84I2Z5mLUhFJCCKuC7vS3wopg5eOavmR7ueQPW/DmFcF8t1qEaotQE rlW7EVGU989wpBWQx9Bjad8d3lwtVN3yp+THqlpADBH2DR/w79RD30jiok9lieZkVnDj 1pN+lG/1FvWuD8x8AYaiGvphPyr031PC/ySD1+TcBZp9nMWoSMrIMwnXwgVPNBlebx4+ DcIKKAfQOs9iN4pXJhHiao2kei1Ruw3QpxEk/COU9YMuoLDW5j5wOGfJwexPArhqbNv3 2LoA== MIME-Version: 1.0 X-Received: by 10.152.37.229 with SMTP id b5mr26503849lak.40.1400509221726; Mon, 19 May 2014 07:20:21 -0700 (PDT) Received: by 10.114.25.198 with HTTP; Mon, 19 May 2014 07:20:21 -0700 (PDT) In-Reply-To: <537A10C9.3050208@elmicron.de> References: <537A10C9.3050208@elmicron.de> Date: Mon, 19 May 2014 16:20:21 +0200 Message-ID: Subject: Re: BSD build issue From: Jan Nijtmans To: Harald Oehlmann Content-Type: text/plain; charset=UTF-8 Cc: Reinhard Max , tcltk@freebsd.org, mw@barfooze.de X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 14:20:24 -0000 2014-05-19 16:10 GMT+02:00 Harald Oehlmann : > Jan, > > Reinhard and me try to test the revised socket code on bsd. > Steve reported test failures there. > > Today, ente (mw@barfooze.de) tested tcl branch "bug-13d3af3ad5" on FreeBSD: > > https://core.tcl.tk/tcl/info/9b3b3adf47823f5980b57a1df6432be39c5858c3 See: It's already fixed on trunk, but the "bug-13d3af3ad5" branch didn't take over this fix yet. Regards, Jan Nijtmans From owner-freebsd-tcltk@FreeBSD.ORG Mon May 19 14:34:37 2014 Return-Path: Delivered-To: tcltk@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7597C6B6 for ; Mon, 19 May 2014 14:34:37 +0000 (UTC) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.17.10]) (using TLSv1.2 with cipher DHE-RSA-AES256-SHA256 (256/256 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 031CA2253 for ; Mon, 19 May 2014 14:34:36 +0000 (UTC) Received: from rose.naumburg.elmicron.de (217-68-173-241.dynamic.primacom.net [217.68.173.241]) by mrelayeu.kundenserver.de (node=mreue103) with ESMTP (Nemesis) id 0M7m6a-1WzmjB2mXY-00vOhB; Mon, 19 May 2014 16:34:33 +0200 Received: from localhost (localhost.localdomain [127.0.0.1]) by rose.naumburg.elmicron.de (Postfix) with ESMTP id 3B6F8F7B; Mon, 19 May 2014 16:34:33 +0200 (CEST) X-Virus-Scanned: amavisd-new at naumburg.elmicron.de Received: from rose.naumburg.elmicron.de ([127.0.0.1]) by localhost (lilie.naumburg.elmicron.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id IJgMcg4CHXrp; Mon, 19 May 2014 16:34:21 +0200 (CEST) Received: from [168.200.0.103] (centostest.naumburg.elmicron.de [168.200.0.103]) by rose.naumburg.elmicron.de (Postfix) with ESMTP id D8D11616; Mon, 19 May 2014 16:34:21 +0200 (CEST) Message-ID: <537A166C.5040703@elmicron.de> Date: Mon, 19 May 2014 16:34:20 +0200 From: Harald Oehlmann User-Agent: Mozilla/5.0 (Windows NT 6.0; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Jan Nijtmans Subject: Re: BSD build issue References: <537A10C9.3050208@elmicron.de> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Provags-ID: V02:K0:vTr0JJs/jrWBI+Ppsh4YWg1fQclm9tHhJJSAtmuoc8U KCFyeJyM9nWY0OQnciXKfNZFt1NXkVkZGTBumNrhyyMtDKWpbn qZVSazV9O/61hOOlCFerW1cxydnWfDxeHpyRgDmh1J3njYo6Zl CVL3H6eq8qTw3YXZVJQKriOOVuobEzCaezoaekLNwyDIRMt4q/ EiirJvkq/d0p67Ujt1/YkQiOCUcohmT0TfVSxlFvnGgrBYzZU/ PkXCWCMVPnYUvZkHgAbMm2jYJ5+Ddn1Yq1Gd+aYvm6jbRh1cL2 F7oRicRhtPqFydGKeuXBaFlRqThbqC+F2zY7cEswX1UpBWQW6V BhcWndZvjBb7pVyOGJ6dRUOmnXTF2mld6aha9rk35 Cc: Reinhard Max , tcltk@freebsd.org, mw@barfooze.de X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2014 14:34:37 -0000 Ok, Jan, thank you, this was quick. Sorry, Harald Am 19.05.2014 16:20, schrieb Jan Nijtmans: > 2014-05-19 16:10 GMT+02:00 Harald Oehlmann : >> Jan, >> >> Reinhard and me try to test the revised socket code on bsd. >> Steve reported test failures there. >> >> Today, ente (mw@barfooze.de) tested tcl branch "bug-13d3af3ad5" on FreeBSD: >> >> https://core.tcl.tk/tcl/info/9b3b3adf47823f5980b57a1df6432be39c5858c3 > > See: > > > It's already fixed on trunk, but the "bug-13d3af3ad5" branch > didn't take over this fix yet. > > Regards, > Jan Nijtmans > From owner-freebsd-tcltk@FreeBSD.ORG Thu Jun 19 09:34:00 2014 Return-Path: Delivered-To: tcltk@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F00F15C for ; Thu, 19 Jun 2014 09:34:00 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C2F82B19 for ; Thu, 19 Jun 2014 09:34:00 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.8/8.14.8) with ESMTP id s5J9Y0F6092357 for ; Thu, 19 Jun 2014 09:34:00 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.8/8.14.8/Submit) id s5J9Y0ld092354; Thu, 19 Jun 2014 09:34:00 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201406190934.s5J9Y0ld092354@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Thu, 19 Jun 2014 09:34:00 +0000 From: portscout@FreeBSD.org To: tcltk@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jun 2014 09:34:00 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/tcltk@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ x11-fm/filerunner | 14.02.22.11 | 14.06.18.10 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-tcltk@FreeBSD.ORG Wed Jun 25 02:41:29 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34DC8C3 for ; Wed, 25 Jun 2014 02:41:29 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C5782BF7 for ; Wed, 25 Jun 2014 02:41:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5P2fS1K063715 for ; Wed, 25 Jun 2014 03:41:28 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191285] lang/expect segfault in exp_spawnv Date: Wed, 25 Jun 2014 02:41:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 02:41:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191285 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |tcltk@FreeBSD.org |org | --- Comment #1 from Mark Linimon --- Over to maintainers. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-tcltk@FreeBSD.ORG Wed Jun 25 08:30:55 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB29E802 for ; Wed, 25 Jun 2014 08:30:55 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 936822985 for ; Wed, 25 Jun 2014 08:30:55 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5P8UtPm060397 for ; Wed, 25 Jun 2014 09:30:55 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191285] lang/expect segfault in exp_spawnv Date: Wed, 25 Jun 2014 08:30:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gahr@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 08:30:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191285 Pietro Cerutti changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gahr@FreeBSD.org --- Comment #2 from Pietro Cerutti --- I don't think it's related to ckalloc / ckfree. The problem is the definition of Tcl_ErrnoMsg: #define Tcl_ErrnoMsg (tclStubsPtr->tcl_ErrnoMsg) I fear you don't have a properly setup interp. Please try this sample program: #include #include #include #include #include int main(void) { Tcl_Interp * interp = Tcl_CreateInterp(); Expect_Init(interp); char * date = "/bin/date"; char * args[] = {date, NULL}; int fd = exp_spawnv(date, args); char buf[64]; read(fd, buf, sizeof(buf)); puts(buf); close(fd); return (0); } Compile with something like this: cc -o test-spawn test-spawn.c -I/usr/local/include/tcl8.6 -I/usr/local/include -L/usr/local/lib -lexpect -ltcl86 It works as expected here. However, if you remove the assignment to interp and just leave the variable uninitialized or NULL-initialized, it will segfault exactly as you described. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-tcltk@FreeBSD.ORG Wed Jun 25 09:04:37 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50278D3D for ; Wed, 25 Jun 2014 09:04:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3813F2D48 for ; Wed, 25 Jun 2014 09:04:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5P94bsX010435 for ; Wed, 25 Jun 2014 10:04:37 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191285] lang/expect segfault in exp_spawnv Date: Wed, 25 Jun 2014 09:04:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gahr@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2014 09:04:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191285 Pietro Cerutti changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |In Discussion -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-tcltk@FreeBSD.ORG Thu Jun 26 15:02:46 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3CFBE84C for ; Thu, 26 Jun 2014 15:02:46 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 253B42332 for ; Thu, 26 Jun 2014 15:02:46 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QF2kwS044127 for ; Thu, 26 Jun 2014 16:02:46 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191285] lang/expect segfault in exp_spawnv Date: Thu, 26 Jun 2014 15:02:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kreuter@progn.net X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 15:02:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191285 --- Comment #3 from Richard M Kreuter --- The libexpect manual explicitly says that libexpect can be used directly from C or C++, without the use of Tcl, and there's no mention of needing to initialize a Tcl interpreter from C. (If that's now considered a deprecated/unsupported way to use libexpect, I guess it's just a documentation issue.) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-tcltk@FreeBSD.ORG Thu Jun 26 15:11:45 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E64F291E for ; Thu, 26 Jun 2014 15:11:45 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE12E2409 for ; Thu, 26 Jun 2014 15:11:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QFBjxk076356 for ; Thu, 26 Jun 2014 16:11:45 +0100 (BST) (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191285] lang/expect segfault in exp_spawnv Date: Thu, 26 Jun 2014 15:11:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gahr@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jun 2014 15:11:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191285 Pietro Cerutti changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Discussion |Issue Resolved Resolution|--- |Report to Upstream --- Comment #4 from Pietro Cerutti --- libexpect(3) starts with #include expect_tcl.h Expect_Init(interp); cc files... -lexpect5.20 -ltcl7.5 -lm so you see that somehow tcl is included and linked against. I think they assume that interp is a correctly initialized interpreter. I agree that the documentation could be improved to assume less and explain more. Please report this upstream. Thank you, -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-tcltk@FreeBSD.ORG Sat Jul 12 06:39:14 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86EFEAA for ; Sat, 12 Jul 2014 06:39:14 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FB6224FF for ; Sat, 12 Jul 2014 06:39:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6C6dEAw061190 for ; Sat, 12 Jul 2014 06:39:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191833] devel/tcllib distinfo wrong ? Date: Sat, 12 Jul 2014 06:39:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 06:39:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191833 Kurt Jaeger changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |tcltk@FreeBSD.org |org | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-tcltk@FreeBSD.ORG Mon Jul 14 09:08:58 2014 Return-Path: Delivered-To: tcltk@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1067906 for ; Mon, 14 Jul 2014 09:08:58 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D989220A2 for ; Mon, 14 Jul 2014 09:08:58 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6E98w8K039748 for ; Mon, 14 Jul 2014 09:08:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: tcltk@FreeBSD.org Subject: [Bug 191833] devel/tcllib distinfo wrong ? Date: Mon, 14 Jul 2014 09:08:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gahr@FreeBSD.org X-Bugzilla-Status: Issue Resolved X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tcltk@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cc resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-tcltk@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: FreeBSD-specific Tcl/Tk discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2014 09:08:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191833 Pietro Cerutti changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Issue Resolved CC| |gahr@FreeBSD.org Resolution|--- |FIXED --- Comment #1 from Pietro Cerutti --- Fixed, thanks! -- You are receiving this mail because: You are the assignee for the bug.