From owner-freebsd-ports@freebsd.org Sun Nov 29 02:53:51 2015 Return-Path: Delivered-To: freebsd-ports@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 976A0A3496A for ; Sun, 29 Nov 2015 02:53:51 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from mail.infocus-llc.com (mail.infocus-llc.com [199.15.120.13]) (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 75FCD1068 for ; Sun, 29 Nov 2015 02:53:50 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from draco.over-yonder.net (c-75-65-60-66.hsd1.ms.comcast.net [75.65.60.66]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.tarragon.infocus-llc.com (Postfix) with ESMTPSA id 3p7YvP1mFSzgK; Sat, 28 Nov 2015 20:45:05 -0600 (CST) Received: by draco.over-yonder.net (Postfix, from userid 100) id 3p7YvN4FYPz1jr; Sat, 28 Nov 2015 20:45:04 -0600 (CST) Date: Sat, 28 Nov 2015 20:45:04 -0600 From: "Matthew D. Fuller" To: Miroslav Lachman <000.fbsd@quip.cz> Cc: Carmel NY , FreeBSD Ports Subject: Re: update PHP Message-ID: <20151129024504.GW30248@over-yonder.net> References: <5659F096.7030200@quip.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5659F096.7030200@quip.cz> X-Editor: vi X-OS: FreeBSD X-Virus-Scanned: clamav-milter 0.98.7 at mail.tarragon.infocus-llc.com X-Virus-Status: Clean User-Agent: Mutt/1.5.24-fullermd.4 (2015-08-30) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 02:53:51 -0000 On Sat, Nov 28, 2015 at 07:21:10PM +0100 I heard the voice of Miroslav Lachman, and lo! it spake thus: > Carmel NY wrote on 11/27/2015 12:39: > > Would I l then need to rebuild everything that depends on PHP or could I just > > add the "-r" flag to portupgrade? > > You can get list of all origins of ports depending on main php port by > this command > > pkg query %o `pkg info -r php5 | tail -n +2` I've had good luck with PHP upgrades by just changing the origins, then rebuilding the php ports themselves. PECL stuff will also need a rebuild. Of course, you could just do a little sed'ery, but I tossed together a quickie .pl to do it with a little more seatbelts. e.g., with a little editing to pretend I'm going from 5.6 to 5.5: % pkg query '%o' | grep php56 | /tmp/phpup.pl pkg set -yo lang/php56:lang/php55 pkg set -yo archivers/php56-bz2:archivers/php55-bz2 pkg set -yo textproc/php56-ctype:textproc/php55-ctype pkg set -yo ftp/php56-curl:ftp/php55-curl [...] I intentionally just made it print out the 'pkg set's so I could eyeball them for sanity. Then just a quick C&P of 'em into a root terminal, and I'm off to the rebuilding races. A little obvious editing should let you do 5->56 with it. (of course there's always the chance of extensions moving around, so you may have to manually find and deal with one or two, but it makes it a lot easier) --------------8K------------------ #!/usr/bin/env perl use strict; use warnings; # pkg query '%o' | grep php56 | $SELF while() { chomp; my $old = $_; (my $new = $_) =~ s/56/55/; die "Couldn't find dir $new" unless -d "/usr/ports/$new"; print "pkg set -yo $old:$new\n"; } --------------8K------------------ -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. From owner-freebsd-ports@freebsd.org Sun Nov 29 12:25:19 2015 Return-Path: Delivered-To: freebsd-ports@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 2B2AAA3C926 for ; Sun, 29 Nov 2015 12:25:19 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) (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 DF4AC1607 for ; Sun, 29 Nov 2015 12:25:18 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 1CD7928484; Sun, 29 Nov 2015 13:25:15 +0100 (CET) Received: from illbsd.quip.test (ip-86-49-16-209.net.upcbroadband.cz [86.49.16.209]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id D634328483; Sun, 29 Nov 2015 13:25:13 +0100 (CET) Message-ID: <565AEEA9.1030409@quip.cz> Date: Sun, 29 Nov 2015 13:25:13 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:35.0) Gecko/20100101 Firefox/35.0 SeaMonkey/2.32 MIME-Version: 1.0 To: "Matthew D. Fuller" CC: Carmel NY , FreeBSD Ports Subject: Re: update PHP References: <5659F096.7030200@quip.cz> <20151129024504.GW30248@over-yonder.net> In-Reply-To: <20151129024504.GW30248@over-yonder.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 12:25:19 -0000 Matthew D. Fuller wrote on 11/29/2015 03:45: > On Sat, Nov 28, 2015 at 07:21:10PM +0100 I heard the voice of > Miroslav Lachman, and lo! it spake thus: >> Carmel NY wrote on 11/27/2015 12:39: >>> Would I l then need to rebuild everything that depends on PHP or could I just >>> add the "-r" flag to portupgrade? >> >> You can get list of all origins of ports depending on main php port by >> this command >> >> pkg query %o `pkg info -r php5 | tail -n +2` > > I've had good luck with PHP upgrades by just changing the origins, > then rebuilding the php ports themselves. PECL stuff will also need a > rebuild. > > Of course, you could just do a little sed'ery, but I tossed together a > quickie .pl to do it with a little more seatbelts. e.g., with a > little editing to pretend I'm going from 5.6 to 5.5: > > % pkg query '%o' | grep php56 | /tmp/phpup.pl > pkg set -yo lang/php56:lang/php55 > pkg set -yo archivers/php56-bz2:archivers/php55-bz2 > pkg set -yo textproc/php56-ctype:textproc/php55-ctype > pkg set -yo ftp/php56-curl:ftp/php55-curl [...] Last time i tried to change origin by 'pkg set' for MySQL upgrade I ended up with both versions installed. Maybe this bug in pkg is fixed now. I didn't tried it again. Miroslav Lachman From owner-freebsd-ports@freebsd.org Sun Nov 29 19:23:31 2015 Return-Path: Delivered-To: freebsd-ports@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 1A39CA3A662 for ; Sun, 29 Nov 2015 19:23:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 03AB11993 for ; Sun, 29 Nov 2015 19:23:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 027EAA3A660; Sun, 29 Nov 2015 19:23:31 +0000 (UTC) Delivered-To: ports@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 012B8A3A65F for ; Sun, 29 Nov 2015 19:23:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 E66E41992 for ; Sun, 29 Nov 2015 19:23:30 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.15.2/8.15.2) with ESMTP id tATJNUg9080302 for ; Sun, 29 Nov 2015 19:23:30 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.15.2/8.15.2/Submit) id tATJNUHx080300; Sun, 29 Nov 2015 19:23:30 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201511291923.tATJNUHx080300@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: Sun, 29 Nov 2015 19:23:30 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 19:23:31 -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/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ www/twiki | 6.0.1 | 6.0.2 ------------------------------------------------+-----------------+------------ 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-ports@freebsd.org Sun Nov 29 22:24:40 2015 Return-Path: Delivered-To: freebsd-ports@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 C509BA3C144 for ; Sun, 29 Nov 2015 22:24:40 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (unknown [IPv6:2602:d1:b4d6:e600:4261:86ff:fef6:aa2a]) (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 A200E1506 for ; Sun, 29 Nov 2015 22:24:40 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.14.9/8.14.9) with ESMTP id tATMOlCZ014444 for ; Sun, 29 Nov 2015 14:24:53 -0800 (PST) (envelope-from bsd-lists@bsdforge.com) To: In-Reply-To: <20151127161308.GA60542@neutralgood.org> References: <20151127161308.GA60542@neutralgood.org> From: "Chris H" Subject: Re: Can we bring back sysutils/cronolog? Date: Sun, 29 Nov 2015 14:24:53 -0800 Content-Type: text/plain; charset=UTF-8; format=fixed MIME-Version: 1.0 Message-id: <6a4b9a5d2564eaed7fcc546f45ceba0e@ultimatedns.net> Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 22:24:40 -0000 On Fri, 27 Nov 2015 11:13:08 -0500 kpneal@pobox.com wrote > I still use sysutils/cronolog but lately it's been disabled due to > the web site vanishing. > > I still have the distribution files. Can we put them up somewhere on > FreeBSD.org to keep the port alive? I'm in the process of switching > over to FreeBSD 10 (.2) and need to rebuild this port (along with all > other ports). > > http://www.neutralgood.org/~kpn/cronolog-1.6.2.tar.gz > http://www.neutralgood.org/~kpn/cronolog-setugid-patch.txt > > I _could_ host the files myself, but I'm rather bandwidth limited. If > needed I'll need to move the files to a better URL. > > Thanks! There was a pr(1) started for this port back on May 01, of this year: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199851 It has a workable patch. But no one appears to want to commit it. > -- > Kevin P. Neal From owner-freebsd-ports@freebsd.org Sun Nov 29 22:32:58 2015 Return-Path: Delivered-To: freebsd-ports@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 A195EA3C2B2 for ; Sun, 29 Nov 2015 22:32:58 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [66.135.54.68]) by mx1.freebsd.org (Postfix) with ESMTP id 7F4EB1920 for ; Sun, 29 Nov 2015 22:32:57 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 00CEA56087; Sun, 29 Nov 2015 16:32:56 -0600 (CST) Date: Sun, 29 Nov 2015 16:32:56 -0600 From: Mark Linimon To: Chris H Cc: freebsd-ports@freebsd.org Subject: Re: Can we bring back sysutils/cronolog? Message-ID: <20151129223256.GA26003@lonesome.com> References: <20151127161308.GA60542@neutralgood.org> <6a4b9a5d2564eaed7fcc546f45ceba0e@ultimatedns.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6a4b9a5d2564eaed7fcc546f45ceba0e@ultimatedns.net> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 22:32:58 -0000 On Sun, Nov 29, 2015 at 02:24:53PM -0800, Chris H wrote: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199851 > It has a workable patch. But no one appears to want to commit it. "No one has gotten to it yet" is different from "no one appears to want to commit it". The ports PR count stands at 2116. We definitely need more ports committers. mcl From owner-freebsd-ports@freebsd.org Sun Nov 29 22:37:36 2015 Return-Path: Delivered-To: freebsd-ports@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 48611A3C49C for ; Sun, 29 Nov 2015 22:37:36 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.17.22]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F4701CB7 for ; Sun, 29 Nov 2015 22:37:35 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from [192.168.0.100] ([87.139.233.65]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0M3d9B-1aKZ3V42K1-00rIeM; Sun, 29 Nov 2015 23:37:25 +0100 Subject: Re: Can we bring back sysutils/cronolog? To: freebsd-ports@freebsd.org References: <20151127161308.GA60542@neutralgood.org> <6a4b9a5d2564eaed7fcc546f45ceba0e@ultimatedns.net> Cc: Chris H From: olli hauer Message-ID: <565B7E29.2010509@gmx.de> Date: Sun, 29 Nov 2015 23:37:29 +0100 User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <6a4b9a5d2564eaed7fcc546f45ceba0e@ultimatedns.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:OVRSq0c+aBzoO198bqZ+uzPD6kUmFcC1EV2XjqCOpojQL6ahZrF w+sSFMUeQWyjVLpz/UQIzV8t3vJcJyTBSS+XpiPjkniEJRFkhMFqbKOBLJ8XWfT/jtH+0vz 4DNmpx9CtbFEqE8UrpWETtK1656tIn1czyJ0S+sZtpXB0Fw9Kq9ojYbD+kTABBtWblsJ1+b D9/qghQ8ouJjnOTPER/iA== X-UI-Out-Filterresults: notjunk:1;V01:K0:qsuC+NXVQCM=:5/rpE8Kif4XNC/UAp0BE8z Z+oX+quq7eUBaWQz4tyYVVrDxBggi2ukI0y1G7A43/whBVGfnJLdgvkjcIzigd/tPYq/vl7jQ VAqkytj4+cGrAa73xvgSf9FgcEEb1y4K87Aiph2/uEF6fz2xnzU8Le3Hi/6juyQM5rXSlt7F7 /udBT4HFaUJArNSrmdmxzjG/WYxjq+fCVcDFEyocXSArdImfr2BUaNmu4BYmandBSZoVI1cT6 BG+zLFl+Glh8N1e37LqrtokVxbeuWU5TNe6lxNFAtWNd5rsc51o1AB1Xn2jZCD8eGRdbdxQ6d A5/zSonz+XCv1ZIYPfn+O9M/X6bycuufDpFII6IjoWAsAubG3tPX0AKGTekFW/ZI8kBD2PjsT /wyyKwGo5SGGEHr85ddVMoPUY3aj3vtB7shLPqQJUOKLd8TOLoXnomTT9R2OX/hWsIUtzofTO Afr9PXF0Vn29Ff7B+pZCrfZNI8SOrOLGrlwgpreedUR2AsOVJ+uVNrzS9glQp5O3pZzvpVTxK 2TF2eR4ups5S3Kjbb9opbfke/Olvbrdfcy4um9WywCmXUSmWgUdPMFcnL08/auT44z1dgNbJo qA5pFk5Au0zKfzbhjmCvDmDavj8H2xAwS4GGUPiEWPKk9zq3wDc1xDUYW1QDiwGrbOATN0q2h KJUuUrdcBHEXHQhmjDp8TtdVtMcGANIGRqp9wfxIuu1rBNkEpqXvElHNENtowTnnLzoH94wKh g2SZQ8W9ndy3AFb8WbT6/Nv+9LRlxJ5mYro8bRXbTu15oO+dgPMtekDvM4G8HrYS0x1sThPTi kX2h8b/ X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 22:37:36 -0000 On 2015-11-29 23:24, Chris H wrote: > On Fri, 27 Nov 2015 11:13:08 -0500 kpneal@pobox.com wrote > >> I still use sysutils/cronolog but lately it's been disabled due to >> the web site vanishing. >> >> I still have the distribution files. Can we put them up somewhere on >> FreeBSD.org to keep the port alive? I'm in the process of switching >> over to FreeBSD 10 (.2) and need to rebuild this port (along with all >> other ports). >> >> http://www.neutralgood.org/~kpn/cronolog-1.6.2.tar.gz >> http://www.neutralgood.org/~kpn/cronolog-setugid-patch.txt >> >> I _could_ host the files myself, but I'm rather bandwidth limited. If >> needed I'll need to move the files to a better URL. >> >> Thanks! > There was a pr(1) started for this port back on May 01, of this > year: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199851 > It has a workable patch. But no one appears to want to commit it. > >> -- >> Kevin P. Neal > Uh, my bad! I haven't looked for an existing PR, but had seen the original author had an github account ... Additional I placed the UID patch in PATCHDIR (it is ways smaller then many of our pkg-plist files) Port was already updated some hours ago. https://svnweb.freebsd.org/ports?view=revision&revision=402603 -- olli From owner-freebsd-ports@freebsd.org Mon Nov 30 01:59:00 2015 Return-Path: Delivered-To: freebsd-ports@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 DA4BDA3368D for ; Mon, 30 Nov 2015 01:59:00 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (unknown [IPv6:2602:d1:b4d6:e600:4261:86ff:fef6:aa2a]) (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 B6ED819E0 for ; Mon, 30 Nov 2015 01:59:00 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.14.9/8.14.9) with ESMTP id tAU1x5nW030747 for ; Sun, 29 Nov 2015 17:59:12 -0800 (PST) (envelope-from bsd-lists@bsdforge.com) To: In-Reply-To: <20151127195341.GY35480@home.opsec.eu> References: <20151127161308.GA60542@neutralgood.org>, <20151127195341.GY35480@home.opsec.eu> From: "Chris H" Subject: Re: Can we bring back sysutils/cronolog? Date: Sun, 29 Nov 2015 17:59:12 -0800 Content-Type: text/plain; charset=UTF-8; format=fixed MIME-Version: 1.0 Message-id: <6c4920c302f26401ebde54c50945544f@ultimatedns.net> Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 01:59:00 -0000 On Fri, 27 Nov 2015 20:53:41 +0100 Kurt Jaeger wrote > Hi! > > > I still use sysutils/cronolog but lately it's been disabled due to > > the web site vanishing. > > > > I still have the distribution files. Can we put them up somewhere on > > FreeBSD.org to keep the port alive? > > Using freebsd.org to distribute 3rd-party ports distfiles is not > possible due to policy reasons, but I can put them up @opsec.eu, > and if you provide a fallback master site, that would be sufficient. > > > I'm in the process of switching > > over to FreeBSD 10 (.2) and need to rebuild this port (along with all > > other ports). > > > > http://www.neutralgood.org/~kpn/cronolog-1.6.2.tar.gz > > http://www.neutralgood.org/~kpn/cronolog-setugid-patch.txt > > > > I _could_ host the files myself, but I'm rather bandwidth limited. If > > needed I'll need to move the files to a better URL. > > There was a 1.7.0 beta at some time -- any ideas where it might be ? I discovered I have the source for that version. I'll start a new pr(1) for sysutils/cronolog-devel. > > See sysutils/cronolog-devel. > --Chris From owner-freebsd-ports@freebsd.org Mon Nov 30 03:55:29 2015 Return-Path: Delivered-To: freebsd-ports@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 4BDA3A3BC65 for ; Mon, 30 Nov 2015 03:55:29 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (unknown [IPv6:2602:d1:b4d6:e600:4261:86ff:fef6:aa2a]) (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 BC95E1894 for ; Mon, 30 Nov 2015 03:55:28 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.14.9/8.14.9) with ESMTP id tAU3tVov043927 for ; Sun, 29 Nov 2015 19:55:40 -0800 (PST) (envelope-from bsd-lists@bsdforge.com) To: In-Reply-To: <20151129223256.GA26003@lonesome.com> References: <20151127161308.GA60542@neutralgood.org> <6a4b9a5d2564eaed7fcc546f45ceba0e@ultimatedns.net>, <20151129223256.GA26003@lonesome.com> From: "Chris H" Subject: Re: Can we bring back sysutils/cronolog? Date: Sun, 29 Nov 2015 19:55:40 -0800 Content-Type: text/plain; charset=UTF-8; format=fixed MIME-Version: 1.0 Message-id: Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 03:55:29 -0000 On Sun, 29 Nov 2015 16:32:56 -0600 Mark Linimon wrote > On Sun, Nov 29, 2015 at 02:24:53PM -0800, Chris H wrote: > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199851 > > It has a workable patch. But no one appears to want to commit it. > > "No one has gotten to it yet" is different from "no one appears to > want to commit it". Sure. Fair enough. :) > > The ports PR count stands at 2116. > > We definitely need more ports committers. So who do I talk to to start helping? > > mcl --Chris -- From owner-freebsd-ports@freebsd.org Mon Nov 30 05:57:20 2015 Return-Path: Delivered-To: freebsd-ports@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 10C00A31423 for ; Mon, 30 Nov 2015 05:57:20 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id EEFB91C25 for ; Mon, 30 Nov 2015 05:57:19 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: by mailman.ysv.freebsd.org (Postfix) id EC2DBA31422; Mon, 30 Nov 2015 05:57:19 +0000 (UTC) Delivered-To: ports@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 EAD80A31421 for ; Mon, 30 Nov 2015 05:57:19 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id CC1021C24 for ; Mon, 30 Nov 2015 05:57:19 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yuri.doctorlan.com (c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id tAU5vIWI067976 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Sun, 29 Nov 2015 21:57:18 -0800 (PST) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128] claimed to be yuri.doctorlan.com To: "ports@freebsd.org" From: Yuri Subject: Is it possible to specify which files are backed up to MASTER_SITE_BACKUP? Message-ID: <565BE53D.1040206@rawbw.com> Date: Sun, 29 Nov 2015 21:57:17 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 05:57:20 -0000 I have the complex fetch stage which takes one set of distfiles, and produces another distfile, only that distfile is used in build. There is the variable CKSUMFILES that controls which distfiles are included in distinfo (in my case all of them should be there). But how do I control which distfiles get to MASTER_SITE_BACKUP? Is there a variable that controls this, distinct from DISTFILES? In my case I only want the distfile that my fetch produces to be cached in MASTER_SITE_BACKUP. How can I do this? Yuri From owner-freebsd-ports@freebsd.org Mon Nov 30 12:48:44 2015 Return-Path: Delivered-To: freebsd-ports@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 57528A247E6 for ; Mon, 30 Nov 2015 12:48:44 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU004-OMC3S23.hotmail.com (blu004-omc3s23.hotmail.com [65.55.116.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F5471B6C; Mon, 30 Nov 2015 12:48:43 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU437-SMTP75 ([65.55.116.72]) by BLU004-OMC3S23.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Mon, 30 Nov 2015 04:47:36 -0800 X-TMN: [L+eScpGMI2rQsjqIZuNX22wTYz6HXv2F] X-Originating-Email: [carmel_ny@outlook.com] Message-ID: Date: Mon, 30 Nov 2015 07:47:34 -0500 From: Carmel NY To: FreeBSD Ports CC: matthew@FreeBSD.org Subject: Updating php Organization: seibercom NET X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 30 Nov 2015 12:47:35.0488 (UTC) FILETIME=[497E0400:01D12B6D] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 12:48:44 -0000 FreeBSD-10.2 I just updated php5 (5.4) to php56. I now have two programsthat will not run. "net/phpldapadmin" and "databases/phpmyadmin". When I attempt to access "net/phpldapadmin" via the net, I receive this error message: Notice: Undefined variable: _SESSION in /usr/local/www/phpldapadmin/lib/page.php on line 379 Fatal error: Call to a member function getValue() on a non-object in /usr/local/www/phpldapadmin/lib/page.php on line 379 I removed all of the old "php5"modules and then rebuilt "net/phpldapadmin". I appeared to successfully rebuild all of its required php modules. I am also experiencing problems with the "databases/phpmyadmin" port. I receive this error message: PHP 5.5+ is required. I am hoping that someone can assist me. Thanks! pkg info -d "lang/php56" php56-5.6.14: libxml2-2.9.3 pcre-8.37_4 pkg info -d "net/phpldapadmin" phpldapadmin-1.2.3_7,1: php56-session-5.6.14 php56-xml-5.6.14 php56-hash-5.6.14 php56-5.6.14 php56-iconv-5.6.14 php56-ldap-5.6.14 php56-openssl-5.6.14 php56-gettext-5.6.14 pkg info -d databases/phpmyadmin phpMyAdmin-4.5.2: php56-session-5.6.14 php56-xml-5.6.14 php56-bz2-5.6.14 php56-ctype-5.6.14 php56-filter-5.6.14 php56-zip-5.6.14 php56-openssl-5.6.14 php56-gd-5.6.14_1 php56-mcrypt-5.6.14 php56-5.6.14 php56-mbstring-5.6.14 php56-mysqli-5.6.14 php56-json-5.6.14 php56-zlib-5.6.14 -- Carmel From owner-freebsd-ports@freebsd.org Mon Nov 30 12:50:28 2015 Return-Path: Delivered-To: freebsd-ports@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 95040A24888 for ; Mon, 30 Nov 2015 12:50:28 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 751931CB0 for ; Mon, 30 Nov 2015 12:50:28 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 715BBA24887; Mon, 30 Nov 2015 12:50:28 +0000 (UTC) Delivered-To: ports@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 7101EA24886 for ; Mon, 30 Nov 2015 12:50:28 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-wm0-x232.google.com (mail-wm0-x232.google.com [IPv6:2a00:1450:400c:c09::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C6371CAF for ; Mon, 30 Nov 2015 12:50:28 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by wmec201 with SMTP id c201so153904973wme.0 for ; Mon, 30 Nov 2015 04:50:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=E8WCGSW3VnETGY6gzZoK+3fmuLQREZ6m/f67CW1dL08=; b=nvRgj8VzOirwhUaebvCfDcWLjwl715hiIL5vRs2lLMMnrB1wlOIERoZyOv4Gr7Qamx ny1xTWwPFaShz+nVZMn3l4T3t88FtxB1E2gn6jfyCTfpXPKzbLgNYsLy1TnDKq3OIAe0 PGEIvYH8PHsR91NI4PFkygPraMb2yMQQYdUdkyEiafqjFM0reoujhlOfHAD/S7DVzKfO JJtfNNmvEjiKwXe/toUW14JyC4hav7LEKQw4smqcnkQJHFLvHjbi962LeHGoFlWb8HAX NCy0/hBbWG1BrjldPT/THLLC2zLHuwYOCcC3g6PuZUbmnOTsnat5M1kSvvlE6bJ6Z8Xq KQng== X-Received: by 10.194.78.162 with SMTP id c2mr86195495wjx.112.1448887826509; Mon, 30 Nov 2015 04:50:26 -0800 (PST) Received: from gumby.homeunix.com ([94.8.70.38]) by smtp.gmail.com with ESMTPSA id d10sm46786341wje.14.2015.11.30.04.50.25 for (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Nov 2015 04:50:25 -0800 (PST) Date: Mon, 30 Nov 2015 12:50:24 +0000 From: RW To: ports@freebsd.org Subject: Re: Is it possible to specify which files are backed up to MASTER_SITE_BACKUP? Message-ID: <20151130125024.50e98b09@gumby.homeunix.com> In-Reply-To: <565BE53D.1040206@rawbw.com> References: <565BE53D.1040206@rawbw.com> X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 12:50:28 -0000 On Sun, 29 Nov 2015 21:57:17 -0800 Yuri wrote: > I have the complex fetch stage which takes one set of distfiles, and > produces another distfile, only that distfile is used in build. > > There is the variable CKSUMFILES that controls which distfiles are > included in distinfo (in my case all of them should be there). But > how do I control which distfiles get to MASTER_SITE_BACKUP? Is there > a variable that controls this, distinct from DISTFILES? In my case I > only want the distfile that my fetch produces to be cached in > MASTER_SITE_BACKUP. How can I do this? I don't think you can, AFAIK it's just an ordinary DISTDIR that's populated by port testing and package building. From owner-freebsd-ports@freebsd.org Mon Nov 30 12:51:33 2015 Return-Path: Delivered-To: freebsd-ports@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 E6A66A249B5 for ; Mon, 30 Nov 2015 12:51:33 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [176.9.39.170]) (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 AFC541DEC; Mon, 30 Nov 2015 12:51:33 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from [0.0.0.0] (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) by toco-domains.de (Postfix) with ESMTPA id BA2051B22056; Mon, 30 Nov 2015 13:51:24 +0100 (CET) Subject: Re: Updating php To: Carmel NY , FreeBSD Ports References: Cc: matthew@FreeBSD.org From: Torsten Zuehlsdorff Message-ID: <565C464C.8070809@toco-domains.de> Date: Mon, 30 Nov 2015 13:51:24 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 12:51:34 -0000 Hello, > I just updated php5 (5.4) to php56. I now have two programsthat will not run. > "net/phpldapadmin" and "databases/phpmyadmin". When I attempt to access > "net/phpldapadmin" via the net, I receive this error message: > > Notice: Undefined variable: _SESSION > in /usr/local/www/phpldapadmin/lib/page.php on line 379 This indicates a missing session module, but your pkg info command lists it. > Fatal error: Call to a member function getValue() on a non-object > in /usr/local/www/phpldapadmin/lib/page.php on line 379 > > I removed all of the old "php5"modules and then rebuilt "net/phpldapadmin". I > appeared to successfully rebuild all of its required php modules. > > I am also experiencing problems with the "databases/phpmyadmin" port. I > receive this error message: > > PHP 5.5+ is required. Do you use an apache webserver? Did you restart it? If you use php-fpm: did you restart it? Greetings, Torsten From owner-freebsd-ports@freebsd.org Mon Nov 30 13:40:09 2015 Return-Path: Delivered-To: freebsd-ports@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 82399A3B674 for ; Mon, 30 Nov 2015 13:40:09 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU004-OMC3S18.hotmail.com (blu004-omc3s18.hotmail.com [65.55.116.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 40AE019AA for ; Mon, 30 Nov 2015 13:40:09 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU436-SMTP28 ([65.55.116.74]) by BLU004-OMC3S18.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Mon, 30 Nov 2015 05:39:02 -0800 X-TMN: [b8sdRF2mD+7Fwp75svksWi1XSaVvFapo] X-Originating-Email: [carmel_ny@outlook.com] Message-ID: Date: Mon, 30 Nov 2015 08:39:00 -0500 From: Carmel NY To: FreeBSD Ports Subject: Re: Updating php In-Reply-To: <565C464C.8070809@toco-domains.de> References: <565C464C.8070809@toco-domains.de> Organization: seibercom NET X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 30 Nov 2015 13:39:01.0996 (UTC) FILETIME=[7931C2C0:01D12B74] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 13:40:09 -0000 On Mon, 30 Nov 2015 13:51:24 +0100, Torsten Zuehlsdorff stated: >Hello, > >> I just updated php5 (5.4) to php56. I now have two programsthat will not >> run. "net/phpldapadmin" and "databases/phpmyadmin". When I attempt to >> access "net/phpldapadmin" via the net, I receive this error message: >> >> Notice: Undefined variable: _SESSION >> in /usr/local/www/phpldapadmin/lib/page.php on line 379 > >This indicates a missing session module, but your pkg info command lists it. > >> Fatal error: Call to a member function getValue() on a non-object >> in /usr/local/www/phpldapadmin/lib/page.php on line 379 >> >> I removed all of the old "php5"modules and then rebuilt >> "net/phpldapadmin". I appeared to successfully rebuild all of its required >> php modules. >> >> I am also experiencing problems with the "databases/phpmyadmin" port. I >> receive this error message: >> >> PHP 5.5+ is required. > >Do you use an apache webserver? Did you restart it? If you use php-fpm: >did you restart it? The problem is fixed. I FORGOT to rebuild the "apache24" server. -- Carmel From owner-freebsd-ports@freebsd.org Mon Nov 30 13:58:08 2015 Return-Path: Delivered-To: freebsd-ports@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 B1062A3BB69 for ; Mon, 30 Nov 2015 13:58:08 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9AC57146B for ; Mon, 30 Nov 2015 13:58:08 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9952BA3BB67; Mon, 30 Nov 2015 13:58:08 +0000 (UTC) Delivered-To: ports@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 98F4DA3BB66 for ; Mon, 30 Nov 2015 13:58:08 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 8A755146A for ; Mon, 30 Nov 2015 13:58:08 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUDw8bB085540 for ; Mon, 30 Nov 2015 13:58:08 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.15.2/8.15.2/Submit) id tAUDw8Ya085536; Mon, 30 Nov 2015 13:58:08 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201511301358.tAUDw8Ya085536@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: Mon, 30 Nov 2015 13:58:08 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 13:58:08 -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/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ comms/gammu | 1.33.0 | 1.36.7 ------------------------------------------------+-----------------+------------ mail/milter-manager | 2.0.4 | 2.0.6 ------------------------------------------------+-----------------+------------ 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-ports@freebsd.org Mon Nov 30 14:00:43 2015 Return-Path: Delivered-To: freebsd-ports@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 4FB3AA3BD8D for ; Mon, 30 Nov 2015 14:00:43 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DB4471644 for ; Mon, 30 Nov 2015 14:00:42 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from host-4-75.office.adestra.com (vpn-1.adestra.com [46.236.37.122]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.15.2/8.15.2) with ESMTPSA id tAUE0aK1029295 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Mon, 30 Nov 2015 14:00:37 GMT (envelope-from matthew@FreeBSD.org) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.10.3 smtp.infracaninophile.co.uk tAUE0aK1029295 Authentication-Results: smtp.infracaninophile.co.uk/tAUE0aK1029295; dkim=none; dkim-atps=neutral X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host vpn-1.adestra.com [46.236.37.122] claimed to be host-4-75.office.adestra.com Subject: Re: Updating php To: freebsd-ports@freebsd.org References: <565C464C.8070809@toco-domains.de> From: Matthew Seaman X-Enigmail-Draft-Status: N1110 Message-ID: <565C567D.4020205@FreeBSD.org> Date: Mon, 30 Nov 2015 14:00:29 +0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="lgFvq1FTP7oJNQ7DirN0w2Th7DeM0HmTj" X-Virus-Scanned: clamav-milter 0.98.7 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 14:00:43 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --lgFvq1FTP7oJNQ7DirN0w2Th7DeM0HmTj Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 2015/11/30 13:39, Carmel NY wrote: > The problem is fixed. I FORGOT to rebuild the "apache24" server. Glad to hear is all working now. Although it's probably not apache24 specifically that was holding you up, but apr (the Apache Runtime) and mod_php56. This is why I generally prefer to use php-fpm nowadays, and access them from a HTTP server using FCGI. It provides a useful separation of roles: the web server can handle serving pages as efficiently as possible and need not know anything of the web application internals or the language used, nor does it need to link against all sorts of external shared libraries to provide support for whatever languages. Keeping things decoupled like that makes it much easier to manage the system and cope with these sorts of upgrades. Cheers, Matthew --lgFvq1FTP7oJNQ7DirN0w2Th7DeM0HmTj Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQJ8BAEBCgBmBQJWXFaEXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnwK4P/0ou+OVzkXX3esxayiAONXPM YwIc7xJ9Zlt1bDn3Fqni7dUKnaIGqx8BeBf69ziJekkVnyucG8MMu6Sj7USOWGYM TmtBOrBv7v9z5cV4W+Ssz3/OxVEFt8b5VnixXSzuKGjsR+eDx0pgRPIxYmuc9N6B /vWa7viVziZagkPWh4FI8LhBTaUevUAVPQqMzBZSFj3pbsZwVhteebjhTolrkKm3 0Z2wMiSAyKFBghV0v39b/ZXSNUD/XsN8DtYo4s87UbGA6uMbzQDoO55SnvDy9FIg /7UeUQ9iPMqUYnSjajrJUEZIl8MdflppEMymz+Tn3KgR089q1wvRma8GEkNpCj4e YfIWh+J1jzbMvVMq1RRkwmNRCE4O19B1a0mQ3PasQbkMrb6FFtDrUVpG+dMRUzuA +gSxN592oe4+eOh9lOLvW0WsLiMWFmEU5Kfau6hmGtSTKMiwIRGP6agsZtsDJWDV m3frwA/61ZGCTQ55KbDeNZbPH/BNZsDv5KSndz8+I45rqFzQ9XEt5u9vuLkgabz/ MPd+QQMvKr58NHxUdk/5ErYUPAIkYvrP/k2k0N1Kw/i0NliRp/v+COlDbqaLCB1a NZtFCZ54EB2qzRd/jSyrf1QOPI4VCn4plfNtrqYnbO1bx7EE6lbea+wmbWAlU5mL ltBohkjG668qIH2t2J8M =kfnf -----END PGP SIGNATURE----- --lgFvq1FTP7oJNQ7DirN0w2Th7DeM0HmTj-- From owner-freebsd-ports@freebsd.org Mon Nov 30 15:09:17 2015 Return-Path: Delivered-To: freebsd-ports@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 5A8E6A3CE91 for ; Mon, 30 Nov 2015 15:09:17 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU004-OMC3S2.hotmail.com (blu004-omc3s2.hotmail.com [65.55.116.77]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 14C9210FF; Mon, 30 Nov 2015 15:09:16 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU436-SMTP21 ([65.55.116.73]) by BLU004-OMC3S2.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Mon, 30 Nov 2015 07:08:09 -0800 X-TMN: [bBeFElgGqsvGz50elcfWGXS2qzf+NNRn] X-Originating-Email: [carmel_ny@outlook.com] Message-ID: Date: Mon, 30 Nov 2015 10:08:07 -0500 From: Carmel NY To: FreeBSD Ports CC: Matthew Seaman Subject: Re: Updating php In-Reply-To: <565C567D.4020205@FreeBSD.org> References: <565C464C.8070809@toco-domains.de> <565C567D.4020205@FreeBSD.org> Organization: seibercom NET X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 30 Nov 2015 15:08:08.0411 (UTC) FILETIME=[EBE7F2B0:01D12B80] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 15:09:17 -0000 On Mon, 30 Nov 2015 14:00:29 +0000, Matthew Seaman stated: >This is why I generally prefer to use php-fpm nowadays, and access them >from a HTTP server using FCGI. It provides a useful separation of >roles: the web server can handle serving pages as efficiently as >possible and need not know anything of the web application internals or >the language used, nor does it need to link against all sorts of >external shared libraries to provide support for whatever languages. >Keeping things decoupled like that makes it much easier to manage the >system and cope with these sorts of upgrades. Thanks for the info. Can you tell me where I can find some documentation on how to set up "php-fpm" on a FreeBSD-10.2 system running "apache24"? Thanks! :) -- Carmel From owner-freebsd-ports@freebsd.org Mon Nov 30 20:56:33 2015 Return-Path: Delivered-To: freebsd-ports@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 B2862A3D646 for ; Mon, 30 Nov 2015 20:56:33 +0000 (UTC) (envelope-from lists@searchy.net) Received: from j006.host001.searchy.nl (j006.host001.searchy.nl [79.143.214.199]) by mx1.freebsd.org (Postfix) with ESMTP id 7D6361EF2 for ; Mon, 30 Nov 2015 20:56:32 +0000 (UTC) (envelope-from lists@searchy.net) Received: from [192.168.5.21] (5418453B.cm-5-1b.dynamic.ziggo.nl [84.24.69.59]) (Authenticated sender: ppi@j006.host001.searchy.nl) by j006.host001.searchy.nl (Postfix) with ESMTPSA id 5CB4F1E8C07 for ; Mon, 30 Nov 2015 20:48:36 +0000 (UTC) Message-ID: <565CB624.4040004@searchy.net> Date: Mon, 30 Nov 2015 21:48:36 +0100 From: "Frank de Bot (lists)" User-Agent: Mozilla/5.0 (X11; Linux i686; rv:34.0) Gecko/20100101 Firefox/34.0 SeaMonkey/2.31 MIME-Version: 1.0 To: FreeBSD Ports Subject: Poudriere, build older version of port Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 20:56:33 -0000 Hi, I have some issue with a certain port version update. If I downgrade this port everything works well. I use poudriere to build my own packages with own options. Is it possible with poudriere to stick to a certain revision of a port? Regards, Frank de Bot From owner-freebsd-ports@freebsd.org Mon Nov 30 21:19:36 2015 Return-Path: Delivered-To: freebsd-ports@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 3E289A3DAA4 for ; Mon, 30 Nov 2015 21:19:36 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (unknown [IPv6:2602:d1:b4d6:e600:4261:86ff:fef6:aa2a]) (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 18E5F1E46 for ; Mon, 30 Nov 2015 21:19:36 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.14.9/8.14.9) with ESMTP id tAULJlPp023839 for ; Mon, 30 Nov 2015 13:19:53 -0800 (PST) (envelope-from bsd-lists@bsdforge.com) To: In-Reply-To: <6c4920c302f26401ebde54c50945544f@ultimatedns.net> References: <20151127161308.GA60542@neutralgood.org>, <20151127195341.GY35480@home.opsec.eu>, <6c4920c302f26401ebde54c50945544f@ultimatedns.net> From: "Chris H" Subject: Re: Can we bring back sysutils/cronolog? Date: Mon, 30 Nov 2015 13:19:53 -0800 Content-Type: text/plain; charset=UTF-8; format=fixed MIME-Version: 1.0 Message-id: Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 21:19:36 -0000 On Sun, 29 Nov 2015 17:59:12 -0800 "Chris H" wrote > On Fri, 27 Nov 2015 20:53:41 +0100 Kurt Jaeger wrote > > > Hi! > > > > > I still use sysutils/cronolog but lately it's been disabled due to > > > the web site vanishing. > > > > > > I still have the distribution files. Can we put them up somewhere on > > > FreeBSD.org to keep the port alive? > > > > Using freebsd.org to distribute 3rd-party ports distfiles is not > > possible due to policy reasons, but I can put them up @opsec.eu, > > and if you provide a fallback master site, that would be sufficient. > > > > > I'm in the process of switching > > > over to FreeBSD 10 (.2) and need to rebuild this port (along with all > > > other ports). > > > > > > http://www.neutralgood.org/~kpn/cronolog-1.6.2.tar.gz > > > http://www.neutralgood.org/~kpn/cronolog-setugid-patch.txt > > > > > > I _could_ host the files myself, but I'm rather bandwidth limited. If > > > needed I'll need to move the files to a better URL. > > > > There was a 1.7.0 beta at some time -- any ideas where it might be ? > I discovered I have the source for that version. I'll start a new pr(1) > for sysutils/cronolog-devel. > > As promised: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204920 --Chris From owner-freebsd-ports@freebsd.org Mon Nov 30 22:45:49 2015 Return-Path: Delivered-To: freebsd-ports@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 21876A3D89F for ; Mon, 30 Nov 2015 22:45:49 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-lf0-x22e.google.com (mail-lf0-x22e.google.com [IPv6:2a00:1450:4010:c07::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F29C1D2C for ; Mon, 30 Nov 2015 22:45:48 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by lfs39 with SMTP id 39so211971160lfs.3 for ; Mon, 30 Nov 2015 14:45:46 -0800 (PST) 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=2mBgZ0hIKhuOeA96zUqNwa+yAaRUEvRTWMYvv1WRXak=; b=XftYx+KtgDn7vhSB1eEOGDov7BJc4MLV6IPtgGYV73UpB2HMu8Qd3oedpUHULcj9RW 9FRSJj+Kc4a63YECv4ZDEYLZLhComuQMvUbLZOTcgGaoTT/w5bLUWWcVqfEXXgjg3Mwx OOin1qQbfpj8/SBW94cLfeUY0b53nbs9/Et3Mh6KFZuiARGcT30I41Tbv5BUZUFXLx4k GvK3OjPY0jwXUasvUc/c6mVfzQ6TDqUwMmPWUQtIB9OOlM5nG1MNRyOEDEBTDYbzvM9H JMfsml+RJ6h2f5kzfMVZxsPX+QsqK6PMeNjK7PLk8A7BpYJ7jJ3MfnYX2mAjGzdjq+CF 5dFA== MIME-Version: 1.0 X-Received: by 10.25.155.207 with SMTP id d198mr28424896lfe.93.1448923546475; Mon, 30 Nov 2015 14:45:46 -0800 (PST) Received: by 10.25.141.129 with HTTP; Mon, 30 Nov 2015 14:45:46 -0800 (PST) In-Reply-To: <565CB624.4040004@searchy.net> References: <565CB624.4040004@searchy.net> Date: Mon, 30 Nov 2015 23:45:46 +0100 Message-ID: Subject: Re: Poudriere, build older version of port From: Ben Woods To: "Frank de Bot (lists)" Cc: FreeBSD Ports Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 22:45:49 -0000 On 30 November 2015 at 21:48, Frank de Bot (lists) wrote: > Hi, > > I have some issue with a certain port version update. If I downgrade > this port everything works well. > > I use poudriere to build my own packages with own options. Is it > possible with poudriere to stick to a certain revision of a port? > > > Regards, > > Frank de Bot > Yes, you just maintain a ports tree with your custom version of the port. Depending on how you are updating your ports tree for the poudriere builds, you may need to make sure it is not overwriting your local changes. You might be better copying the port to a new port in your local tree, so any changes to the actual one don't over-write your local changes. However, I am not sure this is the best idea. If there is a problem with the port, you should probably either raise a bug report or get in contact with the port maintainer (you can see who maintains the port using freshports.org or by looking in the Makefile. If you keep a custom port and it stops working in the future, you will be on your own. If you report the problem and get it fixed for everyone, you can enjoy the new port updates and fixes as they become available in the future. Regards, Ben From owner-freebsd-ports@freebsd.org Mon Nov 30 23:46:20 2015 Return-Path: Delivered-To: freebsd-ports@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 18848A3C60A for ; Mon, 30 Nov 2015 23:46:20 +0000 (UTC) (envelope-from reko.turja@liukuma.net) Received: from cerebro.liukuma.net (cerebro.liukuma.net [IPv6:2a00:d1e0:1000:1b00::2]) by mx1.freebsd.org (Postfix) with ESMTP id C895010D7 for ; Mon, 30 Nov 2015 23:46:19 +0000 (UTC) (envelope-from reko.turja@liukuma.net) Received: from cerebro.liukuma.net (localhost [127.0.0.1]) by cerebro.liukuma.net (Postfix) with ESMTP id 4C39C8A048A; Tue, 1 Dec 2015 01:46:11 +0200 (EET) DKIM-Filter: OpenDKIM Filter v2.8.3 cerebro.liukuma.net 4C39C8A048A DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=liukuma.net; s=liukudkim; t=1448927171; bh=kOG2rY0t0xVwmm8ZLG5hqW9XXxTUiQzsmkMeDvWK25I=; h=From:To:References:In-Reply-To:Subject:Date; b=rJqsobbMO2e4ME2uMktaKEilkkk7dUMYzH4VL1wJb7qnji72PbCvWSQonMF3zYFNf QbPEAJaTuIFCx2UVCMB7S5h0/plei8N2EAPT6kho55equ378aTGJkmNGushlbI6mGg gMQi0eqqzVo7bnEqm92+1Eg8XixPFN8bRiobhVKs= X-Virus-Scanned: amavisd-new at liukuma.net Received: from cerebro.liukuma.net ([127.0.0.1]) by cerebro.liukuma.net (cerebro.liukuma.net [127.0.0.1]) (amavisd-new, port 10027) with LMTP id M9YdNr8_X23Y; Tue, 1 Dec 2015 01:46:10 +0200 (EET) Received: from Rivendell (dsl-kmibrasgw1-50dfdd-193.dhcp.inet.fi [80.223.221.193]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: ignatz@cerebro.liukuma.net) by cerebro.liukuma.net (Postfix) with ESMTPSA id 54EC68A03CD; Tue, 1 Dec 2015 01:46:10 +0200 (EET) DKIM-Filter: OpenDKIM Filter v2.8.3 cerebro.liukuma.net 54EC68A03CD Message-ID: From: "Reko Turja" To: "Carmel NY" , "FreeBSD Ports" References: <565C464C.8070809@toco-domains.de> <565C567D.4020205@FreeBSD.org> In-Reply-To: Subject: Re: Updating php Date: Tue, 1 Dec 2015 01:46:06 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal Importance: Normal X-Mailer: Microsoft Windows Live Mail 16.4.3528.331 X-MimeOLE: Produced By Microsoft MimeOLE V16.4.3528.331 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 23:46:20 -0000 > Thanks for the info. Can you tell me where I can find some > documentation on > how to set up "php-fpm" on a FreeBSD-10.2 system running "apache24"? As MAtthew said, this removes lots of hassle (and actually allows running of threaded Apache and php on top of each other without all kinds of interesting side effects) This is how I've done it based on sources from internet and then adjusting the sources into practise - tbh the amount of good how-to's on the subject is pretty minimal: First you need to load mod fcgi (and of course compile/install binary too) in httpd.conf like this (just add on the bottom of other LoadModules if not already there: LoadModule fcgid_module libexec/apache24/mod_fcgid.so For my applications I've had to set some other variables, the following is snippet of my httpd conf just after the LoadModules: FcgidFixPathinfo 1 FcgidMaxRequestLen 13107200 FcgidMaxProcessesPerClass 50 FcgidMaxRequestInMem 131072 FcgidIOTimeout 90 AddHandler fcgid-script .php Options +ExecCGI FcgidWrapper /usr/local/bin/php-wrapper .php As you see, we need a wrapper script in whatever directory we want, for sake of consistency I use /usr/local/bin. For my needs the contents of the wrapper shell script are very simply: #!/bin/sh # Set desired PHP_FCGI_* environment variables. # Example: # PHP FastCGI processes exit after 500 requests by default. PHP_FCGI_MAX_REQUESTS=1000 export PHP_FCGI_MAX_REQUESTS As we are running cgi from "page directories" we need to tell Apache that running CGI is "okay" (as there's always a risk involved, this you need to think yourself) from these, so: ... Options ExecCGI ... ... That's basically how to set the thing up and running. -Reko " From owner-freebsd-ports@freebsd.org Tue Dec 1 00:00:32 2015 Return-Path: Delivered-To: freebsd-ports@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 9A88DA3CC68 for ; Tue, 1 Dec 2015 00:00:32 +0000 (UTC) (envelope-from sax12@web.de) Received: from mout.web.de (mout.web.de [212.227.15.4]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.web.de", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F06421966 for ; Tue, 1 Dec 2015 00:00:30 +0000 (UTC) (envelope-from sax12@web.de) Received: from [86.56.115.152] by 3capp-webde-bap51.server.lan (via HTTP); Tue, 1 Dec 2015 00:47:29 +0100 MIME-Version: 1.0 Message-ID: From: sax12@web.de To: freebsd-ports@freebsd.org Subject: Help needed for VeraCrypt port Content-Type: text/plain; charset=UTF-8 Date: Tue, 1 Dec 2015 00:47:29 +0100 Importance: normal Sensitivity: Normal X-Priority: 3 X-Provags-ID: V03:K0:7eU3DkpZ7vTtWqRHD60Xipn8XVxGVTaQ38yztr0y+wE Af4ZkcahWCZATCYuGDeK5CUYJzTzlkIhuP+CZyZVbMTxViqaOG XNmozzWH8esVHVeGF6Yg7gipAYs+hbYsjHky3OXVwozHK5i1Mg r8e8NMLwXwoVyDarqdYmD5nXOitgpKQ2WtVgADBy4vJMPoKzCo 4RN65FC3okEo3lTPhKj00L+W7AHiQ2XoA4+trZ1aMhrdLq7Q7X 4YOxuw2kc3ibe5AFXu20bNOrAK8OPcapkpTqNwhAsz/AIXIEVa ug7zAIydyH9cTHuV521n7APJXG5 X-UI-Out-Filterresults: notjunk:1;V01:K0:xXehefVu2gY=:Quai0ARx65BktYWF59QvUi iAQMSO/aaECARFnD8dAnu8WnHxk/5nJ5YI0D+DV6GwtBJRr7zE7epVH7XSNvRVuptqWkhR0SG G2Y/EQqBpSp4YHmCC0P2GMqStTjC+6/VU54uYpQzZ8Clzdj3586bXBb2c0JbTeleZowKTGkjp ukbfmW9aqg44AOVZGHGvwspp2M+BSsJ6xGtKJ6vMg58IhnzVBXWvCZyUV2UQRpwJfTANfnjW5 ikuBMtKEO+wb8O+T075sQeLCt399iOW77+f1u34WUxFMSEl/8wnlgYJy7j/FRS5m42tT7h6C2 Fg3gT2ycznmWiEMUWItSzb7bqyQwtShrzpKGq2kyXy03UJTLJcIgo2k8ZknLXnz/LZ6hOqYNO in637br+I+qIaqNnhs3xK/AKOkM7A1eZVrvfeZu2BcVxQ/19wb7OHoiQGRFDCYpL1eSprPL1M 22NoKS98zQ== X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 00:00:32 -0000 On the GitHub page of VeraCrypt (a successor of TrueCrypt) I asked, if there will be a FreeBSD port. One developer replied that he already looked into it as there is some FreeBSD code left from TrueCrypt. But he encountered a problem with "fuse" and that any help by a BSD developer would be appreciated. As I'm not a developer with the required skill set, I thought I will just forward the message to any interested party. Maybe an interested developer will get in contact with him on GitHub and help him out. The Issue in question is: https://github.com/veracrypt/VeraCrypt/issues/34 It would be great to have VeraCrypt supported on FreeBSD to share encrypted containers or hard disks between multiple operating systems. Have a nice day. From owner-freebsd-ports@freebsd.org Tue Dec 1 06:20:52 2015 Return-Path: Delivered-To: freebsd-ports@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 84B7EA3E39E for ; Tue, 1 Dec 2015 06:20:52 +0000 (UTC) (envelope-from russ.haley@gmail.com) Received: from mail-vk0-x235.google.com (mail-vk0-x235.google.com [IPv6:2607:f8b0:400c:c05::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4173815B3 for ; Tue, 1 Dec 2015 06:20:52 +0000 (UTC) (envelope-from russ.haley@gmail.com) Received: by vkay187 with SMTP id y187so117219539vka.3 for ; Mon, 30 Nov 2015 22:20:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=tFbpTmh44wwjZRKVH5KACPjiAV/jws+KRLMbbVeU+/E=; b=Cg3WuVYiy1+HCuR+/S+iKjgcqHZZua0gP3HEVS+fvqPavYefqfWGcuF3Pcwu73q9ia lf7o1bHFMJKlDsE4QT9I//RDegom/nC5mDoc06TinLegYaLmru9Vk5GtoOF4oObtvhCY j45qd8gg8x0RoZtbv0ogHp1jKDQuvfS2TrjWzqHiu5Bj1aijCUvuEUo2s7FzbdyzS/Zu 0D8FdxXUsKSaw3UnMwv8xB+Ian8QNY802Ud1KWuUs21Fx4RmO8x6Ym06Xt51NTG7gF/R 8GlJAXIjhbmATWkWm+eLptCVWx6MuEZ/Vx5fTcwpXw0S7DqNBRYJTSPLIGcso9NC8gNy kDcg== MIME-Version: 1.0 X-Received: by 10.31.16.197 with SMTP id 66mr55308952vkq.143.1448950851122; Mon, 30 Nov 2015 22:20:51 -0800 (PST) Received: by 10.31.47.137 with HTTP; Mon, 30 Nov 2015 22:20:51 -0800 (PST) Date: Mon, 30 Nov 2015 22:20:51 -0800 Message-ID: Subject: MonoDevelop Rosyln From: Russell Haley To: freebsd-ports@freebsd.org Content-Type: multipart/mixed; boundary=001a11436378c752880525d02886 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 06:20:52 -0000 --001a11436378c752880525d02886 Content-Type: text/plain; charset=UTF-8 Hi There, I'm trying to create a current port of the MonoDevelop project. The port currently it sits at 5.0.1 and says it's broken. I have been able to get a build from Github working, but not from the tarball download method that the current port uses. I am trying to change the port over to use Github. I've anguished over this decision but want to move forward. Needless to say, I have now broken the port! The monodevelop project uses links to other projects. I have created the sub items under GH_PROJECT and GH_TAGNAME but every "other" sub-project doesn't work. (note, I run make clean but still get that saved configuration line?) as follows : #make ===> Found saved configuration for monodevelop-5.0.1_1 ===> monodevelop-5.11_1 depends on file: /usr/local/sbin/pkg - found _MASTER_SITES_mono-tools= https://codeload.github.com/mono/mono-tools/tar.gz/db35c5c?dummy=/: not found *** Error code 127 Stop. make[1]: stopped in /usr/ports/devel/monodevelop *** Error code 1 Stop. make: stopped in /usr/ports/devel/monodevelop Any input would be dandy. Thanks! Russ --001a11436378c752880525d02886 Content-Type: application/octet-stream; name=Makefile Content-Disposition: attachment; filename=Makefile Content-Transfer-Encoding: base64 X-Attachment-Id: f_ihmzv7pe0 IyBDcmVhdGVkIGJ5OiBUb20gTWNMYXVnaGxpbiA8dG1jbGF1Z2hAc2RmLmxvbmVzdGFyLm9yZz4K IyAkRnJlZUJTRDogaGVhZC9kZXZlbC9tb25vZGV2ZWxvcC9NYWtlZmlsZSAzOTQzOTEgMjAxNS0w OC0xNiAwNjo1NzoyNFogcm9tYWluICQKClBPUlROQU1FPQltb25vZGV2ZWxvcApQT1JUVkVSU0lP Tj0JNS4xMQpQT1JUUkVWSVNJT049CTEKQ0FURUdPUklFUz0JZGV2ZWwKI01BU1RFUl9TSVRFUz0J aHR0cDovL2Rvd25sb2FkLm1vbm8tcHJvamVjdC5jb20vc291cmNlcy8ke1BPUlROQU1FfS8KI01J Tk9SVkVSU0lPTj0JMC40NzQKRElTVEZJTEVTPQkke0RJU1ROQU1FfS4ke01JTk9SVkVSU0lPTn0k e0VYVFJBQ1RfU1VGWH0KClVTRV9HSVRIVUI9CXllcwpHSF9BQ0NPVU5UPQltb25vCkdIX1BST0pF Q1Q9CWNlY2lsOmNlY2lsIFwKCQlkZWJ1Z2dlci1saWJzOmRlYnVnZ2VyLWxpYnMgXAoJCWZzaGFy cGJpbmRpbmc6ZnNoYXJwYmluZGluZyBcCgkJZ3VpdW5pdDogZ3VpdW5pdCBcCgkJaWt2bTppa3Zt IFwKCQlsaWJnaXQyc2hhcnA6bGliZ2l0MnNoYXJwIFwKCQltZHRlc3RoYXJuZXNzOm1kdGVzdGhh cm5lc3MgXAoJCW1vbm8tYWRkaW5zOm1vbm8tYWRkaW5zIFwKCQltb25vLXRvb2xzOm1vbm8tdG9v bHMgXAoJCW5yZWZhY3Rvcnk6bnJlZmFjdG9yeSBcCgkJbnVnZXQtYmluYXJ5Om51Z2V0LWJpbmFy eSBcCgkJc2hhcnBzdm4tYmluYXJ5OnNoYXJwc3ZuLWJpbmFyeSBcCgkJeHd0Onh3dAoKR0hfVEFH TkFNRT0JZGIzNWM1YyBcCgkJOThhZDAzZTpjZWNpbCBcCgkJNDcxNjA4MTpkZWJ1Z2dlci1saWJz IFwKCQlhNmFkMDM5OmZzaGFycGJpbmRpbmcgXAoJCTg0OTY5MDc6Z3VpdW5pdCBcCgkJYzllZGZl Nzppa3ZtIFwKCQkwNmJiYzk2OmxpYmdpdDJzaGFycCBcCgkJNDIyNGY1M2U6bWR0ZXN0aGFybmVz cyBcCgkJNjA4NzYyOm1vbm8tYWRkaW5zIFwKCQlkYjM1YzVjOm1vbm8tdG9vbHMgXAoJCWFiMWFk M2M6bnJlZmFjdG9yeSBcCgkJNDYxMmVhOTpudWdldC1iaW5hcnkgXAoJCTY1NTFjYTg6c2hhcnBz dm4tYmluYXJ5IFwKCQljNWVmZjk5Onh3dAoKTUFJTlRBSU5FUj0JbW9ub0BGcmVlQlNELm9yZwpD T01NRU5UPQlJREUgZm9yIHRoZSAuTkVUIHBsYXRmb3JtCgpXUktTUkNfU1VCRElSPSAgbWFpbgpC VUlMRF9ERVBFTkRTPQltYXV0aWw6JHtQT1JUU0RJUn0vZGV2ZWwvbW9uby1hZGRpbnMgCgkjCWxp YmdpdDI6JHtQT1JUU0RJUn0vZGV2ZWwvbGliZ2l0MgpSVU5fREVQRU5EUz0JJHtMT0NBTEJBU0V9 L2xpYi9saWJnZGlwbHVzLmE6JHtQT1JUU0RJUn0veDExLXRvb2xraXRzL2xpYmdkaXBsdXMgXAoJ CWV4Y3RhZ3M6JHtQT1JUU0RJUn0vZGV2ZWwvY3RhZ3MgXAoJCW1hdXRpbDoke1BPUlRTRElSfS9k ZXZlbC9tb25vLWFkZGlucyBcCgkJbGliZ2l0Mjoke1BPUlRTRElSfS9kZXZlbC9saWJnaXQyCgoK I0JST0tFTj0JCUdVSSBkb2VzIG5vdCBzdGFydAoKVVNFX0dOT01FPQlndGtzaGFycDIwIGdub21l c2hhcnAyMApHTlVfQ09ORklHVVJFPQl5ZXMKQ09ORklHVVJFX0FSR1M9CS0tZGlzYWJsZS11cGRh dGUtbWltZWRiIC0tZGlzYWJsZS11cGRhdGUtZGVza3RvcGRiCkNPTkZJR1VSRV9FTlY9CWFjX2N2 X3BhdGhfTUNTPSR7TE9DQUxCQVNFfS9iaW4vbWNzClVTRVM9CQlkZXNrdG9wLWZpbGUtdXRpbHMg Z2V0dGV4dCBnbWFrZSBtb25vIHBhdGhmaXggc2hhcmVkLW1pbWUtaW5mbyB0YXI6YnppcDIgCklO U1RBTExTX0lDT05TPQl5ZXMKCk9QVElPTlNfREVGSU5FPQlNT05PRVhUIEdJVCBTVk4KT1BUSU9O U19ERUZBVUxUPU1PTk9FWFQgR0lUIFNWTgpNT05PRVhUX0RFU0M9CUV4dGVuc2lvbnMgZm9yIE1v bm8gZGV2ZWxvcG1lbnQKR0lUX0RFU0M9CWdpdCBzdXBwb3J0CgpNT05PRVhUX0NPTkZJR1VSRV9F TkFCTEU9bW9ub2V4dGVuc2lvbnMKR0lUX0NPTkZJR1VSRV9FTkFCTEU9Z2l0CkdJVF9SVU5fREVQ RU5EUz1naXQ6JHtQT1JUU0RJUn0vZGV2ZWwvZ2l0ClNWTl9DT05GSUdVUkVfRU5BQkxFPXN1YnZl cnNpb24KU1ZOX1JVTl9ERVBFTkRTPXN2bjoke1BPUlRTRElSfS9kZXZlbC9zdWJ2ZXJzaW9uCgoj IFJlc3RyaWN0IHRvIHN0YWJsZSAoZXZlbikgdmVyc2lvbnMsIGluZGljYXRlZCBieSB0aGUgc2Vj b25kIGNvbXBvbmVudC4KUE9SVFNDT1VUPQlsaW1pdHc6MSxldmVuCgpwb3N0LXBhdGNoOgoJQCR7 UkVJTlBMQUNFX0NNRH0gLWUgJ3N8WyhdZ25vbWVfZGF0YVspXS9taW1lJCR8KHByZWZpeCkvc2hh cmUvbWltZXxnIDsgXAoJCXN8WyhdZ25vbWVfZGF0YVspXS9taW1lL3BhY2thZ2VzJCR8KHByZWZp eCkvc2hhcmUvbWltZS9wYWNrYWdlc3xnIDsgXAoJCXN8WyhdcHJlZml4WyldL2xpYi9wa2djb25m aWd8KHByZWZpeCkvbGliZGF0YS9wa2djb25maWd8ZycgXAoJCQkke1dSS1NSQ30vTWFrZWZpbGUu aW4KCUAke1JFSU5QTEFDRV9DTUR9IC1lICdzfC9iaW4vYmFzaHwvdXNyL2Jpbi9lbnYgYmFzaHwn IFwKCQkke1dSS1NSQ30vbW9ub2RldmVsb3AuaW4gXAoJCSR7V1JLU1JDfS9tZHRvb2wuaW4KCi5p bmNsdWRlIDxic2QucG9ydC5taz4K --001a11436378c752880525d02886-- From owner-freebsd-ports@freebsd.org Tue Dec 1 07:15:49 2015 Return-Path: Delivered-To: freebsd-ports@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 A131BA3DC42 for ; Tue, 1 Dec 2015 07:15:49 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (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 62CCE1910 for ; Tue, 1 Dec 2015 07:15:49 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) for freebsd-ports@freebsd.org with esmtp (envelope-from ) id <1a3fAB-000cuy-9u>; Tue, 01 Dec 2015 08:15:47 +0100 Received: from p578a69f9.dip0.t-ipconnect.de ([87.138.105.249] helo=freyja.zeit4.iv.bundesimmobilien.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) for freebsd-ports@freebsd.org with esmtpsa (envelope-from ) id <1a3fAB-000GTD-2K>; Tue, 01 Dec 2015 08:15:47 +0100 Date: Tue, 1 Dec 2015 08:15:41 +0100 From: "O. Hartmann" To: freebsd-ports Subject: lang/gcc: on CURRENT build fails with ./options.h:4301:3: error: redefinition of enumerator 'OPT_d' Message-ID: <20151201081541.38f0aaba@freyja.zeit4.iv.bundesimmobilien.de> Organization: FU Berlin X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Originating-IP: 87.138.105.249 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 07:15:49 -0000 Can not update/build lang/gcc on CURRENT, see error message below. Tried with and without bootstrap and also delete packages related to lang/gcc to ensure no disturbing remnants are left over. [...] echo timestamp > s-options /usr/bin/awk -f .././../gcc-4.8.5/gcc/opt-functions.awk -f .././../gcc-4.8.5/gcc/opt-read.awk \ -f .././../gcc-4.8.5/gcc/opth-gen.awk \ < optionlist > tmp-options.h /usr/bin/awk -f .././../gcc-4.8.5/gcc/opt-functions.awk -f .././../gcc-4.8.5/gcc/opt-read.awk \ -f .././../gcc-4.8.5/gcc/optc-save-gen.awk \ -v header_name="config.h system.h coretypes.h tm.h" < optionlist > options-save.c /usr/bin/awk -f .././../gcc-4.8.5/gcc/opt-functions.awk -f .././../gcc-4.8.5/gcc/opt-read.awk \ -f .././../gcc-4.8.5/gcc/optc-gen.awk \ -v header_name="config.h system.h coretypes.h options.h tm.h" < optionlist > options.c /bin/sh .././../gcc-4.8.5/gcc/../move-if-change tmp-options.h options.h echo timestamp > s-options-h build/gengtype \ -S .././../gcc-4.8.5/gcc -I gtyp-input.list -w tmp-gtype.state c++ -c -g -DIN_GCC -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long -Wno-variadic-macros -Wno-overlength-strings -fno-common -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I.././../gcc-4.8.5/gcc -I.././../gcc-4.8.5/gcc/build -I.././../gcc-4.8.5/gcc/../include -I.././../gcc-4.8.5/gcc/../libcpp/include -DLIBICONV_PLUG \ -o build/gencheck.o .././../gcc-4.8.5/gcc/gencheck.c c++: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated In file included from .././../gcc-4.8.5/gcc/gencheck.c:23: In file included from ./tm.h:16: ./options.h:4293:3: error: redefinition of enumerator 'OPT_C' OPT_C = 129, /* -C */ ^ ./options.h:4290:3: note: previous definition is here OPT_C = 126, /* -C */ ^ ./options.h:4301:3: error: redefinition of enumerator 'OPT_d' OPT_d = 137, /* -d */ ^ ./options.h:4299:3: note: previous definition is here OPT_d = 135, /* -d */ ^ ./options.h:4302:3: error: redefinition of enumerator 'OPT_D' OPT_D = 138, /* -D */ ^ ./options.h:4300:3: note: previous definition is here OPT_D = 136, /* -D */ ^ ./options.h:4305:3: error: redefinition of enumerator 'OPT_d' OPT_d = 141, /* -d */ From owner-freebsd-ports@freebsd.org Tue Dec 1 07:50:20 2015 Return-Path: Delivered-To: freebsd-ports@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 DF09DA3D374 for ; Tue, 1 Dec 2015 07:50:20 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C88B51EEA for ; Tue, 1 Dec 2015 07:50:20 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id C80BAA3D373; Tue, 1 Dec 2015 07:50:20 +0000 (UTC) Delivered-To: ports@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 C7B4CA3D372 for ; Tue, 1 Dec 2015 07:50:20 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 B851D1EE9 for ; Tue, 1 Dec 2015 07:50:20 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.15.2/8.15.2) with ESMTP id tB17oKJm014863 for ; Tue, 1 Dec 2015 07:50:20 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.15.2/8.15.2/Submit) id tB17oK1v014862; Tue, 1 Dec 2015 07:50:20 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201512010750.tB17oK1v014862@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: Tue, 1 Dec 2015 07:50:20 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 07:50:21 -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/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ mail/milter-manager | 2.0.4 | 2.0.7 ------------------------------------------------+-----------------+------------ 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-ports@freebsd.org Tue Dec 1 08:28:15 2015 Return-Path: Delivered-To: freebsd-ports@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 DA362A3DFDF; Tue, 1 Dec 2015 08:28:15 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) (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 98D08123A; Tue, 1 Dec 2015 08:28:15 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from [192.168.0.120] (port-212-202-156-99.static.qsc.de [212.202.156.99]) by toco-domains.de (Postfix) with ESMTPA id D3F241B22056; Tue, 1 Dec 2015 09:28:12 +0100 (CET) Subject: Re: Call for Help: need script for patching ports tree, building with poudriere To: Ricky G References: <564EDE98.9070508@toco-domains.de> <56532D4F.4090200@toco-domains.de> Cc: "freebsd-testing@freebsd.org" , "freebsd-ports@freebsd.org" From: =?UTF-8?Q?Torsten_Z=c3=bchlsdorff?= Message-ID: <565D4C7E.3040504@toco-domains.de> Date: Tue, 1 Dec 2015 08:30:06 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 08:28:16 -0000 Hello, >> That is a good attitude :) I am doing this also just to get in >> touch with something new and learn. As a professional trainer there >> is a trick in learning: whenever a question arises - by yourself or >> by another person: take the chance and look for it. So you will >> remember the answer much better. :) If you need a >> programming-mentor for this project feel free to contact me >> off-list. > > That would be great! your time will be most appreciated! I'm sorry Ricky. I tried to contact you already, but hotmail.com blocked my mailserver. And it is as always surprisingly hard to even find the removal request form... In short: because of a schedule shift i am very short on time. I have to match an deadline for an import project first. After that i will review your script and get more input for us from Craig. :) Do you have any code repository in action? It would be suboptimal if i review you last send version just to figure out you already changed the mentioned parts. ;) Hopefully my removal request is processed in the meantime. Thanks you very much, Torsten From owner-freebsd-ports@freebsd.org Tue Dec 1 11:12:16 2015 Return-Path: Delivered-To: freebsd-ports@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 B12D4A3DD00 for ; Tue, 1 Dec 2015 11:12:16 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU004-OMC4S20.hotmail.com (blu004-omc4s20.hotmail.com [65.55.111.159]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 690861571 for ; Tue, 1 Dec 2015 11:12:16 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU436-SMTP165 ([65.55.111.135]) by BLU004-OMC4S20.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Tue, 1 Dec 2015 03:11:09 -0800 X-TMN: [/esOfxABSkDCCMW79Z/DwNPzSeuThyGN] X-Originating-Email: [carmel_ny@outlook.com] Message-ID: Date: Tue, 1 Dec 2015 06:11:07 -0500 From: Carmel NY To: FreeBSD Ports , Torsten =?UTF-8?Q?Z=C3=BChl?= =?UTF-8?Q?sdorff?= Subject: Re: Call for Help: need script for patching ports tree, building with poudriere In-Reply-To: <565D4C7E.3040504@toco-domains.de> References: <564EDE98.9070508@toco-domains.de> <56532D4F.4090200@toco-domains.de> <565D4C7E.3040504@toco-domains.de> Organization: seibercom NET X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-OriginalArrivalTime: 01 Dec 2015 11:11:09.0184 (UTC) FILETIME=[FAFFD800:01D12C28] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 11:12:16 -0000 On Tue=2C 1 Dec 2015 08:30:06 +0100=2C Torsten Z=C3=BChlsdorff stated: >I'm sorry Ricky. I tried to contact you already=2C but hotmail.com blocked= =20 >my mailserver. And it is as always surprisingly hard to even find the=20 >removal request form... Why is it being blocked? What was the error code or other information relat= ed to the blocking? There are numerous articles describing being blocked by "hotmail" as well as other ISP=2C etcetera=2C but no one can really help yo= u unless you explain what the problem is. --=20 Carmel From owner-freebsd-ports@freebsd.org Tue Dec 1 11:26:08 2015 Return-Path: Delivered-To: freebsd-ports@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 A26C2A3C168 for ; Tue, 1 Dec 2015 11:26:08 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [176.9.39.170]) (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 6559C1012 for ; Tue, 1 Dec 2015 11:26:08 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from [0.0.0.0] (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) by toco-domains.de (Postfix) with ESMTPA id A0E481B22056; Tue, 1 Dec 2015 12:26:05 +0100 (CET) Subject: Re: Call for Help: need script for patching ports tree, building with poudriere To: Carmel NY , FreeBSD Ports References: <564EDE98.9070508@toco-domains.de> <56532D4F.4090200@toco-domains.de> <565D4C7E.3040504@toco-domains.de> From: Torsten Zuehlsdorff Message-ID: <565D83CD.5060503@toco-domains.de> Date: Tue, 1 Dec 2015 12:26:05 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 11:26:08 -0000 On 01.12.2015 12:11, Carmel NY wrote: >> I'm sorry Ricky. I tried to contact you already, but hotmail.com blocked >> my mailserver. And it is as always surprisingly hard to even find the >> removal request form... > > Why is it being blocked? What was the error code or other information related > to the blocking? There are numerous articles describing being blocked by > "hotmail" as well as other ISP, etcetera, but no one can really help you > unless you explain what the problem is. The error code is 550 SC-001. This is quite funny, because my mail-server is not listed at any spam/blocklists and in the last week there were only 5 emails send to hotmail/outlook.com by a customer using the mail-server. (Yes, i could not write to you either) I'm getting quite tired to keep up with the various changes and obscure policies of other mail service provider. Yahoo for example changed their policy, making usage of mailinglists nearly impossible. I wasn't seeking for help on this issue - sorry if this was misleading. I just make a promise to Ricky and want to give feedback, that i tried to accomplish it, but were slowed down by technical (and schedule) issues. Greetings, Torsten From owner-freebsd-ports@freebsd.org Tue Dec 1 12:12:00 2015 Return-Path: Delivered-To: freebsd-ports@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 7BA20A243ED for ; Tue, 1 Dec 2015 12:12:00 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU004-OMC3S36.hotmail.com (blu004-omc3s36.hotmail.com [65.55.116.111]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 341021892 for ; Tue, 1 Dec 2015 12:12:00 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU436-SMTP224 ([65.55.116.72]) by BLU004-OMC3S36.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Tue, 1 Dec 2015 04:10:53 -0800 X-TMN: [1U+bqi30IjdifjngIxQKkc+rgV1L0U7j] X-Originating-Email: [carmel_ny@outlook.com] Message-ID: Date: Tue, 1 Dec 2015 07:10:51 -0500 From: Carmel NY To: FreeBSD Ports Subject: Re: Call for Help: need script for patching ports tree, building with poudriere In-Reply-To: <565D83CD.5060503@toco-domains.de> References: <564EDE98.9070508@toco-domains.de> <56532D4F.4090200@toco-domains.de> <565D4C7E.3040504@toco-domains.de> <565D83CD.5060503@toco-domains.de> Organization: seibercom NET X-Mailer: Claws Mail 3.13.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 01 Dec 2015 12:10:52.0572 (UTC) FILETIME=[52DD75C0:01D12C31] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 12:12:00 -0000 On Tue, 1 Dec 2015 12:26:05 +0100, Torsten Zuehlsdorff stated: >On 01.12.2015 12:11, Carmel NY wrote: > >>> I'm sorry Ricky. I tried to contact you already, but hotmail.com blocked >>> my mailserver. And it is as always surprisingly hard to even find the >>> removal request form... >> >> Why is it being blocked? What was the error code or other information >> related to the blocking? There are numerous articles describing being >> blocked by "hotmail" as well as other ISP, etcetera, but no one can really >> help you unless you explain what the problem is. > >The error code is 550 SC-001. This is quite funny, because my >mail-server is not listed at any spam/blocklists and in the last week >there were only 5 emails send to hotmail/outlook.com by a customer using >the mail-server. >(Yes, i could not write to you either) > >I'm getting quite tired to keep up with the various changes and obscure >policies of other mail service provider. Yahoo for example changed their >policy, making usage of mailinglists nearly impossible. > >I wasn't seeking for help on this issue - sorry if this was misleading. >I just make a promise to Ricky and want to give feedback, that i tried >to accomplish it, but were slowed down by technical (and schedule) issues. Try: https://support.live.com/eform.aspx?productKey=edfsmsbl3&ct=eformts More info is available here: http://pc-freak.net/blog/howto-remove-delist-your-mail-server-ip-from-hotmail-live-com-and-msn-mail-server-blacklist/ It could be as simple as your SPF record being incorrect. Good Luck -- Carmel From owner-freebsd-ports@freebsd.org Tue Dec 1 13:54:41 2015 Return-Path: Delivered-To: freebsd-ports@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 5168AA3DFA0 for ; Tue, 1 Dec 2015 13:54:41 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from toco-domains.de (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) (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 142321539 for ; Tue, 1 Dec 2015 13:54:41 +0000 (UTC) (envelope-from mailinglists@toco-domains.de) Received: from [0.0.0.0] (mail.toco-domains.de [IPv6:2a01:4f8:150:50a5::6]) by toco-domains.de (Postfix) with ESMTPA id DB8F81B22056 for ; Tue, 1 Dec 2015 14:54:37 +0100 (CET) From: Torsten Zuehlsdorff Subject: Re: Call for Help: need script for patching ports tree, building with poudriere To: "freebsd-ports@freebsd.org >> FreeBSD Ports ML" References: <564EDE98.9070508@toco-domains.de> <56532D4F.4090200@toco-domains.de> <565D4C7E.3040504@toco-domains.de> <565D83CD.5060503@toco-domains.de> Message-ID: <565DA69D.5080503@toco-domains.de> Date: Tue, 1 Dec 2015 14:54:37 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Dec 2015 13:54:41 -0000 Hello, >>>> I'm sorry Ricky. I tried to contact you already, but hotmail.com blocked >>>> my mailserver. And it is as always surprisingly hard to even find the >>>> removal request form... >>> >>> Why is it being blocked? What was the error code or other information >>> related to the blocking? There are numerous articles describing being >>> blocked by "hotmail" as well as other ISP, etcetera, but no one can really >>> help you unless you explain what the problem is. >> >> The error code is 550 SC-001. This is quite funny, because my >> mail-server is not listed at any spam/blocklists and in the last week >> there were only 5 emails send to hotmail/outlook.com by a customer using >> the mail-server. >> (Yes, i could not write to you either) >> >> I'm getting quite tired to keep up with the various changes and obscure >> policies of other mail service provider. Yahoo for example changed their >> policy, making usage of mailinglists nearly impossible. >> >> I wasn't seeking for help on this issue - sorry if this was misleading. >> I just make a promise to Ricky and want to give feedback, that i tried >> to accomplish it, but were slowed down by technical (and schedule) issues. > > Try: https://support.live.com/eform.aspx?productKey=edfsmsbl3&ct=eformts > > More info is available here: > http://pc-freak.net/blog/howto-remove-delist-your-mail-server-ip-from-hotmail-live-com-and-msn-mail-server-blacklist/ I'm aware of this form and did request the removal already. Some minutes ago i get a positive feedback. > It could be as simple as your SPF record being incorrect. It is not incorrect - it is simply not set. There is much controversy around this technique, but at least i never had a problem because of not using it. ;) Greetings, Torsten From owner-freebsd-ports@freebsd.org Wed Dec 2 09:43:45 2015 Return-Path: Delivered-To: freebsd-ports@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 84904A3C799 for ; Wed, 2 Dec 2015 09:43:45 +0000 (UTC) (envelope-from ml@netfence.it) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6B7C8163B for ; Wed, 2 Dec 2015 09:43:45 +0000 (UTC) (envelope-from ml@netfence.it) Received: by mailman.ysv.freebsd.org (Postfix) id 6AEADA3C798; Wed, 2 Dec 2015 09:43:45 +0000 (UTC) Delivered-To: ports@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 6A3B1A3C797 for ; Wed, 2 Dec 2015 09:43:45 +0000 (UTC) (envelope-from ml@netfence.it) Received: from smtp209.alice.it (smtp209.alice.it [82.57.200.105]) by mx1.freebsd.org (Postfix) with ESMTP id 437A2163A; Wed, 2 Dec 2015 09:43:41 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.ventu (87.17.57.17) by smtp209.alice.it (8.6.060.28) (authenticated as acanedi@alice.it) id 563332A505E2DA92; Wed, 2 Dec 2015 10:43:33 +0100 Received: from guardian.ventu (bane.ventu [10.1.2.15]) (authenticated bits=0) by soth.ventu (8.15.2/8.14.9) with ESMTPSA id tB29hL4t073177 (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 2 Dec 2015 10:43:22 +0100 (CET) (envelope-from ml@netfence.it) X-Authentication-Warning: soth.ventu: Host bane.ventu [10.1.2.15] claimed to be guardian.ventu From: Andrea Venturoli Subject: cyrus-imap25 compilation problems To: ume@FreeBSD.org Cc: ports@freebsd.org Message-ID: <565EBD3C.5050803@netfence.it> Date: Wed, 2 Dec 2015 10:43:24 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.1.2.13 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 09:43:45 -0000 Hello. Compiling cyrus-imap25 on a 9.3/amd64 box of mine fails with: > lib/imclient.c: In function 'tls_init_clientengine': > lib/imclient.c:1644: error: 'SSL_OP_NO_COMPRESSION' undeclared (first use in this function) > lib/imclient.c:1644: error: (Each undeclared identifier is reported only once > lib/imclient.c:1644: error: for each function it appears in.) Full log attached. The same compiles on 10.1. Any hint? bye & Thanks av. From owner-freebsd-ports@freebsd.org Wed Dec 2 11:50:49 2015 Return-Path: Delivered-To: freebsd-ports@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 26814A3EB95 for ; Wed, 2 Dec 2015 11:50:49 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 06F981FFE for ; Wed, 2 Dec 2015 11:50:49 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: by mailman.ysv.freebsd.org (Postfix) id 051BBA3EB94; Wed, 2 Dec 2015 11:50:49 +0000 (UTC) Delivered-To: ports@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 04B83A3EB93 for ; Wed, 2 Dec 2015 11:50:49 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from mail.mahoroba.org (ent.mahoroba.org [IPv6:2001:2f0:104:8010::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "asuka.mahoroba.org", Issuer "ca.mahoroba.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5FE821FF9 for ; Wed, 2 Dec 2015 11:50:46 +0000 (UTC) (envelope-from ume@mahoroba.org) Received: from vsuiko.mahoroba.org (vsuiko.mahoroba.org [IPv6:2001:2f0:104:8010:a00:27ff:feb0:c2e]) (user=ume mech=DIGEST-MD5 bits=0) by mail.mahoroba.org (8.15.2/8.15.2) with ESMTPSA/inet6 id tB2BobK7024852 (version=TLSv1.2 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Wed, 2 Dec 2015 20:50:37 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Wed, 02 Dec 2015 20:50:28 +0900 Message-ID: From: Hajimu UMEMOTO To: Andrea Venturoli Cc: ports@freebsd.org Subject: Re: cyrus-imap25 compilation problems In-Reply-To: <565EBD3C.5050803@netfence.it> References: <565EBD3C.5050803@netfence.it> User-Agent: xcite1.60> Wanderlust/2.15.9 (Almost Unreal) Emacs/24.5 Mule/6.0 (HANACHIRUSATO) X-Operating-System: FreeBSD 10.2-STABLE X-PGP-Key: http://www.mahoroba.org/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Wed, 02 Dec 2015 20:50:37 +0900 (JST) X-Virus-Scanned: clamav-milter 0.98.7 at asuka.mahoroba.org X-Virus-Status: Clean X-Spam-Status: No, score=-3.5 required=5.0 tests=ALL_TRUSTED,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RP_MATCHES_RCVD autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on asuka.mahoroba.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 11:50:49 -0000 Hi, >>>>> On Wed, 2 Dec 2015 10:43:24 +0100 >>>>> Andrea Venturoli said: ml> Compiling cyrus-imap25 on a 9.3/amd64 box of mine fails with: > lib/imclient.c: In function 'tls_init_clientengine': > lib/imclient.c:1644: error: 'SSL_OP_NO_COMPRESSION' undeclared (first use in this function) > lib/imclient.c:1644: error: (Each undeclared identifier is reported only once > lib/imclient.c:1644: error: for each function it appears in.) It seems OpenSSL on 9.X is slightly old. I've just committed the change, and it should be fixed. Please update your ports tree and retry it. Sincerely, -- Hajimu UMEMOTO ume@mahoroba.org ume@FreeBSD.org http://www.mahoroba.org/~ume/ From owner-freebsd-ports@freebsd.org Wed Dec 2 17:57:28 2015 Return-Path: Delivered-To: freebsd-ports@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 43840A3F44C for ; Wed, 2 Dec 2015 17:57:28 +0000 (UTC) (envelope-from kpersson@clarkebroadcasting.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0C8FD1B5D for ; Wed, 2 Dec 2015 17:57:28 +0000 (UTC) (envelope-from kpersson@clarkebroadcasting.com) Received: by mailman.ysv.freebsd.org (Postfix) id 0B903A3F44B; Wed, 2 Dec 2015 17:57:28 +0000 (UTC) Delivered-To: ports@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 0B1D3A3F44A for ; Wed, 2 Dec 2015 17:57:28 +0000 (UTC) (envelope-from kpersson@clarkebroadcasting.com) Received: from na01-bn1-obe.outbound.protection.outlook.com (mail-bn1on0136.outbound.protection.outlook.com [157.56.110.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 73B5C1B5A for ; Wed, 2 Dec 2015 17:57:26 +0000 (UTC) (envelope-from kpersson@clarkebroadcasting.com) Received: from BY2PR0501MB1702.namprd05.prod.outlook.com (10.163.154.155) by BY2PR0501MB1704.namprd05.prod.outlook.com (10.163.154.157) with Microsoft SMTP Server (TLS) id 15.1.331.20; Wed, 2 Dec 2015 17:57:18 +0000 Received: from BY2PR0501MB1702.namprd05.prod.outlook.com ([10.163.154.155]) by BY2PR0501MB1702.namprd05.prod.outlook.com ([10.163.154.155]) with mapi id 15.01.0331.023; Wed, 2 Dec 2015 17:57:18 +0000 From: Kristofer Persson To: "ports@FreeBSD.org" Subject: FreeBSD Port: textproc/simplehtmldom Thread-Topic: FreeBSD Port: textproc/simplehtmldom Thread-Index: AdEtKlrGS7LpdzQ0RUix+8plo1Cx/A== Date: Wed, 2 Dec 2015 17:57:18 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: authentication-results: spf=none (sender IP is ) smtp.mailfrom=kpersson@clarkebroadcasting.com; x-originating-ip: [50.206.28.188] x-microsoft-exchange-diagnostics: 1; BY2PR0501MB1704; 5:QbN+byfTpXyncDGfMHHs+3AZwgTd6ceaAEAzZFNx7vuUgYlMJt4wFtmARVRRK2nUV807MfcFgGPe6WvZFbzh2wOyRzqGZGT/GQAe6fL2MNEXDf4srJKX5KjLtMwrbMJ8uszt7+4eNkwLzbt28IZnwg==; 24:eSt2F5eo8mA5tNFXLR34EJ5DarXxDMmS67g3ceo7CFI6uM3Iazcv+7kBeWnELEyCE//JzAXHMG5xnpEvaEIN2FO3GnDaoK8j54l+4bIjaPs= x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BY2PR0501MB1704; x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:(108003899814671); x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(601004)(2401047)(5005006)(520078)(8121501046)(3002001)(10201501046); SRVR:BY2PR0501MB1704; BCL:0; PCL:0; RULEID:; SRVR:BY2PR0501MB1704; x-forefront-prvs: 077884B8B5 x-forefront-antispam-report: SFV:NSPM; SFS:(10019020)(189002)(199003)(790700001)(5004730100002)(102836003)(6116002)(107886002)(5001960100002)(11100500001)(3846002)(110136002)(92566002)(2900100001)(81156007)(54356999)(1220700001)(189998001)(101416001)(5002640100001)(5003600100002)(2501003)(586003)(15975445007)(97736004)(19625215002)(19273905006)(19300405004)(74316001)(99936001)(77096005)(1096002)(450100001)(106356001)(19609705001)(40100003)(99286002)(19580395003)(2351001)(10400500002)(105586002)(229853001)(87936001)(15395725005)(16236675004)(66066001)(33656002)(50986999)(76576001)(19617315012)(122556002)(86362001)(5008740100001); DIR:OUT; SFP:1102; SCL:1; SRVR:BY2PR0501MB1704; H:BY2PR0501MB1702.namprd05.prod.outlook.com; FPR:; SPF:None; PTR:InfoNoRecords; MX:1; A:1; LANG:en; received-spf: None (protection.outlook.com: clarkebroadcasting.com does not designate permitted sender hosts) spamdiagnosticoutput: 1:23 spamdiagnosticmetadata: NSPM MIME-Version: 1.0 X-OriginatorOrg: clarkebroadcasting.com X-MS-Exchange-CrossTenant-originalarrivaltime: 02 Dec 2015 17:57:18.5073 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: 6eaea2f8-92fb-4e6a-b5ee-1b4d9594b144 X-MS-Exchange-Transport-CrossTenantHeadersStamped: BY2PR0501MB1704 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 17:57:28 -0000 I am upgrading from php5.4 to php5.5 and I use simplehtmldom. I installed = this via ports awhile back, I use it in a lot of my code. Recently it has = been marked broken and set to expire with php5.4, I found the source page= at http://sourceforge.net/projects/simplehtmldom, the version installed = on my system via ports is 1.11 Rev 184, how ever I see on sourceforge that = his latest version is 1.5 Rev 210 revised on 5-28-14. Why is it expiring = with 5.4? Can I use the one downloaded from the source on my freebsd and j= ust leave the port installed, will be wrong version but it will let me know= it's still installed. Thanks Kris From owner-freebsd-ports@freebsd.org Wed Dec 2 21:46:03 2015 Return-Path: Delivered-To: freebsd-ports@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 71148A3F6DB for ; Wed, 2 Dec 2015 21:46:03 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (unknown [IPv6:2602:d1:b4d6:e600:4261:86ff:fef6:aa2a]) (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 4C48F1077 for ; Wed, 2 Dec 2015 21:46:03 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.14.9/8.14.9) with ESMTP id tB2LkMVp002243 for ; Wed, 2 Dec 2015 13:46:28 -0800 (PST) (envelope-from bsd-lists@bsdforge.com) To: In-Reply-To: References: From: "Chris H" Subject: Re: FreeBSD Port: textproc/simplehtmldom Date: Wed, 02 Dec 2015 13:46:28 -0800 Content-Type: text/plain; charset=UTF-8; format=fixed MIME-Version: 1.0 Message-id: Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2015 21:46:03 -0000 On Wed, 2 Dec 2015 17:57:18 +0000 Kristofer Persson wrote > I am upgrading from php5.4 to php5.5 and I use simplehtmldom. I installed > this via ports awhile back, I use it in a lot of my code. Recently it has > been marked broken and set to expire with php5.4, I found the source page > at http://sourceforge.net/projects/simplehtmldom, the version installed on > my system via ports is 1.11 Rev 184, how ever I see on sourceforge that his > latest version is 1.5 Rev 210 revised on 5-28-14. Why is it expiring with > 5.4? Can I use the one downloaded from the source on my freebsd and just > leave the port installed, will be wrong version but it will let me know it's > still installed. > > Thanks Kris Hello Kris, I see that the port textproc/simplehtmldom currently has no maintainer. Given that you use this port; this would be a great opportunity to maintain the port, yourself (become maintainer). Even if you're not familiar with the entire process, the change required on your part to make this port work is quite trivial. Simply start a bug report: https://bugs.freebsd.org/bugzilla/enter_bug.cgi to get the ball rolling! :) --Chris > > > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@freebsd.org Thu Dec 3 13:03:00 2015 Return-Path: Delivered-To: freebsd-ports@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 5A1A2A3EBE2 for ; Thu, 3 Dec 2015 13:03:00 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 318931861 for ; Thu, 3 Dec 2015 13:03:00 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: by mailman.ysv.freebsd.org (Postfix) id 31498A3EBE1; Thu, 3 Dec 2015 13:03:00 +0000 (UTC) Delivered-To: ports@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 30EF3A3EBE0 for ; Thu, 3 Dec 2015 13:03:00 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: from mail-wm0-x235.google.com (mail-wm0-x235.google.com [IPv6:2a00:1450:400c:c09::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C00701860 for ; Thu, 3 Dec 2015 13:02:59 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: by wmec201 with SMTP id c201so25860672wme.0 for ; Thu, 03 Dec 2015 05:02:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=b-funky-nl.20150623.gappssmtp.com; s=20150623; h=from:content-type:content-transfer-encoding:subject:date:message-id :cc:to:mime-version; bh=WNsY/R3BTAopjAn3CxwwpiSVb0O2sRuA5C6BnrPGbUQ=; b=ylHZsBl9Oh8H5bZzTwi8Fd1nDrsR5nUxwrxoFeoQBq2qY9BkiWqZyMA/P1LJDx9rJc vkwETsTte3Hwn1aZfrN5j8nVH85aIxEIIpDoK3tZlpvT/QAgYJxRr6zPLpigpA7ICpHs Bv45BpZMK2iQ5vZzcjuWAZO7/T4FpACN7Z9BDePAl2kfK+8jAaQ5qDs3KI5wgrYFfVkS RhCeFeEEeAvBptX3KDs2gwoTHbdCAnIbipGdJ9QB97a+5Eqljg465s41B3dqcY9uMH0Q WENtrXybLyFyzYPeN/7eKtJ26lQ9DprdSZrCCPcU1SFM1edKzdIfpjlxlcCxj52yFhAr AClg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:content-type:content-transfer-encoding :subject:date:message-id:cc:to:mime-version; bh=WNsY/R3BTAopjAn3CxwwpiSVb0O2sRuA5C6BnrPGbUQ=; b=R1Tlw3O8pmht3nwS7FVdnGikxhnnStKz1JNf1cJP6d3m69VmMZGk0qyFsoFuVklIn9 WUsVK0CEIwsyoUBXHJnvyRCRzOUSipkCNHyBV/f640ESGp3cscCAwa81ln3vupsiXeL9 xQkPDmXwxIxnh79P5em1sagYH7Jz+cXHhkCpTpdOtKSlka7aNE+iUJFFlGPQ+Xh0b4ES N3KfmLgSKgY05BvTW5tv7AlHth+yzSUusdScIiDBlPs9MIwpbDBknfkYoaLlBRdH89w4 CJCmOh2A7Pxp5kJwuwtQMwwwbMwVdtynnJR/ivCSIiOTiWH40G+MGyNnpE/AzesBxoQJ SHBA== X-Gm-Message-State: ALoCoQnaaUeQquYFSzZrnD2iR+oYzqpdUz6dRr/MfQCtPxCSy0IFLr8TG0a/L/knXgQXApWPCO9q X-Received: by 10.194.243.227 with SMTP id xb3mr11686330wjc.96.1449147777718; Thu, 03 Dec 2015 05:02:57 -0800 (PST) Received: from [172.16.27.118] (static-201-246-112-80.thenetworkfactory.nl. [80.112.246.201]) by smtp.gmail.com with ESMTPSA id l128sm35337155wmf.10.2015.12.03.05.02.56 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 03 Dec 2015 05:02:56 -0800 (PST) From: Ruud Boon Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: FreeBSD Port: py27-letsencrypt-0.0.0.d20151123 Date: Thu, 3 Dec 2015 14:02:55 +0100 Message-Id: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> Cc: ports@FreeBSD.org To: koobs@FreeBSD.org Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) X-Mailer: Apple Mail (2.3112) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 13:03:00 -0000 Hi, Thnx for maintaining the letsencrypt port! I=E2=80=99m wondering if you have any plans to upgrade to the just = release v0.1.0? Cheers, Ruud= From owner-freebsd-ports@freebsd.org Thu Dec 3 13:22:57 2015 Return-Path: Delivered-To: freebsd-ports@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 5159DA3EFA9 for ; Thu, 3 Dec 2015 13:22:57 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x230.google.com (mail-pf0-x230.google.com [IPv6:2607:f8b0:400e:c00::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 21E4E1009; Thu, 3 Dec 2015 13:22:57 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pfu207 with SMTP id 207so8755585pfu.2; Thu, 03 Dec 2015 05:22:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=DvtsoA86pyLuwykOPJw5RduqSBd5Cwe1BE7jxVm8J/A=; b=FqiJwOuLeZH472mI9yhwOqLEr9flK95PFj0+spytGeNihiSuIgeDOglHqB7aJi+edN a6jao/u+kzTzp8iloVpkd1+09uNZZ3OvMvkebGEINrsR3qNDurkYUxKI86TGrebftL5k yTlZ+QZDUZCDAbwu3GI7koWYZyNfnLMNinCEry1+6AyZRAjn/N68QO8lIwBPGLrRD/ei kM+9qx3v8fZRmVzYBewPJ0CtDGWN/ntd8B0ggdfyr8yMpfy8D6rkpve+G5viEQ5dWc5u TCGo675TTqNPUtBHz42UcfmxdbLKQnFV5dV37S7SBH7AVjAaVManFYLD7oleWzlSEGRJ h0Ww== X-Received: by 10.98.73.10 with SMTP id w10mr12988861pfa.164.1449148976684; Thu, 03 Dec 2015 05:22:56 -0800 (PST) Received: from ?IPv6:2001:44b8:31ae:7b01::2? (2001-44b8-31ae-7b01-0000-0000-0000-0002.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::2]) by smtp.gmail.com with ESMTPSA id 24sm10841324pfm.75.2015.12.03.05.22.54 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 03 Dec 2015 05:22:56 -0800 (PST) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: FreeBSD Port: py27-letsencrypt-0.0.0.d20151123 References: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> To: Ruud Boon Cc: Bernard Spil , FreeBSD Ports From: Kubilay Kocak Message-ID: <56604226.7070702@FreeBSD.org> Date: Fri, 4 Dec 2015 00:22:46 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Thunderbird/42.0 MIME-Version: 1.0 In-Reply-To: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 13:22:57 -0000 On 4/12/2015 12:02 AM, Ruud Boon wrote: > Hi, > > Thnx for maintaining the letsencrypt port! > I’m wondering if you have any plans to upgrade to the just release v0.1.0? > > Cheers, > Ruud > You're welcome :) Bernard (cc'd) just landed the 20151123 update 2 days ago (I'm not sure how far off 0.1.0 that version is): https://svnweb.freebsd.org/ports/head/security/py-letsencrypt/Makefile?revision=402668&view=markup If 0.1.0 has been tagged in the upstream repo, I doubt it will be long before a patch/review is submitted to update it :) Thanks for getting in touch! ./koobs From owner-freebsd-ports@freebsd.org Thu Dec 3 15:16:58 2015 Return-Path: Delivered-To: freebsd-ports@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 D93BDA3FC44 for ; Thu, 3 Dec 2015 15:16:58 +0000 (UTC) (envelope-from brnrd@freebsd.org) Received: from smtp01.qsp.nl (smtp01.qsp.nl [193.254.214.162]) by mx1.freebsd.org (Postfix) with ESMTP id 958301906; Thu, 3 Dec 2015 15:16:58 +0000 (UTC) (envelope-from brnrd@freebsd.org) Received: from smtp01.qsp.nl (localhost [127.0.0.1]) by smtp01.qsp.nl (Postfix) with ESMTP id 1B8472A0C91; Thu, 3 Dec 2015 16:10:51 +0100 (CET) Received: from mail.brnrd.eu (unknown [193.164.217.85]) by smtp01.qsp.nl (Postfix) with ESMTP; Thu, 3 Dec 2015 16:10:50 +0100 (CET) Received: by mail.brnrd.eu (OpenSMTPD) with ESMTP id 7ec6e28e; Thu, 3 Dec 2015 16:11:08 +0100 (CET) X-Virus-Scanned: amavisd-new at brnrd.eu Received: from mail.brnrd.eu ([172.17.2.2]) by scan.brnrd.eu (scan.brnrd.eu [172.17.2.5]) (amavisd-new, port 10026) with ESMTP id L4lhrUlT8gYH; Thu, 3 Dec 2015 16:11:07 +0100 (CET) Received: by bachfreund.nl (OpenSMTPD) with ESMTPSA id 8b585208 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-SHA bits=128 verify=NO; Thu, 3 Dec 2015 16:11:07 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Thu, 03 Dec 2015 16:11:06 +0100 From: Bernard Spil To: koobs@freebsd.org Cc: Ruud Boon , FreeBSD Ports , Kubilay Kocak Subject: Re: FreeBSD Port: py27-letsencrypt-0.0.0.d20151123 In-Reply-To: <56604226.7070702@FreeBSD.org> References: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> <56604226.7070702@FreeBSD.org> Message-ID: <7d60ee3ebeb775e7ebb0e3f2a8a9bd52@imap.brnrd.eu> X-Sender: brnrd@freebsd.org User-Agent: Roundcube Webmail/1.1.3 X-SMTP-Virus-Scanned: clamav at smtp01 X-Spam-Status: No, score=0.6 required=5.0 tests=HK_RANDOM_ENVFROM, UNPARSEABLE_RELAY autolearn=disabled version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on svfilter04.qsp.nl X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:16:58 -0000 On 2015-12-03 14:22, Kubilay Kocak wrote: > On 4/12/2015 12:02 AM, Ruud Boon wrote: >> Hi, >> >> Thnx for maintaining the letsencrypt port! >> I’m wondering if you have any plans to upgrade to the just release >> v0.1.0? >> >> Cheers, >> Ruud >> > > You're welcome :) > > Bernard (cc'd) just landed the 20151123 update 2 days ago (I'm not sure > how far off 0.1.0 that version is): > > https://svnweb.freebsd.org/ports/head/security/py-letsencrypt/Makefile?revision=402668&view=markup > > If 0.1.0 has been tagged in the upstream repo, I doubt it will be long > before a patch/review is submitted to update it :) > > Thanks for getting in touch! > > ./koobs Seems that I am 15 hours behind!!! Patches coming up :D Kind regards, Bernard. From owner-freebsd-ports@freebsd.org Thu Dec 3 15:28:10 2015 Return-Path: Delivered-To: freebsd-ports@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 4C1FDA40180 for ; Thu, 3 Dec 2015 15:28:10 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: from mail-wm0-x232.google.com (mail-wm0-x232.google.com [IPv6:2a00:1450:400c:c09::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DEC09145A for ; Thu, 3 Dec 2015 15:28:09 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: by wmec201 with SMTP id c201so32463288wme.0 for ; Thu, 03 Dec 2015 07:28:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=b-funky-nl.20150623.gappssmtp.com; s=20150623; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=bgYL6VMHsuFhpXlkRxsYqNc6d6J1MBOYptpat1l7xuk=; b=barBPw8TVIrcKXdJGmjhL9Vloifzmcb3IkQjKrk465TFwPCKJvgoQMaAD3dPkqLLPm DmUDR3bo4DfChJp15lfpWtEQVJAT5bkS3qMX/YHSkfKkehcromFiPbMcXvrODe9pBB1F PA0k5Q9cCURR7iGYpSRZEkDIvyj32NE+Owqn3i7dHpMExwLAbrazkHVc+/aL39fvSh7y NlztT12v10Fx0IIEig2OsnYFhCgVd/tjlwHc26TIZXWWNiVzSKxGwn9TQb0d0COqLwqd HMAZk9omwV91bQj3s74PU/pQhqxCIhsXUvAoGMuBACeuM1eYZmVaZj7DMpEvIEGGLPAL yfBQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:content-type:mime-version:subject:from :in-reply-to:date:cc:content-transfer-encoding:message-id:references :to; bh=bgYL6VMHsuFhpXlkRxsYqNc6d6J1MBOYptpat1l7xuk=; b=LyiPR13zpZAOXmU/AG6iEjTj1PSxBZUbQQVqWHUWLnfHdghlsazXVPeHkw5tNHQcMN UoNiXbUDlMvru1EfnaXh6zBraZmjWM16WqQnH4YR/klicwrmwRsojx13IW1ABFa9sBZV 2RsGJFC2Y4726c13OASQvTjhB4IC38g5bCuNxhD3Y+J1vJP55khbk4Wjqvyhcrs/X8y2 n/KVw+EjABFcYDtQW9KSR6PsPeaTTzxB6iGXeS8VnGSmEwHRq1LB+KaRhEbYJjtns/Bw S3dr7BxCqcT6h2nxCBWDWwApdSQBfvUXDF9TtCJPzu/KPBJaiGFakjzx1G+55sCX+wQQ wc7w== X-Gm-Message-State: ALoCoQk91p+Q4trjh0cAWpJJ6BRV9Wxjk1cc0p+xh80d2/pBeRyF2QqSNyK/na+Hq3+BTghYz85F X-Received: by 10.28.127.141 with SMTP id a135mr49432153wmd.69.1449156488205; Thu, 03 Dec 2015 07:28:08 -0800 (PST) Received: from [172.16.27.118] (static-201-246-112-80.thenetworkfactory.nl. [80.112.246.201]) by smtp.gmail.com with ESMTPSA id k125sm8375592wmf.2.2015.12.03.07.28.06 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 03 Dec 2015 07:28:06 -0800 (PST) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) Subject: Re: FreeBSD Port: py27-letsencrypt-0.0.0.d20151123 From: Ruud Boon In-Reply-To: <7d60ee3ebeb775e7ebb0e3f2a8a9bd52@imap.brnrd.eu> Date: Thu, 3 Dec 2015 16:28:05 +0100 Cc: koobs@freebsd.org, FreeBSD Ports , Kubilay Kocak Content-Transfer-Encoding: quoted-printable Message-Id: References: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> <56604226.7070702@FreeBSD.org> <7d60ee3ebeb775e7ebb0e3f2a8a9bd52@imap.brnrd.eu> To: Bernard Spil X-Mailer: Apple Mail (2.3112) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:28:10 -0000 Awesome!! Thnx again! > On 03 Dec 2015, at 16:11, Bernard Spil wrote: >=20 > On 2015-12-03 14:22, Kubilay Kocak wrote: >> On 4/12/2015 12:02 AM, Ruud Boon wrote: >>> Hi, >>> Thnx for maintaining the letsencrypt port! >>> I=E2=80=99m wondering if you have any plans to upgrade to the just = release v0.1.0? >>> Cheers, >>> Ruud >> You're welcome :) >> Bernard (cc'd) just landed the 20151123 update 2 days ago (I'm not = sure >> how far off 0.1.0 that version is): >> = https://svnweb.freebsd.org/ports/head/security/py-letsencrypt/Makefile?rev= ision=3D402668&view=3Dmarkup >> If 0.1.0 has been tagged in the upstream repo, I doubt it will be = long >> before a patch/review is submitted to update it :) >> Thanks for getting in touch! >> ./koobs >=20 > Seems that I am 15 hours behind!!! >=20 > Patches coming up :D >=20 > Kind regards, >=20 > Bernard. From owner-freebsd-ports@freebsd.org Thu Dec 3 15:34:06 2015 Return-Path: Delivered-To: freebsd-ports@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 9014DA40304 for ; Thu, 3 Dec 2015 15:34:06 +0000 (UTC) (envelope-from brnrd@freebsd.org) Received: from smtp01.qsp.nl (smtp01.qsp.nl [193.254.214.162]) by mx1.freebsd.org (Postfix) with ESMTP id 46FB718AE; Thu, 3 Dec 2015 15:34:06 +0000 (UTC) (envelope-from brnrd@freebsd.org) Received: from smtp01.qsp.nl (localhost [127.0.0.1]) by smtp01.qsp.nl (Postfix) with ESMTP id F33CB2A0D80; Thu, 3 Dec 2015 16:34:04 +0100 (CET) Received: from mail.brnrd.eu (unknown [193.164.217.85]) by smtp01.qsp.nl (Postfix) with ESMTP; Thu, 3 Dec 2015 16:34:04 +0100 (CET) Received: by mail.brnrd.eu (OpenSMTPD) with ESMTP id 6dcd619e; Thu, 3 Dec 2015 16:34:22 +0100 (CET) X-Virus-Scanned: amavisd-new at brnrd.eu Received: from mail.brnrd.eu ([172.17.2.2]) by scan.brnrd.eu (scan.brnrd.eu [172.17.2.5]) (amavisd-new, port 10026) with ESMTP id OsuUfxsJFh7Q; Thu, 3 Dec 2015 16:34:20 +0100 (CET) Received: by bachfreund.nl (OpenSMTPD) with ESMTPSA id aae50e2b TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-SHA bits=128 verify=NO; Thu, 3 Dec 2015 16:34:20 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Thu, 03 Dec 2015 16:34:20 +0100 From: Bernard Spil To: koobs@freebsd.org Cc: Ruud Boon , FreeBSD Ports , Kubilay Kocak Subject: Re: FreeBSD Port: py27-letsencrypt-0.0.0.d20151123 In-Reply-To: <56604226.7070702@FreeBSD.org> References: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> <56604226.7070702@FreeBSD.org> Message-ID: <573d3720caa9986a30ab7823337ef532@imap.brnrd.eu> X-Sender: brnrd@freebsd.org User-Agent: Roundcube Webmail/1.1.3 X-SMTP-Virus-Scanned: clamav at smtp01 X-Spam-Status: No, score=0.6 required=5.0 tests=HK_RANDOM_ENVFROM, UNPARSEABLE_RELAY autolearn=disabled version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on svfilter02.qsp.nl X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:34:06 -0000 On 2015-12-03 14:22, Kubilay Kocak wrote: > On 4/12/2015 12:02 AM, Ruud Boon wrote: >> Hi, >> >> Thnx for maintaining the letsencrypt port! >> I’m wondering if you have any plans to upgrade to the just release >> v0.1.0? >> >> Cheers, >> Ruud >> > > You're welcome :) > > Bernard (cc'd) just landed the 20151123 update 2 days ago (I'm not sure > how far off 0.1.0 that version is): > > https://svnweb.freebsd.org/ports/head/security/py-letsencrypt/Makefile?revision=402668&view=markup > > If 0.1.0 has been tagged in the upstream repo, I doubt it will be long > before a patch/review is submitted to update it :) > > Thanks for getting in touch! > > ./koobs There you go https://github.com/Sp1l/ports/tree/master/security/py-acme https://github.com/Sp1l/ports/tree/master/security/py-letsencrypt or svn diff https://github.com/Sp1l/ports/blob/master/patches/patch-security_py-letsencrypt%2Bacme-0.1.0 Review here https://reviews.freebsd.org/D4360 (includes patch) Some rough edges in the patch still, but will be resolved soon Thanks for reporting, Bernard. From owner-freebsd-ports@freebsd.org Thu Dec 3 15:58:49 2015 Return-Path: Delivered-To: freebsd-ports@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 3CFD4A408ED for ; Thu, 3 Dec 2015 15:58:49 +0000 (UTC) (envelope-from brnrd@freebsd.org) Received: from smtp02.qsp.nl (smtp02.qsp.nl [193.254.214.163]) by mx1.freebsd.org (Postfix) with ESMTP id E608A1A2D; Thu, 3 Dec 2015 15:58:48 +0000 (UTC) (envelope-from brnrd@freebsd.org) Received: from smtp02.qsp.nl (localhost [127.0.0.1]) by smtp02.qsp.nl (Postfix) with ESMTP id A61F1FD07D; Thu, 3 Dec 2015 16:49:11 +0100 (CET) Received: from mail.brnrd.eu (unknown [193.164.217.85]) by smtp02.qsp.nl (Postfix) with ESMTP; Thu, 3 Dec 2015 16:49:11 +0100 (CET) Received: by mail.brnrd.eu (OpenSMTPD) with ESMTP id 9e8448a6; Thu, 3 Dec 2015 16:49:29 +0100 (CET) X-Virus-Scanned: amavisd-new at brnrd.eu Received: from mail.brnrd.eu ([172.17.2.2]) by scan.brnrd.eu (scan.brnrd.eu [172.17.2.5]) (amavisd-new, port 10026) with ESMTP id UejmtMGuXCqV; Thu, 3 Dec 2015 16:49:28 +0100 (CET) Received: by bachfreund.nl (OpenSMTPD) with ESMTPSA id 5b53689f TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-SHA bits=128 verify=NO; Thu, 3 Dec 2015 16:49:28 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Thu, 03 Dec 2015 16:49:28 +0100 From: Bernard Spil To: cpm@fbsd.es Cc: koobs@freebsd.org, FreeBSD Ports , Kubilay Kocak , Ruud Boon Subject: Please review for Letsencrypt 0.1.0 public BETA (today!) In-Reply-To: References: <36418A72-7AC8-4A48-B8FB-DA1899C48311@b-funky.nl> <56604226.7070702@FreeBSD.org> <7d60ee3ebeb775e7ebb0e3f2a8a9bd52@imap.brnrd.eu> Message-ID: X-Sender: brnrd@freebsd.org User-Agent: Roundcube Webmail/1.1.3 X-Virus-Scanned: clamav at smtp02 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 15:58:49 -0000 On 2015-12-03 16:28, Ruud Boon wrote: > Awesome!! > > Thnx again! > >> On 03 Dec 2015, at 16:11, Bernard Spil wrote: >> >> On 2015-12-03 14:22, Kubilay Kocak wrote: >>> On 4/12/2015 12:02 AM, Ruud Boon wrote: >>>> Hi, >>>> Thnx for maintaining the letsencrypt port! >>>> I’m wondering if you have any plans to upgrade to the just release >>>> v0.1.0? >>>> Cheers, >>>> Ruud >>> You're welcome :) >>> Bernard (cc'd) just landed the 20151123 update 2 days ago (I'm not >>> sure >>> how far off 0.1.0 that version is): >>> https://svnweb.freebsd.org/ports/head/security/py-letsencrypt/Makefile?revision=402668&view=markup >>> If 0.1.0 has been tagged in the upstream repo, I doubt it will be >>> long >>> before a patch/review is submitted to update it :) >>> Thanks for getting in touch! >>> ./koobs >> >> Seems that I am 15 hours behind!!! >> >> Patches coming up :D >> >> Kind regards, >> >> Bernard. Hi Carlos, Kubilay, Can you please review D4360? Public BETA of Letsencrypt opens today and this 0.1.0 release arrives in line with the release. Would be great to get it in the first day. Bernard. From owner-freebsd-ports@freebsd.org Fri Dec 4 07:38:43 2015 Return-Path: Delivered-To: freebsd-ports@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 1B776A40C84 for ; Fri, 4 Dec 2015 07:38:43 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 04BE11BE2 for ; Fri, 4 Dec 2015 07:38:43 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0202CA40C82; Fri, 4 Dec 2015 07:38:43 +0000 (UTC) Delivered-To: ports@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 01B01A40C81 for ; Fri, 4 Dec 2015 07:38:43 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 E6DA21BE1 for ; Fri, 4 Dec 2015 07:38:42 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.15.2/8.15.2) with ESMTP id tB47cgks011090 for ; Fri, 4 Dec 2015 07:38:42 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.15.2/8.15.2/Submit) id tB47cgUp011088; Fri, 4 Dec 2015 07:38:42 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201512040738.tB47cgUp011088@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: Fri, 4 Dec 2015 07:38:42 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 07:38:43 -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/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/libthai | 0.1.23 | 0.1.24 ------------------------------------------------+-----------------+------------ math/superlu | 4.3 | 5.1 ------------------------------------------------+-----------------+------------ 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-ports@freebsd.org Fri Dec 4 12:36:06 2015 Return-Path: Delivered-To: freebsd-ports@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 3B617A406D9 for ; Fri, 4 Dec 2015 12:36:06 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 21D9F19AF for ; Fri, 4 Dec 2015 12:36:06 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: by mailman.ysv.freebsd.org (Postfix) id 1E5B4A406D6; Fri, 4 Dec 2015 12:36:06 +0000 (UTC) Delivered-To: ports@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 1E005A406D5 for ; Fri, 4 Dec 2015 12:36:06 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from smtp.schonrocks.com (smtp.schonrocks.com [89.187.108.85]) by mx1.freebsd.org (Postfix) with ESMTP id 710A2198E; Fri, 4 Dec 2015 12:36:05 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from [192.168.40.60] (home.zaheer.org.uk [81.187.127.171]) by smtp.schonrocks.com (Postfix) with ESMTPA id 4F8E2D7FC00; Fri, 4 Dec 2015 12:36:14 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schonrocks.com; s=default; t=1449232574; bh=4n5hy5dzROrmBkyJWCTQ3gFYgvqoTShZNDjO0v8w8kY=; h=To:Subject:Cc:From:Message-ID:Date:MIME-Version:Content-Type; b=fzOVxpXCBIN6rO1DFErbiL60Lsms231DrNTMEyJYFbH4sgsZlcg2xX1b4e2QyHLmf 0+w6GsdNnB+v9x/SDLU8FITU9C4pgHcUbX9Q3JLnUajUNmDqO3DKJH4A78fGehtNA0 ExMg9/um93eX2/2BRWpx6TwYOMsnIBDjIczyvi/c= To: ale@FreeBSD.org Subject: FreeBSD Port: php56-5.6.16 => php7 Cc: ports@FreeBSD.org From: Oliver Schonrock X-Enigmail-Draft-Status: N1110 Message-ID: <566188B3.5090101@schonrocks.com> Date: Fri, 4 Dec 2015 12:36:03 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QNqA8b7ek4j76g5xLfS4ivFTCQD95kDl9" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 12:36:06 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --QNqA8b7ek4j76g5xLfS4ivFTCQD95kDl9 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Alex Now that php7 is released: http://php.net/ , the task of creating the new FreeBSD ports for it, is on our plate. I wonder what plans you have for this, or how far along your are? I have been compiling php from ports for 14 years starting with version php4.3 on FreeBSD 5.3, I think. Many thanks for your efforts over that time. I am aware of some of the challenges. If you need/want some help with more obscure ports, testing or anything else, I would be very happy to help. We are just starting to deploy a new production environment in a new datacenter over the next few months and hope to base it on php7. So I am highly motivated to start testing this. Let me know if that's helpful. Thanks --=20 Oliver Sch=C3=B6nrock Mobile : +44 7880 617 446 email : oliver@schonrocks.com --QNqA8b7ek4j76g5xLfS4ivFTCQD95kDl9 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 iQEcBAEBAgAGBQJWYYizAAoJEF6SumULDx4Pv9UH/itwI6XRaQLbgk8a/MQobfQ8 ZK5YIPipQ9T00EyfCcleKGlIs/TTr0xw80LyJqo4Kn0jo24bQa6383BsaCFfGdl+ xzokwR4RaJM0sUaumlIr2Tcf5kksvcAFRbd8yhrL0Fhbr2trBBqcZ5E7xAQmWrMg 1uFAHj+i9azu2qiEtJS3VTnBmk6LoYDaW6AM4G7X5xK/ugLd0PFfj6uQbVao0ofS WJEvNEJ2MasD5JRL0V9mbx69B8y53swDz+f9U/MiiEjcpQ2puNMewmc1fBCkHtL7 lrUXpF55rv90Rn68EtQCVEvYiT7iQL5Mv96eKNzhHx/9S1oJodAfWqSs8YhmVx0= =+N21 -----END PGP SIGNATURE----- --QNqA8b7ek4j76g5xLfS4ivFTCQD95kDl9-- From owner-freebsd-ports@freebsd.org Fri Dec 4 22:40:30 2015 Return-Path: Delivered-To: freebsd-ports@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 E84CCA40193; Fri, 4 Dec 2015 22:40:30 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: from mail-ig0-x236.google.com (mail-ig0-x236.google.com [IPv6:2607:f8b0:4001:c05::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B7C5E1B5E; Fri, 4 Dec 2015 22:40:30 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: by igbxm8 with SMTP id xm8so47530438igb.1; Fri, 04 Dec 2015 14:40:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=6mO7qm7izUZ28pvEN8dcHqELseDKKWtzA0JqFXpiCAk=; b=NfmtIP+3W1Njmq/pHbFvMof/Jqn8QKjBIrEiItL9ebopQ2vLofQycLsm1vwzkEnU+x 4Xfecs1FhLx3vL8TGSVAAKzLaKmNHZEwAudp5jLAd+vMbVHmyly+TYuSz2yedq25ZIZ9 CcJW2xPC+zVjWqQNg/FKb6S8gU6CSXtsoBCOaqheoLi08a7oqHDIt8BcU49iAdM+RoU/ 3OPqed/Xq0++uyCCzI/tP5pK6ZrNqdwed4ozsaqVVLBY0nCquV2fkSZYSCeLEitvMRaO O2gzbBiGnRd0Kakk9Ok04mNzbHrW9L37WL7RgZbYG5mYcxxqIb5lBMa7PcSzjT+/imyx kcuQ== MIME-Version: 1.0 X-Received: by 10.50.155.106 with SMTP id vv10mr6138608igb.36.1449268830063; Fri, 04 Dec 2015 14:40:30 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.50.152.69 with HTTP; Fri, 4 Dec 2015 14:40:30 -0800 (PST) Date: Fri, 4 Dec 2015 14:40:30 -0800 X-Google-Sender-Auth: xYWZYUzNwnVHJ3egTC53RsYCCgo Message-ID: Subject: Python and SWIG support in ports? From: Craig Rodrigues To: ports , freebsd-python@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Dec 2015 22:40:31 -0000 Hi, I am working with the upstream maintainer of M2Crypto ( https://gitlab.com/m2crypto/m2crypto ). In the distutils that comes with Python, the swig binary is harcoded to "swig" if on a POSIX system: https://hg.python.org/cpython/file/v2.6.2/Lib/distutils/command/build_ext.py#l635 In our ports, we name our swig binaries things like "/usr/local/bin/swig2.0" or "/usr/local/bin/swig3.0". How do we deal with this in Python ports which use SWIG? If possible, I'd like to push a fix upstream for FreeBSD, if the upstream maintainer is OK with it. Thanks. -- Craig From owner-freebsd-ports@freebsd.org Sat Dec 5 00:54:52 2015 Return-Path: Delivered-To: freebsd-ports@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 35E8AA41AEA for ; Sat, 5 Dec 2015 00:54:52 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id EF58F1630; Sat, 5 Dec 2015 00:54:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id DCEE014AB; Sat, 5 Dec 2015 00:54:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 8D0EF19148; Sat, 5 Dec 2015 00:54:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id OIv_RVQ64C16; Sat, 5 Dec 2015 00:54:48 +0000 (UTC) Subject: Re: pkg-fallout mails DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 9F69019143 To: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= , Matthew Seaman References: <564C4F8E.40007@FreeBSD.org> Cc: FreeBSD Mailing List From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <566235D9.5070103@FreeBSD.org> Date: Fri, 4 Dec 2015 16:54:49 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="p1D0QUEqH8WBwJ2U2xq5THMvGu6WDphXq" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 00:54:52 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --p1D0QUEqH8WBwJ2U2xq5THMvGu6WDphXq Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 11/25/2015 2:33 AM, Fernando Apestegu=C3=ADa wrote: > On Wed, Nov 18, 2015 at 11:46 AM, Fernando Apestegu=C3=ADa > wrote: >> On Wed, Nov 18, 2015 at 11:14 AM, Matthew Seaman = wrote: >>> On 2015/11/18 07:04, Fernando Apestegu=C3=ADa wrote: >>>> !!! Jail is newer than host. (Jail: 1100090, Host: 1100085) !!! >>>> !!! This is not supported. !!! >>>> !!! Host kernel must be same or newer than jail. !!! >>>> !!! Expect build failures. !!! >>>> >>>> >>>> Can anyone please say if this is expected? Is anyone running >>>> tests/changing things in the ports building infrastructure? I could >>>> just ignore the mails, but I never received so many of these before.= >>> >>> This warning appears on pretty much all pkg-fallout e-mails for HEAD.= >>> It is a red-herring, and has nothing at all to do with why the e-mail= is >>> being sent. It's just a warning: the host and jail versions are >>> sufficiently close there is no actual conflict between the system ker= nel >>> and the jail's userland even though that userland is more recent. >> >> Thanks for the explanation! I should probably tweak the message and logic a bit to be less scary and normal. It is mostly for people trying to build head packages from a 10 kernel which is easily not supported and usually results in obscure failures like 'why is rm or this other basic tool not working?'. Even on head these kinds of things have happened but it is very rare. The last was due to capsicum changes a few years ago. --=20 Regards, Bryan Drewery --p1D0QUEqH8WBwJ2U2xq5THMvGu6WDphXq Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWYjXZAAoJEDXXcbtuRpfPY6IIAKVLL0NSejbZhx0v6esrvMhl vDekZ+zV2s6R70wedTdMJOIn4QYggaInM6hsu7govRzvzuvVBhQ2IPvBtxKW2wIi zQC9ohJoaizuMyKdLyO2E1JZhphkhXE328S3UhVAGYjWEN+QMgOUvfsZoDiIwGPf xK70DFc3rYu7WDU/QY1sysfXETTzem/nzzF9sQoG7ent5dzfdUraTI0Fs+9lVLEY nFQL/mpy4O8QlwxSdMjGIpjv8nDYu1uNmlgvrk+W1whWARNuVyFrJT4wGyfkp6Mg 0YaoxYfsGuLAwRZgipMl76qESUP/FixmFetEBXs0FBTdeCDyAdL4Z9rojPLwc3Q= =RaEC -----END PGP SIGNATURE----- --p1D0QUEqH8WBwJ2U2xq5THMvGu6WDphXq-- From owner-freebsd-ports@freebsd.org Sat Dec 5 01:01:37 2015 Return-Path: Delivered-To: freebsd-ports@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 A31D8A41BD8 for ; Sat, 5 Dec 2015 01:01:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 86A7E1A3E; Sat, 5 Dec 2015 01:01:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 7FDC115E4; Sat, 5 Dec 2015 01:01:37 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 39EE91915A; Sat, 5 Dec 2015 01:01:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id vS8_fPx9BfZy; Sat, 5 Dec 2015 01:01:30 +0000 (UTC) Subject: Re: MAKEFLAGS caused temporary insanity DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 0484B19155 To: Euan Thoms , Jan Beich References: Cc: FreeBSD Ports Mailing List From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <5662376C.8090809@FreeBSD.org> Date: Fri, 4 Dec 2015 17:01:32 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Gdg1ujJmdDRSfqBW416VEww0oifKs2diV" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 01:01:37 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Gdg1ujJmdDRSfqBW416VEww0oifKs2diV Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 11/24/2015 8:00 PM, Euan Thoms wrote: > =20 > On Tuesday, November 24, 2015 11:15 SGT, Jan Beich = wrote:=20 > =20 >> "Euan Thoms" writes: >> >>> do-build: >>> cd ${WRKSRC} && unset MAKEFLAGS && ${OPENSIPS_MAKE_ENV} >>> ${GMAKE} ${_MAKE_JOBS} ${ALL_TARGET} >> >> Have you tried defining NOPRECIOUSMAKEVARS in the port's Makefile? >> >=20 > That did the trick, thanks. I can now remove the "unset MAKEFLAGS" in d= o-build. > =20 > =20 As far as I can tell NOPRECIOUSMAKEVARS does not impact the variable literally named 'MAKEFLAGS'. It should only be impacting these: # make -V _EXPORTED_VARS ARCH OPSYS _OSRELEASE OSREL OSVERSION _PKG_CHECKED HAVE_COMPAT_IA32_KERN _SMP_CPUS CONFIGURE_MAX_CMD_LEN Which port was this? Which release are you running (real question is whether it was fmake or bmake)? --=20 Regards, Bryan Drewery --Gdg1ujJmdDRSfqBW416VEww0oifKs2diV Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWYjdsAAoJEDXXcbtuRpfPwg8H/0ihx3n87tvRB2jsntL7cjaF PZWyhxZq12Q55zFqm5wi1UfB9rz8GXWYfWQq6ypvOKBPIt9kUAQjdcrz0CyF7FW2 Qi7AHaVdvlolrTrD8ZekDi2Ty5tGfL8jzquMuLyDXLnNT/X5sp1nl/b+0W8SSCyw ok7uM7lbtwYpTiL6xmFFandpVQH/nF6G3LSGKEBUE3wCBpeHNR8b1vPuqrzzAx5f 2X5RDuFNFgd4H9TNXg0FgNHgadi0wPiqHEFicmp3rTaFETd9lAKlD1oZlhdJodNh cw6ib1e2kZY0sHMkLpswTpLKJO4wPG4yiJtnH63AXSEGWDq6CRrtA2+ezdLi8lU= =HJZA -----END PGP SIGNATURE----- --Gdg1ujJmdDRSfqBW416VEww0oifKs2diV-- From owner-freebsd-ports@freebsd.org Sat Dec 5 01:05:00 2015 Return-Path: Delivered-To: freebsd-ports@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 D1BA1A41D27 for ; Sat, 5 Dec 2015 01:05:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id B908D1BC2; Sat, 5 Dec 2015 01:05:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id B295616A0; Sat, 5 Dec 2015 01:05:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 6F04B19172; Sat, 5 Dec 2015 01:05:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id Ghba_Ga88Pe1; Sat, 5 Dec 2015 01:04:58 +0000 (UTC) Subject: Re: MAKEFLAGS caused temporary insanity DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 97BFE1916D To: Euan Thoms , Jan Beich References: <5662376C.8090809@FreeBSD.org> Cc: FreeBSD Ports Mailing List From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <5662383B.7070200@FreeBSD.org> Date: Fri, 4 Dec 2015 17:04:59 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <5662376C.8090809@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5VhEKD3D5kstLIwDdirJlTj2oJMH3T4oV" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 01:05:00 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --5VhEKD3D5kstLIwDdirJlTj2oJMH3T4oV Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 12/4/2015 5:01 PM, Bryan Drewery wrote: > On 11/24/2015 8:00 PM, Euan Thoms wrote: >> =20 >> On Tuesday, November 24, 2015 11:15 SGT, Jan Beich wrote:=20 >> =20 >>> "Euan Thoms" writes: >>> >>>> do-build: >>>> cd ${WRKSRC} && unset MAKEFLAGS && ${OPENSIPS_MAKE_ENV} >>>> ${GMAKE} ${_MAKE_JOBS} ${ALL_TARGET} >>> >>> Have you tried defining NOPRECIOUSMAKEVARS in the port's Makefile? >>> >> >> That did the trick, thanks. I can now remove the "unset MAKEFLAGS" in = do-build. >> =20 >> =20 >=20 > As far as I can tell NOPRECIOUSMAKEVARS does not impact the variable > literally named 'MAKEFLAGS'. It should only be impacting these: >=20 I see that it does pass MAKEFLAGS=3D in the environment actually. >=20 > Which port was this? Which release are you running (real question is > whether it was fmake or bmake)? >=20 I am still interested in this to try to fix the real problem if possible.= --=20 Regards, Bryan Drewery --5VhEKD3D5kstLIwDdirJlTj2oJMH3T4oV Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJWYjg7AAoJEDXXcbtuRpfPBE4H/ihjphi6W9rZ2lzF01utBPaZ 8cyu8GvSN+eOzYcnpStLRAx6RlH/AJ6045d/94M68hK1rCh7HOb8ILre2meK/t4Z wNVtj7z7RJSGqCVtZNPduJEF4bVkjhlS7ROe+Ntn0f3D0rCFcfY2b6zs7CSi3cx9 W/3qqtl4N8CFdud8++Udw1MdVAJCqfk7oVAVB+OCbmdylZQWuJMIf8LzCkgQJmEn m4YXUueZKGShmqjn0j/wheCTPS2XB1vB7dAYHuoj310VL1iadHVAMaCZE4dyQr/e qA748Uo94J5hEHrOptvW+MGgdzOV6xaNhHMO1j0N0trqkxNraTEpJ4YXIRzM7rQ= =h7CI -----END PGP SIGNATURE----- --5VhEKD3D5kstLIwDdirJlTj2oJMH3T4oV-- From owner-freebsd-ports@freebsd.org Sat Dec 5 02:44:56 2015 Return-Path: Delivered-To: freebsd-ports@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 901B5A40631; Sat, 5 Dec 2015 02:44:56 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x22c.google.com (mail-pf0-x22c.google.com [IPv6:2607:f8b0:400e:c00::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 53D831BD0; Sat, 5 Dec 2015 02:44:56 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pfu207 with SMTP id 207so34913953pfu.2; Fri, 04 Dec 2015 18:44:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=E+x7ecrKmRZo/nkJfZNVjh9woyHMp8kbq2oup6VKs8k=; b=SieOVepkvwddCDCh5qxt0gKCGOHrQ11m2Crrk6d3z6Jpkvn1XzFJh06JoGC08g4NTV 8q9om5ijeSGlgJrCWN1AIm+F8IWIaEqqI8HCrIAGBYSaeFJz7e+IsXWgu33Esz+Eu3S1 /C/eZu7tsU4zvCy3ogR1vwkNcLLGLk0kC7VR1MRdlo+0kKv/0RhBr+M2B9ONFm6atVrh XWDoUUP8paNrlWIdj7tJExAeVZBYOz/0D+ohFPlTuBS9NQ3lu5cSTNGz7q8km+C6AE+W 8ab3gjUDxLgRW5UE6la9f7TsDUFdfEy2tieMEl8/XrH6zypuOGF3yFTo64Onr8WwN0pn mDKg== X-Received: by 10.98.0.195 with SMTP id 186mr26410724pfa.130.1449283495440; Fri, 04 Dec 2015 18:44:55 -0800 (PST) Received: from ?IPv6:2001:44b8:31ae:7b01::2? (2001-44b8-31ae-7b01-0000-0000-0000-0002.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::2]) by smtp.gmail.com with ESMTPSA id 24sm19715824pfr.27.2015.12.04.18.44.53 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 04 Dec 2015 18:44:54 -0800 (PST) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: Python and SWIG support in ports? References: To: Craig Rodrigues , ports , freebsd-python@freebsd.org From: Kubilay Kocak X-Enigmail-Draft-Status: N1110 Message-ID: <56624F9B.30508@FreeBSD.org> Date: Sat, 5 Dec 2015 13:44:43 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Thunderbird/42.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 02:44:56 -0000 On 5/12/2015 9:40 AM, Craig Rodrigues wrote: > Hi, > > I am working with the upstream maintainer of M2Crypto ( > https://gitlab.com/m2crypto/m2crypto ). > > In the distutils that comes with Python, the swig binary is harcoded > to "swig" if on a POSIX system: > > https://hg.python.org/cpython/file/v2.6.2/Lib/distutils/command/build_ext.py#l635 Short-term, swig20 could provide a symlink to the versioned binary until a 'more correct' and permanent fix can be made. I'm not sure what to do about those ports that depend on swig30 in the presence of swig20 also being installed, given they don't appear to CONFLICT_INSTALL on each other. They both can't provide the swig symlink. Supporting swig in DEFAULT_VERSIONS doesn't sound right and is probably overkill. > In our ports, we name our swig binaries things like > "/usr/local/bin/swig2.0" or > "/usr/local/bin/swig3.0". How do we deal with this in Python ports which > use > SWIG? If this is the case, it would mean all swig dependent things are also broken. How are other ports dealing with it, or working? This might provide some insight. The if os.name == "posix": branch could do the same swig version-suffixed binary checking that the elif os.name == "nt": condition branch does. A smarter way might *also* be to add functionality to that swig method to allow the system to provide the binary path/name via envvars or command line argument to (build,build_ext) commands explicitly. I suggest creating an upstream issue. > If possible, I'd like to push a fix upstream for FreeBSD, if the upstream > maintainer > is OK with it. Hit us up on IRC (#freebsd-python) if you'd like to talk more, or have questions > Thanks. > > -- > Craig From owner-freebsd-ports@freebsd.org Sat Dec 5 02:47:07 2015 Return-Path: Delivered-To: freebsd-ports@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 D67FDA4069A; Sat, 5 Dec 2015 02:47:07 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pf0-x22a.google.com (mail-pf0-x22a.google.com [IPv6:2607:f8b0:400e:c00::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F7481CAF; Sat, 5 Dec 2015 02:47:07 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by pfu207 with SMTP id 207so34933542pfu.2; Fri, 04 Dec 2015 18:47:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=XQ0Lsqklcuonp0fvEC2WL1KMrCeg0+r8EA7yCHu1Pwo=; b=JIgE/k61S/chWtBXZ7l5aoWpqiPWYxr8wYZtS9eIvUUqLm8icpFwfJGMduRev6Sxem LSZQlyxNSP/6klnBse9jKBVWHygKTvHU1K2BUFBBVJH8XVbL48lkZ847a5aWN2Xff+Fh TJxz52TJ5AKa4MZgE0buJxaA7k/l4GMUe7E18aN3QRZ2rBwf5x3h9a2Gzz15NqfVQHsf 5H8v6i6cy2pqmLxCO8gcp5L2J6nU9U+MOXmv1zhBjKRimSZ4C3Lef9mjhvOmlPGATRyU bX63ZY9OPoQHa2/tk4RbfttthVYgXQBfkjzLKdEuZiom3ztgoHnBbuip0VUfyWGoXQSM VjSA== X-Received: by 10.98.69.197 with SMTP id n66mr26202463pfi.42.1449283627056; Fri, 04 Dec 2015 18:47:07 -0800 (PST) Received: from ?IPv6:2001:44b8:31ae:7b01::2? (2001-44b8-31ae-7b01-0000-0000-0000-0002.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::2]) by smtp.gmail.com with ESMTPSA id r26sm19722959pfa.45.2015.12.04.18.47.05 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 04 Dec 2015 18:47:06 -0800 (PST) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: Python and SWIG support in ports? References: <56624F9B.30508@FreeBSD.org> To: Craig Rodrigues , ports , freebsd-python@freebsd.org From: Kubilay Kocak Message-ID: <5662501F.10403@FreeBSD.org> Date: Sat, 5 Dec 2015 13:46:55 +1100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko/20100101 Thunderbird/42.0 MIME-Version: 1.0 In-Reply-To: <56624F9B.30508@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 02:47:08 -0000 On 5/12/2015 1:44 PM, Kubilay Kocak wrote: > On 5/12/2015 9:40 AM, Craig Rodrigues wrote: >> Hi, >> >> I am working with the upstream maintainer of M2Crypto ( >> https://gitlab.com/m2crypto/m2crypto ). >> >> In the distutils that comes with Python, the swig binary is harcoded >> to "swig" if on a POSIX system: >> >> https://hg.python.org/cpython/file/v2.6.2/Lib/distutils/command/build_ext.py#l635 > > Short-term, swig20 could provide a symlink to the versioned binary until > a 'more correct' and permanent fix can be made. > > I'm not sure what to do about those ports that depend on swig30 in the > presence of swig20 also being installed, given they don't appear to > CONFLICT_INSTALL on each other. They both can't provide the swig > symlink. Supporting swig in DEFAULT_VERSIONS doesn't sound right and is > probably overkill. > >> In our ports, we name our swig binaries things like >> "/usr/local/bin/swig2.0" or >> "/usr/local/bin/swig3.0". How do we deal with this in Python ports which >> use >> SWIG? > > If this is the case, it would mean all swig dependent things are also > broken. How are other ports dealing with it, or working? This might > provide some insight. > > The if os.name == "posix": branch could do the same swig > version-suffixed binary checking that the elif os.name == "nt": > condition branch does. > > A smarter way might *also* be to add functionality to that swig method > to allow the system to provide the binary path/name via envvars or > command line argument to (build,build_ext) commands explicitly. > > I suggest creating an upstream issue. By upstream I mean @ Python. >> If possible, I'd like to push a fix upstream for FreeBSD, if the upstream >> maintainer >> is OK with it. Also, another temporary workaround/option might be to implement a custom build_ext command in M2Crypto that does a smarter find_swig > Hit us up on IRC (#freebsd-python) if you'd like to talk more, or have > questions > >> Thanks. >> >> -- >> Craig > > > > From owner-freebsd-ports@freebsd.org Sat Dec 5 07:44:17 2015 Return-Path: Delivered-To: freebsd-ports@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 A04E3A41A14 for ; Sat, 5 Dec 2015 07:44:17 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8A6671E25 for ; Sat, 5 Dec 2015 07:44:17 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 891D7A41A10; Sat, 5 Dec 2015 07:44:17 +0000 (UTC) Delivered-To: ports@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 88C7CA41A0F for ; Sat, 5 Dec 2015 07:44:17 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (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 7A3721E24 for ; Sat, 5 Dec 2015 07:44:17 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.15.2/8.15.2) with ESMTP id tB57iHx3056001 for ; Sat, 5 Dec 2015 07:44:17 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.15.2/8.15.2/Submit) id tB57iHmU056000; Sat, 5 Dec 2015 07:44:17 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201512050744.tB57iHmU056000@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: Sat, 5 Dec 2015 07:44:17 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 07:44:17 -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/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/papi | 5.4.1 | 5.4.2 ------------------------------------------------+-----------------+------------ 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-ports@freebsd.org Sat Dec 5 09:10:23 2015 Return-Path: Delivered-To: freebsd-ports@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 7497CA400FD for ; Sat, 5 Dec 2015 09:10:23 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: from vfemail.net (fiveseven.neocoil.com [12.31.100.157]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32A0B1AA7 for ; Sat, 5 Dec 2015 09:10:22 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: (qmail 41334 invoked by uid 89); 5 Dec 2015 09:10:09 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Dec 2015 09:10:09 -0000 Received: (qmail 41128 invoked by uid 89); 5 Dec 2015 09:09:52 -0000 Received: by simscan 1.3.1 ppid: 41122, pid: 41125, t: 0.0030s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 5 Dec 2015 09:09:51 -0000 Received: (qmail 28766 invoked by uid 89); 5 Dec 2015 09:09:58 -0000 Received: by simscan 1.4.0 ppid: 28683, pid: 28749, t: 0.6087s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by mail.vfemail.net with ESMTPA; 5 Dec 2015 09:09:58 -0000 From: Jan Beich To: Bryan Drewery Cc: Euan Thoms , FreeBSD Ports Mailing List Subject: Re: MAKEFLAGS caused temporary insanity References: <5662376C.8090809@FreeBSD.org> Date: Sat, 05 Dec 2015 10:09:48 +0100 In-Reply-To: <5662376C.8090809@FreeBSD.org> (Bryan Drewery's message of "Fri, 4 Dec 2015 17:01:32 -0800") Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 09:10:23 -0000 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Bryan Drewery writes: > On 11/24/2015 8:00 PM, Euan Thoms wrote: > >>=20=20 >> On Tuesday, November 24, 2015 11:15 SGT, Jan Beich = wrote:=20 >>=20=20 >>> "Euan Thoms" writes: >>> >>>> do-build: >>>> cd ${WRKSRC} && unset MAKEFLAGS && ${OPENSIPS_MAKE_ENV} >>>> ${GMAKE} ${_MAKE_JOBS} ${ALL_TARGET} >>> >>> Have you tried defining NOPRECIOUSMAKEVARS in the port's Makefile? >>> >>=20 >> That did the trick, thanks. I can now remove the "unset MAKEFLAGS" in do= -build. >>=20=20 >>=20=20 > > As far as I can tell NOPRECIOUSMAKEVARS does not impact the variable > literally named 'MAKEFLAGS'. It should only be impacting these: > > # make -V _EXPORTED_VARS > ARCH OPSYS _OSRELEASE OSREL OSVERSION _PKG_CHECKED HAVE_COMPAT_IA32_KERN > _SMP_CPUS CONFIGURE_MAX_CMD_LEN Did you read my reply untrimmed? net/opensips uses ARCH in vendor Makefile and the framework clobbers its value. Some ports like multimedia/ffmpeg rename the variable, others give up and define NOPRECIOUSMAKEVARS. > Which port was this? Which release are you running (real question is > whether it was fmake or bmake)? Affects both. I did propose 2 ways to fix. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJWYqncXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3b/64IAMEwkS6vj59wIc8sHwLj3XMF nPxfclgzRolxpJzb+FsJ7uHgHAKhvo+c9k9MDY0TM9qXnd3pCHsn4RmKGu7hk/0+ iWsQ4/ZcyrQ1e9EG4rBoLQR1wSbMUJRKcHA3s0u/xObu1sc59KnuFA9cgavj4w9R X+rN7HM0ZC+7s8y7M0EhclcVrHyZ0rcjcj7sRpOgpJEkYQtEkdUXZmOqIpPqMzv/ Kft0PFq2pmfBdsOiXgiJGpawgEI1pF3XyckL7LjIF0cYlFL/IZ1Gi9hmK2A1CaS+ +WbhXyseUkfrohU4YsGb3CDWtHawXHn44Muz3pUOrtAdP1J5c6byKyOrpRHF5eY= =IAw6 -----END PGP SIGNATURE----- --=-=-=-- From owner-freebsd-ports@freebsd.org Sat Dec 5 11:50:04 2015 Return-Path: Delivered-To: freebsd-ports@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 DF9CDA42528 for ; Sat, 5 Dec 2015 11:50:04 +0000 (UTC) (envelope-from sebastian@wolfgarten.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BCCA51A57 for ; Sat, 5 Dec 2015 11:50:04 +0000 (UTC) (envelope-from sebastian@wolfgarten.com) Received: by mailman.ysv.freebsd.org (Postfix) id BABD5A42527; Sat, 5 Dec 2015 11:50:04 +0000 (UTC) Delivered-To: ports@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 9F759A42526 for ; Sat, 5 Dec 2015 11:50:04 +0000 (UTC) (envelope-from sebastian@wolfgarten.com) Received: from waldfest.wolfgarten.com (waldfest.wolfgarten.com [144.76.61.234]) by mx1.freebsd.org (Postfix) with ESMTP id 253021A54 for ; Sat, 5 Dec 2015 11:50:03 +0000 (UTC) (envelope-from sebastian@wolfgarten.com) Received: from waldfest (localhost [127.0.0.1]) by waldfest.wolfgarten.com (Postfix) with ESMTP id 6882D5F4E for ; Sat, 5 Dec 2015 12:44:02 +0100 (CET) X-Virus-Scanned: amavisd-new at wolfgarten.com Received: from waldfest.wolfgarten.com ([127.0.0.1]) by waldfest (waldfest.wolfgarten.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Rve5AUTVVlMP for ; Sat, 5 Dec 2015 12:43:57 +0100 (CET) Received: from [192.168.0.159] (ip-62-143-0-245.hsi01.unitymediagroup.de [62.143.0.245]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by waldfest.wolfgarten.com (Postfix) with ESMTPSA id 543D85F42 for ; Sat, 5 Dec 2015 12:43:56 +0100 (CET) From: Sebastian Wolfgarten X-Pgp-Agent: GPGMail 2.6b2 Content-Type: multipart/signed; boundary="Apple-Mail=_BC6FF0BB-9460-45A1-AFD9-3A339C1058BE"; protocol="application/pgp-signature"; micalg=pgp-sha512 Subject: Fwd: Memory leak or misconfiguration: Repeated allocation of very large block Date: Sat, 5 Dec 2015 12:43:55 +0100 References: <7FBFC8D1-EE93-4F14-8A7B-60DA1078F4E2@wolfgarten.com> To: ports@freebsd.org Message-Id: Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) X-Mailer: Apple Mail (2.3096.5) X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 11:50:05 -0000 --Apple-Mail=_BC6FF0BB-9460-45A1-AFD9-3A339C1058BE Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Any views on this? > Anfang der weitergeleiteten Nachricht: >=20 > Von: Sebastian Wolfgarten > Datum: 25. Oktober 2015 um 11:55:42 MEZ > An: ports@freebsd.org > Betreff: Wtr: Memory leak or misconfiguration: Repeated allocation of = very large block >=20 > To whom it may concern, >=20 > in view of the discussion below may I suggest we remove the --with-gc = option from the Dovecot default options? >=20 > Thanks. >=20 > Kind regards > Sebastian >=20 >> Anfang der weitergeleiteten Nachricht: >>=20 >> Von: Sebastian Wolfgarten > >> Datum: 25. Oktober 2015 um 11:54:15 MEZ >> An: Timo Sirainen > >> Kopie: dovecot@dovecot.org >> Betreff: Aw: Memory leak or misconfiguration: Repeated allocation of = very large block >>=20 >> Hi Timo, >>=20 >> alright, thanks I will recompile without gc - this is a standard = build option on FreeBSD but I will get the port maintainer to maybe = change this. >>=20 >> Best regards >> Sebastian >>=20 >>> Am 24.10.2015 um 23:19 schrieb Timo Sirainen >: >>>=20 >>> On 24 Oct 2015, at 14:59, Sebastian Wolfgarten = > wrote: >>>>=20 >>>> Dear all, >>>>=20 >>>> I am using Dovecot 2.2.19 and I keep on getting the following = warnings in my mail.log file on FreeBSD 10: >>>>=20 >>>> Oct 24 10:45:28 server1 dovecot: imap: Error: GC Warning: Repeated = allocation of very large block (appr. size 20480): >>>> Oct 24 10:45:28 server1 dovecot: imap: Error: May lead to = memory leak and poor performance. >>>>=20 >>>> I am wondering whether this is a configuration issue (i.e. a = mistake in my current config) or whether I am hitting a bug. What=E2=80=99= s the best way of figuring this one out? I tried increasing the = verbosity of the logs but it did not really provide me with further = information. >>>=20 >>> I guess you have configured Dovecot --with-gc? I guess it's possible = this is a bug, but it could just as well be a false alarm. In general I = don't recommend/support --with-gc option (and I should probably just = remove it altogether). The easiest and the most usable way of finding = memory leaks is to run with valgrind (which must be done without-gc): >>>=20 >>> service imap { >>> executable =3D /usr/bin/valgrind -q --show-reachable=3Dyes = --leak-check=3Dfull /usr/libexec/dovecot/imap >>> } >>>=20 >>> I'm not aware of any memory leaks right now. >>>=20 >>=20 >=20 --Apple-Mail=_BC6FF0BB-9460-45A1-AFD9-3A339C1058BE 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 - https://gpgtools.org iQIcBAEBCgAGBQJWYs38AAoJEKIH+IvLUCrDUF0P/3kgwVE+UryE5NR9HnvB7B8I sz0EG2XHdgckECpBLmSjOAeWp+SUPWRFTvUO79tvOMBxTwK4otgmSUJnCSj+nI1V Vp8VFjH5hD957rniIUVBzQ6bXDad6rEowlPLtZRFbdVhXTfsrW3Ya0JMgf74Wu1j 6yNjs8gIePLn0m6Fu0q6BV5A9IMa6VzNtLHe6sQw/SKu4IScUINVV4CcyAEQWUJf yjfIHK/alcaH5CMKsXCmwpIfO/sp+mac1En5ccHLpl9OtqMjZda616XSMZqwwg2n XcnOF8SZ55wGWa98qu58JjVMikP0RXjFQNbtG/hHmkosx6J1Z0/RKitvxidWoKRY W38z0EvQvAMYlfGohI6i3xRW0oWr/Y3mrMuELH7EsFcvTvzu7Dk5fEx4Fgb5xxhY VASLZvR5AwW5F6Y2c4X9qkPJZ4qT+olBdWR8BF4ZUoJbcdOoD/IcKpZkWRAwQP7m yJh51KvdzEXGUYKJRbPQ8RWgXyKdPZmo3L0rk3ghyKe8JiJ0GtYyIifDv+FWoKEw l+NF2yKl/jeVos+7C0qNM3TxoOXwEyZy4dKMmGlBlSlcDYVtDX/++sIMdo//9tYy NZpYHWJKIqc7rmVnbqwCx6YTIAnfXK7WBag57pMvJtgQojtZ1rk0J4qEriNG2Pr6 R4hnNR39nwfRiAXG1bdY =OiXS -----END PGP SIGNATURE----- --Apple-Mail=_BC6FF0BB-9460-45A1-AFD9-3A339C1058BE-- From owner-freebsd-ports@freebsd.org Sat Dec 5 17:03:00 2015 Return-Path: Delivered-To: freebsd-ports@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 9A8BFA42D5C for ; Sat, 5 Dec 2015 17:03:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 80E8C1E23; Sat, 5 Dec 2015 17:03:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 7ABBB1DB3; Sat, 5 Dec 2015 17:03:00 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 329D11789D; Sat, 5 Dec 2015 17:03:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id GjA_UW3C3Q1H; Sat, 5 Dec 2015 17:02:57 +0000 (UTC) Subject: Re: MAKEFLAGS caused temporary insanity DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 3E7F917891 To: Jan Beich References: <5662376C.8090809@FreeBSD.org> Cc: Euan Thoms , FreeBSD Ports Mailing List From: Bryan Drewery Organization: FreeBSD Message-ID: <566318BF.2030104@FreeBSD.org> Date: Sat, 5 Dec 2015 09:02:55 -0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 17:03:00 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 On 12/5/15 1:09 AM, Jan Beich wrote: > Bryan Drewery writes: > >> On 11/24/2015 8:00 PM, Euan Thoms wrote: >> >>> >>> On Tuesday, November 24, 2015 11:15 SGT, Jan Beich >>> wrote: >>> >>>> "Euan Thoms" writes: >>>> >>>>> do-build: cd ${WRKSRC} && unset MAKEFLAGS && >>>>> ${OPENSIPS_MAKE_ENV} ${GMAKE} ${_MAKE_JOBS} ${ALL_TARGET} >>>> >>>> Have you tried defining NOPRECIOUSMAKEVARS in the port's >>>> Makefile? >>>> >>> >>> That did the trick, thanks. I can now remove the "unset >>> MAKEFLAGS" in do-build. >>> >>> >> >> As far as I can tell NOPRECIOUSMAKEVARS does not impact the >> variable literally named 'MAKEFLAGS'. It should only be impacting >> these: >> >> # make -V _EXPORTED_VARS ARCH OPSYS _OSRELEASE OSREL OSVERSION >> _PKG_CHECKED HAVE_COMPAT_IA32_KERN _SMP_CPUS >> CONFIGURE_MAX_CMD_LEN > > Did you read my reply untrimmed? net/opensips uses ARCH in vendor > Makefile This is what I was looking for. > and the framework clobbers its value. Some ports like > multimedia/ffmpeg rename the variable, others give up and define > NOPRECIOUSMAKEVARS. > >> Which port was this? Which release are you running (real question >> is whether it was fmake or bmake)? > > Affects both. I did propose 2 ways to fix. > The real fix would be to not export these to the port builds. We experimented with using 'env -i' in the build a few years back and had a lot of fallout. - -- Regards, Bryan Drewery -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJWYxi/AAoJEDXXcbtuRpfPghcIAMOzkIFfm4+s7MXi2/B6UrqB r9wvv9zsFZ5ytASFhuecm+47ZWkJq3sKmlw3vXHqRJRR8V9r7vhGBSINfwrOTiUE ZMIk29/tJ1Bkdl9SDt34xU38WZD1gz+35qNZQbrpr6g1+2qGr2iX/UEOBGp6Bzrl O6EAK18a34cbOGSwMCVxZoLhsHD2fjbLnGRROILKztE+h3s4Q2P+phQCzSGnL0vD DqY4dLi5mKJgOj68xNJQeQKZm10+Dt+F8zdSspA6coDdnU4uRe5YxLxNLeJXpHav CsxYLZCrYvvYaMhXHL69Lq70UdWR3L2k6bZkC/QjZlJeFNMZ6WjGSgCXrG9VWdQ= =CJVz -----END PGP SIGNATURE----- From owner-freebsd-ports@freebsd.org Sat Dec 5 17:54:22 2015 Return-Path: Delivered-To: freebsd-ports@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 C9F98A4179C; Sat, 5 Dec 2015 17:54:22 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: from mail-ig0-x233.google.com (mail-ig0-x233.google.com [IPv6:2607:f8b0:4001:c05::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9535F181A; Sat, 5 Dec 2015 17:54:22 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: by igvg19 with SMTP id g19so55745262igv.1; Sat, 05 Dec 2015 09:54:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=6zPq0yh5HTMJGULOhGmpwB/tgHG6KDTekcEupLZCXgw=; b=CwOpE4LHXmFoDjiBIYbN0wCZjcfnVZ1HKhGO6qRQs4F44obx3VMmTCkWyOYg4MmzxP /ahAoAKNctlVn34bUy5nLFWOgd2f19dJx6uMYQqHt37TV0EAUp1hxKiVedGRxCABpXp2 no17HghWaddKAaSKoHfx+Q4E2f0BWAo6dUR408JaP6QtmyUQpA9VJinrojGq4DevVVeM pkOc8uDvLVcPH8exvLKJMeP3bZYyFJlI141SMDI+bCiYTUqnIFz0Bk1HExClDJMNe+Gm NnoATMd0GLgpTS1KKDT7CHITpnMYyPkRQuhov/8aXLgBTLC03phXryAMeOIqHzCaFuiW KO3A== MIME-Version: 1.0 X-Received: by 10.50.36.74 with SMTP id o10mr8845748igj.73.1449338061799; Sat, 05 Dec 2015 09:54:21 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.50.152.69 with HTTP; Sat, 5 Dec 2015 09:54:21 -0800 (PST) In-Reply-To: References: Date: Sat, 5 Dec 2015 09:54:21 -0800 X-Google-Sender-Auth: De0O1siwmUuTIFRpV7Bdpfdve9w Message-ID: Subject: Re: Python and SWIG support in ports? From: Craig Rodrigues To: ports , freebsd-python@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 17:54:23 -0000 On Fri, Dec 4, 2015 at 2:40 PM, Craig Rodrigues wrote: > Hi, > > I am working with the upstream maintainer of M2Crypto ( > https://gitlab.com/m2crypto/m2crypto ). > > In the distutils that comes with Python, the swig binary is harcoded > to "swig" if on a POSIX system: > > > https://hg.python.org/cpython/file/v2.6.2/Lib/distutils/command/build_ext.py#l635 > > OK, so after reading this e-mail: https://mail.python.org/pipermail/distutils-sig/2004-October/004204.html I see that it is possible to override the value of "swig" by doing: python setup.py build_ext --swig=swig2.0 I tried that for M2Crypto and it works. Is that what the existing Python ports with SWIG are doing? -- Craig From owner-freebsd-ports@freebsd.org Sat Dec 5 21:04:38 2015 Return-Path: Delivered-To: freebsd-ports@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 E1B65A41D44 for ; Sat, 5 Dec 2015 21:04:38 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id CB7751458 for ; Sat, 5 Dec 2015 21:04:38 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id CBA7DA41D43; Sat, 5 Dec 2015 21:04:38 +0000 (UTC) Delivered-To: ports@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 CB43DA41D42 for ; Sat, 5 Dec 2015 21:04:38 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) (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 A2A421456 for ; Sat, 5 Dec 2015 21:04:38 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org ([127.0.1.2]) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id tB5L4cDd010050 for ; Sat, 5 Dec 2015 21:04:38 GMT (envelope-from indexbuild@portsindexbuild.ysv.freebsd.org) Received: (from indexbuild@localhost) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2/Submit) id tB5L4cvH010049 for ports@FreeBSD.org; Sat, 5 Dec 2015 21:04:38 GMT (envelope-from indexbuild) Date: Sat, 5 Dec 2015 21:04:38 GMT From: Ports Index build Message-Id: <201512052104.tB5L4cvH010049@portsindexbuild.ysv.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 9.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2015 21:04:39 -0000 INDEX build failed with errors: Generating INDEX-9 - please wait..--- describe.accessibility --- --- describe.arabic --- --- describe.archivers --- --- describe.astro --- --- describe.audio --- --- describe.benchmarks --- --- describe.biology --- --- describe.cad --- --- describe.chinese --- --- describe.comms --- --- describe.converters --- --- describe.databases --- --- describe.deskutils --- --- describe.devel --- --- describe.dns --- --- describe.editors --- --- describe.emulators --- --- describe.finance --- --- describe.french --- --- describe.ftp --- [...] --- describe.print --- --- describe.russian --- --- describe.science --- --- describe.security --- --- describe.shells --- --- describe.sysutils --- --- describe.textproc --- --- describe.ukrainian --- --- describe.vietnamese --- --- describe.www --- --- describe.x11 --- --- describe.x11-clocks --- --- describe.x11-drivers --- --- describe.x11-fm --- --- describe.x11-fonts --- --- describe.x11-servers --- --- describe.x11-themes --- --- describe.x11-toolkits --- --- describe.x11-wm --- Done. make_index: /home/indexbuild/tindex/ports/devel/p5-Log-Dispatch-ArrayWithLimits: no entry for /home/indexbuild/tindex/ports/devel/p5-Perl-osnames Committers on the hook: gerald nemysis pi riggs Most recent SVN update was: Updating '.': U net/Makefile A net/p5-IO-Socket-Timeout A net/p5-IO-Socket-Timeout/Makefile A net/p5-IO-Socket-Timeout/distinfo A net/p5-IO-Socket-Timeout/pkg-descr A net/p5-IO-Socket-Timeout/pkg-plist U net/nanomsg/Makefile U net/nanomsg/distinfo U net/nanomsg/pkg-plist U devel/Makefile A devel/p5-PerlIO-via-Timeout A devel/p5-PerlIO-via-Timeout/Makefile A devel/p5-PerlIO-via-Timeout/distinfo A devel/p5-PerlIO-via-Timeout/pkg-descr A devel/p5-PerlIO-via-Timeout/pkg-plist U games/lugaru/Makefile U games/lugaru/pkg-descr U lang/gcc5/Makefile U lang/gcc5/distinfo U lang/gcc5/files/patch-arm-unwind-cxx-support U lang/gcc5/files/patch-unwind-ia64.h U databases/cego/Makefile U databases/cego/distinfo Updated to revision 403077.