From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 01:18:18 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA0D910657C9 for ; Sun, 28 Nov 2010 01:18:18 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 6889F8FC16 for ; Sun, 28 Nov 2010 01:18:18 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1PMVuC-0006Aq-Uj for freebsd-ports@freebsd.org; Sun, 28 Nov 2010 01:18:17 +0000 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncsc.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.67) (envelope-from ) id 1PMVuC-0001Zs-Oc for freebsd-ports@freebsd.org; Sun, 28 Nov 2010 01:18:16 +0000 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.4) with ESMTP id oAS1IGNX039627 for ; Sun, 28 Nov 2010 01:18:16 GMT (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.4/8.14.4/Submit) id oAS1IGQl039626 for freebsd-ports@freebsd.org; Sun, 28 Nov 2010 01:18:16 GMT (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster241.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Sun, 28 Nov 2010 01:18:16 +0000 From: Anton Shterenlikht To: freebsd-ports@freebsd.org Message-ID: <20101128011816.GA39521@mech-cluster241.men.bris.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Subject: user options for regression-test? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 01:18:18 -0000 I'm trying to add regression tests to my port. The tests can be run with various levels of verbosity of output. I'd like to let the user to choose the verbosity for tests. At present I've this: regression-test check test: build @${ECHO_CMD} "Testing static SLATEC library." @${ECHO_CMD} "******* Default print verbosity level is 0.\ Change in Makefile if required." ${ECHO_CMD} 0 > ${WRKDIR}/.printlevel ${MAKE} -C ${WRKDIR} The verbosity is a number 0,1,2 or 3, which I write to a file. The tests then read this file. Is this acceptable? Is there a better way? Can OPTIONS be used under regression-test target? Or maybe it's best to add a variable, something like .if ! defined(PRINT_LEVEL) @${ECHO_CMD} "******* Default print verbosity level is 0" PRINT_LEVEL=0 .endif and then use PRINT_LEVEL in test routines? many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 331 5944 Fax: +44 (0)117 929 4423 From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 04:02:25 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ED6E1065672; Sun, 28 Nov 2010 04:02:25 +0000 (UTC) (envelope-from gordon@tetlows.org) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B493A8FC08; Sun, 28 Nov 2010 04:02:24 +0000 (UTC) Received: by bwz2 with SMTP id 2so3109815bwz.13 for ; Sat, 27 Nov 2010 20:02:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.204.46.33 with SMTP id h33mr3440025bkf.95.1290915358462; Sat, 27 Nov 2010 19:35:58 -0800 (PST) Received: by 10.204.115.82 with HTTP; Sat, 27 Nov 2010 19:35:58 -0800 (PST) In-Reply-To: <4CEEB5D0.6010807@FreeBSD.org> References: <4CEE032E.1090901@DataIX.net> <4CEEB5D0.6010807@FreeBSD.org> Date: Sat, 27 Nov 2010 19:35:58 -0800 Message-ID: From: Gordon Tetlow To: Doug Barton Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Ports Subject: Re: devel/p4d x2 Makefile error. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 04:02:25 -0000 On Thu, Nov 25, 2010 at 11:15 AM, Doug Barton wrote: > On 11/24/2010 22:33, jhell wrote: >> >> Attached is a patch that fixes up the Makefile if you happen to be using >> a different WRKDIRPREFIX than the default of ${.CURDIR}. >> >> Currently the Makefile assumes that pkg-message is in the object >> directory which obviously it would not be unless copied. So a cat(1) of >> that results in installation being aborted. > > The canonical fix for this problem is: > > =A0 =A0 =A0 =A0@${CAT} ${PKGMESSAGE} Committed. Thanks. Gordon From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 08:23:03 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C882C106566C for ; Sun, 28 Nov 2010 08:23:03 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7CD5E8FC16 for ; Sun, 28 Nov 2010 08:23:03 +0000 (UTC) Received: by gwj21 with SMTP id 21so1626036gwj.13 for ; Sun, 28 Nov 2010 00:23:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:date:message-id:to :subject:from:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=h3B09S+hD/A70nJMUjh7JBC/V2T8EyWXiLd3VvT76gk=; b=DyibfDpaJr/XKHEXJ7Ej5wmJK3qW3WHNvg3H0ldVLpG9oYonRkFctx+BwQ8GXYmPh5 58dRhJ7uRbYe82Bqtasjjis97K7/OHLhbA+ryMdyq3m2zEs5u4brWPZ5AoAu6fo+lH0T e/MTp32xbSQrHWZeXnNB4Dq0yyEkPdyolJRME= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:message-id:to:subject:from:in-reply-to:references :x-mailer:mime-version:content-type:content-transfer-encoding; b=fbrsXrZSP029IYQ98n0fp3QLOjnpMV41EDP1rYPpSL4KBXQZ2SywvImPXviilkHG61 uYLojW6zYRKjrdvlcZIjISLOLTLVWC0knM36N/25B6oQK6EjG1vI2p1RrK3RboQX42Bf SkJSmMFlNBK2c8gbk7vZWrZjTEhCaEWGaorK0= Received: by 10.90.101.12 with SMTP id y12mr6984974agb.185.1290930755352; Sat, 27 Nov 2010 23:52:35 -0800 (PST) Received: from localhost (rikad42.riken.jp [134.160.214.42]) by mx.google.com with ESMTPS id g2sm2421208yhc.38.2010.11.27.23.52.33 (version=SSLv3 cipher=RC4-MD5); Sat, 27 Nov 2010 23:52:34 -0800 (PST) Sender: Maho NAKATA Date: Sun, 28 Nov 2010 16:52:30 +0900 (JST) Message-Id: <20101128.165230.1898388363586207734.chat95@mac.com> To: ports@freebsd.org From: Maho NAKATA In-Reply-To: <201011280742.oAS7gho6087102@repoman.freebsd.org> References: <201011280742.oAS7gho6087102@repoman.freebsd.org> X-Mailer: Mew version 6.3 on Emacs 23.2 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Subject: Now GotoBLAS is opensourced: Re: cvs commit: ports/math/gotoblas Makefile distinfo X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 08:23:03 -0000 FYI: From: Maho Nakata Subject: cvs commit: ports/math/gotoblas Makefile distinfo Date: Sun, 28 Nov 2010 07:42:43 +0000 (UTC) > maho 2010-11-28 07:42:43 UTC > > FreeBSD ports repository > > Modified files: > math/gotoblas Makefile distinfo > Log: > Now GotoBLAS is distributed under BSD license. > > Revision Changes Path > 1.22 +4 -11 ports/math/gotoblas/Makefile > 1.13 +2 -6 ports/math/gotoblas/distinfo > From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 19:17:47 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 960251065670 for ; Sun, 28 Nov 2010 19:17:47 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 558748FC0A for ; Sun, 28 Nov 2010 19:17:46 +0000 (UTC) Received: from elsa.codelab.cz (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 96ED219E036 for ; Sun, 28 Nov 2010 20:01:51 +0100 (CET) Received: from [192.168.1.2] (ip-86-49-61-235.net.upcbroadband.cz [86.49.61.235]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 7253719E02F for ; Sun, 28 Nov 2010 20:01:49 +0100 (CET) Message-ID: <4CF2A724.9050406@quip.cz> Date: Sun, 28 Nov 2010 20:01:56 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.15) Gecko/20101027 SeaMonkey/2.0.10 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: dbf2mysql and hardcoded mysql-client version dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 19:17:47 -0000 Can somebody explain me, why databases/dbf2mysql has hardcoded dependency to mysql323-client? The Makefile contains: LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client But it is unbuildable root@roxy dbf2mysql/# make ===> Extracting for dbf2mysql-1.14_2 => MD5 Checksum OK for dbf2mysql-1.14.tar.gz. => SHA256 Checksum OK for dbf2mysql-1.14.tar.gz. ===> Patching for dbf2mysql-1.14_2 ===> Applying FreeBSD patches for dbf2mysql-1.14_2 ===> dbf2mysql-1.14_2 depends on shared library: mysqlclient.10 - not found ===> Verifying install for mysqlclient.10 in /usr/ports/databases/mysql323-client ===> mysql-client-3.23.59.n.20050301_2 obsolete and does not build with gcc4.2; use mysql 5 or later. *** Error code 1 Stop in /usr/ports/databases/mysql323-client. *** Error code 1 Stop in /usr/ports/databases/dbf2mysql. root@roxy dbf2mysql/# uname -srmi FreeBSD 7.3-RELEASE-p2 i386 GENERIC Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 20:08:01 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B7771065670 for ; Sun, 28 Nov 2010 20:08:01 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3fd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id C717A8FC12 for ; Sun, 28 Nov 2010 20:08:00 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.187.76.163]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.4/8.14.4) with ESMTP id oASK7ulS003750 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Sun, 28 Nov 2010 20:07:57 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.3 smtp.infracaninophile.co.uk oASK7ulS003750 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1290974877; bh=RggpqanFOr/YDaGgK/xM2sgHxL8z5T2XYOLgd3BnP9Y=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4CF2B696.3010408@infracaninophile.co.uk>|Date:=20S un,=2028=20Nov=202010=2020:07:50=20+0000|From:=20Matthew=20Seaman= 20|User-Agent:=20Mozilla/5.0=20(M acintosh=3B=20U=3B=20Intel=20Mac=20OS=20X=2010.6=3B=20en-US=3B=20r v:1.9.2.12)=20Gecko/20101027=20Thunderbird/3.1.6|MIME-Version:=201 .0|To:=20freebsd-ports@freebsd.org|Subject:=20Re:=20dbf2mysql=20an d=20hardcoded=20mysql-client=20version=20dependency|References:=20 <4CF2A724.9050406@quip.cz>|In-Reply-To:=20<4CF2A724.9050406@quip.c z>|X-Enigmail-Version:=201.1.1|OpenPGP:=20id=3D60AE908C|Content-Ty pe:=20multipart/signed=3B=20micalg=3Dpgp-sha1=3B=0D=0A=20protocol= 3D"application/pgp-signature"=3B=0D=0A=20boundary=3D"------------e nig6CBE1B971A760AA4DBCB183D"; b=UJmnZ/ocdSfXShhJAQaD7B2+RQECMYMxzJriHrvXKbmFCtlBsGWW1YvnuuyIf2BCT xzuTFLeUSjenlqX2xqcqWaoalCDczDEKOzHVLHwQSRzjP67QJBeXs+uz8faM2oz0Ap xJjs3fRNP11njsGb15Uxd+cE7MLUCrpeDDkg68vc= Message-ID: <4CF2B696.3010408@infracaninophile.co.uk> Date: Sun, 28 Nov 2010 20:07:50 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <4CF2A724.9050406@quip.cz> In-Reply-To: <4CF2A724.9050406@quip.cz> X-Enigmail-Version: 1.1.1 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig6CBE1B971A760AA4DBCB183D" X-Virus-Scanned: clamav-milter 0.96.4 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,SPF_FAIL autolearn=no version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on lucid-nonsense.infracaninophile.co.uk Subject: Re: dbf2mysql and hardcoded mysql-client version dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 20:08:01 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig6CBE1B971A760AA4DBCB183D Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable On 28/11/2010 19:01, Miroslav Lachman wrote: > Can somebody explain me, why databases/dbf2mysql has hardcoded > dependency to mysql323-client? >=20 > The Makefile contains: >=20 > LIB_DEPENDS=3D mysqlclient.10:${PORTSDIR}/databases/mysql323-client >=20 > But it is unbuildable The sources to dbf2mysql were last modified around 2000, when mysql-3.2x was current. Since then, it seems to have been pretty much abandoned. A good candidate for deletion from the ports on grounds of obsolescence. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig6CBE1B971A760AA4DBCB183D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkzytpwACgkQ8Mjk52CukIwbjACfTryGaSUytyslAtwyQDTEnmWH QTYAnizPBh72Mr4FzBOmVFV5o0iox8wp =vk8T -----END PGP SIGNATURE----- --------------enig6CBE1B971A760AA4DBCB183D-- From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 20:43:19 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 551F5106564A for ; Sun, 28 Nov 2010 20:43:19 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 12B138FC0C for ; Sun, 28 Nov 2010 20:43:18 +0000 (UTC) Received: from elsa.codelab.cz (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 5C41D19E031; Sun, 28 Nov 2010 21:43:17 +0100 (CET) Received: from [192.168.1.2] (ip-86-49-61-235.net.upcbroadband.cz [86.49.61.235]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 6399119E030; Sun, 28 Nov 2010 21:43:15 +0100 (CET) Message-ID: <4CF2BEE3.6080404@quip.cz> Date: Sun, 28 Nov 2010 21:43:15 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.15) Gecko/20101027 SeaMonkey/2.0.10 MIME-Version: 1.0 To: Matthew Seaman References: <4CF2A724.9050406@quip.cz> <4CF2B696.3010408@infracaninophile.co.uk> In-Reply-To: <4CF2B696.3010408@infracaninophile.co.uk> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: dbf2mysql and hardcoded mysql-client version dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 20:43:19 -0000 Matthew Seaman wrote: > On 28/11/2010 19:01, Miroslav Lachman wrote: >> Can somebody explain me, why databases/dbf2mysql has hardcoded >> dependency to mysql323-client? >> >> The Makefile contains: >> >> LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client >> >> But it is unbuildable > > The sources to dbf2mysql were last modified around 2000, when mysql-3.2x > was current. Since then, it seems to have been pretty much abandoned. > > A good candidate for deletion from the ports on grounds of obsolescence. I know the original source is too old, but patch in the PR 64305 has comment: "MySQL >3.23.49 and >4.0.2, new option -L enables it" And as I search the web, other OS distributions have versions with 5.0.x dependency in repositories. I will try to fix it by try & error method, as I am not C programmer. Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 21:37:33 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 861C4106566C for ; Sun, 28 Nov 2010 21:37:33 +0000 (UTC) (envelope-from goran.tal@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1D8CC8FC0A for ; Sun, 28 Nov 2010 21:37:32 +0000 (UTC) Received: by ewy24 with SMTP id 24so1709445ewy.13 for ; Sun, 28 Nov 2010 13:37:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=GndDPkbSzdiMnV6q3+L1Hq13t+Vs75QtxyU8r6eOHNY=; b=HVDU5Ljk/B7TpYGRzuMw1iUuvKUYaEL0vSK+daiHtL9mmGndR/C4JbbL5Aob2HthOO icdB1PZsc6Myf4KNwE35YBdyvB4AW/KnTCnJn7t8Hfx2uiQclv67iAfF4PP5q+OnS8KB J6hR6vEav6hAFEFqQ0pK8Hmd2uI3Yl67naeTU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=CGd9DQlO4gcpOx/nuOq+QtZrtbkcWl2RLPrHJcbCxBGf2Drje2UaLFawX7fKYKVyfe Pvpvtbc9KLcaFsfjm+ESssaPrPuxHpN6plyuaRyhCqb9cDd8BrykJNhFeHP6z34rqqsN kEWbnP1DfD0oVGpJ7n0tn7a4nbdQo0hAVwi4s= MIME-Version: 1.0 Received: by 10.14.53.66 with SMTP id f42mr3490650eec.46.1290978768568; Sun, 28 Nov 2010 13:12:48 -0800 (PST) Received: by 10.14.47.205 with HTTP; Sun, 28 Nov 2010 13:12:48 -0800 (PST) Date: Sun, 28 Nov 2010 16:12:48 -0500 Message-ID: From: Goran Tal To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Subject: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 21:37:33 -0000 Now that the base system supports xz compression, it should be used as the default compression for packages. Files compressed with xz are smaller and decompress faster than those compressed with bzip2. This can make an installation much quicker, especially when the complete system is installed or upgraded. Any reasons against it? From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 21:50:13 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA40A106566C for ; Sun, 28 Nov 2010 21:50:13 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.server1.bsdforen.de (bsdforen.de [82.193.243.81]) by mx1.freebsd.org (Postfix) with ESMTP id 7CD6D8FC13 for ; Sun, 28 Nov 2010 21:50:12 +0000 (UTC) Received: from mobileKamikaze.norad (HSI-KBW-078-042-098-160.hsi3.kabel-badenwuerttemberg.de [78.42.98.160]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.server1.bsdforen.de (Postfix) with ESMTPSA id 07BD87E92D; Sun, 28 Nov 2010 22:50:09 +0100 (CET) Message-ID: <4CF2CE90.8050700@bsdforen.de> Date: Sun, 28 Nov 2010 22:50:08 +0100 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.15) Gecko/20101028 Thunderbird/3.0.10 MIME-Version: 1.0 To: Goran Tal References: In-Reply-To: X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 21:50:13 -0000 Hello, On 28/11/2010 22:12, Goran Tal wrote: > Now that the base system supports xz compression, it should be used as > the default compression for packages. > > Files compressed with xz are smaller and decompress faster than those > compressed with bzip2. This can make an installation much quicker, > especially when the complete system is installed or upgraded. > > Any reasons against it? I think it's already in CURRENT. On my notebook xz compression and decompression are much slower than any of the other algorithms supported by tar. It has the best compression ratio, though. From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 22:09:06 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C43AE1065679 for ; Sun, 28 Nov 2010 22:09:06 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 303B08FC28 for ; Sun, 28 Nov 2010 22:09:05 +0000 (UTC) Received: from it.buh.tecnik93.com (unknown [188.27.99.61]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by worf.ds9.tecnik93.com (Postfix) with ESMTPSA id 984A822C543B; Sun, 28 Nov 2010 23:51:12 +0200 (EET) Date: Sun, 28 Nov 2010 23:51:00 +0200 From: Ion-Mihai Tetcu To: Goran Tal Message-ID: <20101128235100.2468c27c@it.buh.tecnik93.com> In-Reply-To: References: X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/_R6GZABkA+gCh=zl2ohautS"; protocol="application/pgp-signature" Cc: freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 22:09:06 -0000 --Sig_/_R6GZABkA+gCh=zl2ohautS Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sun, 28 Nov 2010 16:12:48 -0500 Goran Tal wrote: > Now that the base system supports xz compression, it should be used as > the default compression for packages. >=20 > Files compressed with xz are smaller and decompress faster than those > compressed with bzip2. This can make an installation much quicker, > especially when the complete system is installed or upgraded. >=20 > Any reasons against it? Sigh. We enabled that in HEAD, and after some testing and adapting {base_OS, ports, tools, etc.} to support that, it will probably become the default. One thing against it is the major increase in package time (up to 6x, but by no means this is a show-stopper). Resulting packages would be, in medium about 30% smaller (in medium, for some kinds of data the size is the same as for gzip). So no, there's no reason against it, just some time is need to adapt everything. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B --Sig_/_R6GZABkA+gCh=zl2ohautS Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkzyzs8ACgkQJ7GIuiH/oeW1nQCghLrNS+9hAZCnzeSNzuWWuVRD GzMAnjg9JwoAC0HpHi8qnxmZa5Siusvv =gZ3V -----END PGP SIGNATURE----- --Sig_/_R6GZABkA+gCh=zl2ohautS-- From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 22:13:25 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E44621065693 for ; Sun, 28 Nov 2010 22:13:25 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id BDBA38FC0C for ; Sun, 28 Nov 2010 22:13:25 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id D3F025602E; Sun, 28 Nov 2010 22:13:24 +0000 (UTC) Date: Sun, 28 Nov 2010 22:13:24 +0000 From: Mark Linimon To: Jason Helfman Message-ID: <20101128221324.GA2661@lonesome.com> References: <201011211909.23708.beech@akherb.com> <20101122052649.GA61979@comcast.net> <4CEA0738.3060701@unfs.us> <20101122072257.GF48679@comcast.net> <20101122131905.318b590c@gumby.homeunix.com> <20101122192836.GC12467@core.byshenk.net> <20101122220802.GG48679@comcast.net> <20101123200007.GA46521@eggman.experts-exchange.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101123200007.GA46521@eggman.experts-exchange.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: doc@freebsd.org, freebsd-ports@freebsd.org Subject: Re: ambiguities in the Porter's Handbook (was: PR's not being picked up) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 22:13:26 -0000 On Tue, Nov 23, 2010 at 12:00:08PM -0800, Jason Helfman wrote: > Here is a patch to take care of removing of "updating". I've committed a version of your two patches, plus some of my own changes, to try to remove the ambiguities in the text about "new ports" vs. "updating an existing port". Several people have tripped over this in the past. mcl From owner-freebsd-ports@FreeBSD.ORG Sun Nov 28 23:14:24 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 131FC106566C for ; Sun, 28 Nov 2010 23:14:24 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 917938FC0C for ; Sun, 28 Nov 2010 23:14:23 +0000 (UTC) Received: from elsa.codelab.cz (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id ECC5C19E02F; Mon, 29 Nov 2010 00:14:21 +0100 (CET) Received: from [192.168.1.2] (ip-86-49-61-235.net.upcbroadband.cz [86.49.61.235]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 3AE3419E031; Mon, 29 Nov 2010 00:14:19 +0100 (CET) Message-ID: <4CF2E24B.7030903@quip.cz> Date: Mon, 29 Nov 2010 00:14:19 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.15) Gecko/20101027 SeaMonkey/2.0.10 MIME-Version: 1.0 To: Matthew Seaman References: <4CF2A724.9050406@quip.cz> <4CF2B696.3010408@infracaninophile.co.uk> In-Reply-To: <4CF2B696.3010408@infracaninophile.co.uk> Content-Type: multipart/mixed; boundary="------------040005090600090805060707" Cc: freebsd-ports@freebsd.org Subject: Re: dbf2mysql and hardcoded mysql-client version dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Nov 2010 23:14:24 -0000 This is a multi-part message in MIME format. --------------040005090600090805060707 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Matthew Seaman wrote: > On 28/11/2010 19:01, Miroslav Lachman wrote: >> Can somebody explain me, why databases/dbf2mysql has hardcoded >> dependency to mysql323-client? >> >> The Makefile contains: >> >> LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client >> >> But it is unbuildable > > The sources to dbf2mysql were last modified around 2000, when mysql-3.2x > was current. Since then, it seems to have been pretty much abandoned. > > A good candidate for deletion from the ports on grounds of obsolescence. I attached two patches. Makefile.patch is for port's Makefile and patch-mysql2dbf should be placed into files port directory. Then it works with MySQL 5.0.x (tested with mysql-client-5.0.90) I tested just a dbf2mysql command, patch for mysql2dbf is needed to compile, but I did not tested it as I do not have any apps to test produced dbf file. Should I send a PR for this fix? Miroslav Lachman --------------040005090600090805060707 Content-Type: text/plain; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Makefile.patch" --- Makefile.orig 2010-11-28 18:34:26.000000000 +0100 +++ Makefile 2010-11-28 19:11:05.000000000 +0100 @@ -18,7 +18,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Programs to convert .dbf files to MySQL tables and vice versa -LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +USE_MYSQL= yes PORTDOCS= README --------------040005090600090805060707 Content-Type: text/plain; name="patch-mysql2dbf.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-mysql2dbf.patch" --- mysql2dbf.c.orig 2010-11-28 19:46:34.000000000 +0100 +++ mysql2dbf.c 2010-11-28 21:23:22.000000000 +0100 @@ -1,6 +1,11 @@ /* utility to read out an mySQL-table, and store it into a DBF-file M. Boekhold (boekhold@cindy.et.tudelft.nl) April 1996 + + M. Lachman Nov 2010 + Replaced mysql_connect with mysql_real_connect, SQLsock isn't used anymore + Can be compiled with MySQL client 5.0.x + */ #include @@ -47,7 +52,7 @@ int main(int argc, char **argv) { int i; - MYSQL *SQLsock,mysql; + MYSQL mysql; extern int optind; extern char *optarg; char *query = NULL; @@ -148,7 +153,9 @@ printf("Making connection with mySQL-server\n"); } - if (!(SQLsock = mysql_connect(&mysql,host,user,pass))) { + mysql_init(&mysql); + + if (!mysql_real_connect(&mysql,host,user,pass, dbase, 0, NULL,0)) { fprintf(stderr, "Couldn't get a connection with the "); fprintf(stderr, "designated host!\n"); fprintf(stderr, "Detailed report: %s\n", mysql_error(&mysql)); @@ -157,37 +164,24 @@ exit(1); } - if (verbose > 1) { - printf("Selecting database\n"); - } - - if ((mysql_select_db(SQLsock, dbase)) == -1) { - fprintf(stderr, "Couldn't select database %s.\n", dbase); - fprintf(stderr, "Detailed report: %s\n", mysql_error(SQLsock)); - close(dbh->db_fd); - free(dbh); - mysql_close(SQLsock); - exit(1); - } - if (verbose > 1) { printf("Sending query\n"); } - if (mysql_query(SQLsock, query) == -1) { + if (mysql_query(&mysql, query) == -1) { fprintf(stderr, "Error sending query.\nDetailed report: %s\n", - mysql_error(SQLsock)); + mysql_error(&mysql)); if (verbose > 1) { fprintf(stderr, "%s\n", query); } - mysql_close(SQLsock); + mysql_close(&mysql); close(dbh->db_fd); free(dbh); exit(1); } - qres = mysql_store_result(SQLsock); + qres = mysql_store_result(&mysql); numfields = mysql_num_fields(qres); numrows = mysql_num_rows(qres); @@ -303,7 +297,7 @@ } mysql_free_result(qres); - mysql_close(SQLsock); + mysql_close(&mysql); close(dbh->db_fd); free(dbh); exit(0); --------------040005090600090805060707-- From owner-freebsd-ports@FreeBSD.ORG Mon Nov 29 01:23:34 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BEEE106566B for ; Mon, 29 Nov 2010 01:23:34 +0000 (UTC) (envelope-from fbsd@opal.com) Received: from mho-01-ewr.mailhop.org (mho-01-ewr.mailhop.org [204.13.248.71]) by mx1.freebsd.org (Postfix) with ESMTP id EC9EA8FC15 for ; Mon, 29 Nov 2010 01:23:33 +0000 (UTC) Received: from pool-151-203-24-219.bos.east.verizon.net ([151.203.24.219] helo=homobox.opal.com) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1PMs0i-0009zB-Tl for freebsd-ports@freebsd.org; Mon, 29 Nov 2010 00:54:29 +0000 Received: from opal.com (localhost [IPv6:::1]) (authenticated bits=0) by homobox.opal.com (8.14.3/8.14.3) with ESMTP id oAT0sP6K037022 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 28 Nov 2010 19:54:26 -0500 (EST) (envelope-from fbsd@opal.com) Received: from shibato.opal.com ([173.52.165.239] helo=shibato.opal.com) with IPv4:587 by opal.com; 28 Nov 2010 19:54:25 -0500 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 151.203.24.219 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+IUP3zy4TZz88fwmOrovng Date: Sun, 28 Nov 2010 19:54:22 -0500 From: "J.R. Oldroyd" To: freebsd-ports@freebsd.org Message-ID: <20101128195422.522143f3@shibato.opal.com> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: xfce4-power-manager-0.8.5 and hal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 01:23:34 -0000 I am nominally maintaining the xfce4-power-manager port; sadly this is a port that gets only rare attention. Now is one of those rare occasions. If someone else is willing to take this port over, that'd be ideal, since I am not an expert on hal, d-bus or power-management/acpi stuff in general. Please send me an email if you're interested in taking this on. In the meantime... On bringing the port up-to-date, it became clear that much of the application's functionality is not working on FreeBSD. Certain things can be made to work with changes to PolicyKit.conf and sysctl settings and these will now be documented in the port's pkg-message. Other things are still not working. 1. The xfce4-power-manager program uses hal to obtain a list of buttons on which to request d-bus messages. It gets the list using a FindDeviceByCapability call. On my laptop the buttons are: udi = '/org/freedesktop/Hal/devices/acpi_button_0' button.type = 'power' (string) freebsd.driver = 'acpi_button' (string) freebsd.unit = 0 (0x0) (int) info.capabilities = {'button'} (string list) info.category = 'button' (string) info.parent = '/org/freedesktop/Hal/devices/computer' (string) info.product = 'Power Button' (string) info.subsystem = 'platform' (string) info.udi = '/org/freedesktop/Hal/devices/acpi_button_0' (string) platform.id = 'acpi_button.0' (string) pnp.description = 'ACPI power button device' (string) pnp.id = 'PNP0C0C' (string) udi = '/org/freedesktop/Hal/devices/acpi_lid_0' button.has_state = true (bool) button.state.value = true (bool) button.type = 'lid' (string) freebsd.driver = 'acpi_lid' (string) freebsd.unit = 0 (0x0) (int) info.ignore = true (bool) info.parent = '/org/freedesktop/Hal/devices/computer' (string) info.product = 'Ignored Device' (string) info.subsystem = 'platform' (string) info.udi = '/org/freedesktop/Hal/devices/ignored-device' (string) platform.id = 'acpi_lid.0' (string) pnp.description = 'ACPI lid device' (string) pnp.id = 'PNP0C0D' (string) Now, acpi_lid_0 is being omitted from the list given to xfce4-power-manager because it does not have an info.capability value of "button" - it does not have info.capability at all. (Note also, that lshal lists it as an ignored device.) Why is this, and what must be changed to add the capability to the lid device? 2. If I force inclusion of the lid device in xfce4-power-manager's device list, xfce4-power-manager then does perform the configured action on lid closure. However, if the action is to suspend the system, on resume, the display "brightness" is very low. I say "brightness" in quotes, beecause the cursor's brightness is normal, and the backlight is clearly on, it is merely the contents of the display that are dimmed. Switching to the console gives dimmed console text, too. The brightness seems to be at a random value typically from as low as 5% to about 50% of normal. Repeated suspend/resume cycles done using xfce4-power-manager tend to further lower the brightness more until it gets to be unusable. One can still "drive blind" though, and things do work. sysctl hw.acpi.video.lcd0.brightness remains at 100 throughout. Killing the X server and allowing it to restart brings everything back to normal brightness. This does NOT happen on a normal suspend/resume initiated from the Xfce shutdown pane - this works perfectly and repeatedly here meaning my reset_video settings etc are OK for normal suspend/resume cycles. It also does NOT happen for a suspend/resume for a lid closure controlled by setting sysctl hw.acpi.lid_switch_state=S3... this also works perfectly. Only when the suspend is initiated by xfce4-power-manager is the display dimmed on resume. This suggests there is a problem with to xfce4-power-manager's brightness or backlight support which is messing up. Any thoughts on what might be going on here? I'll probably add some other questions about hal/dbus in due course, once we've resolved these. As I said at the top, ideally it would be great if someone else could take this one over and get it working, but in the absence of this, and with some help, I'll get it going as time permits. Thanks, -jr From owner-freebsd-ports@FreeBSD.ORG Mon Nov 29 11:06:06 2010 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7640106566B for ; Mon, 29 Nov 2010 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C3A048FC1F for ; Mon, 29 Nov 2010 11:06:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id oATB66F2052329 for ; Mon, 29 Nov 2010 11:06:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oATB66FV052327 for freebsd-ports@FreeBSD.org; Mon, 29 Nov 2010 11:06:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 29 Nov 2010 11:06:06 GMT Message-Id: <201011291106.oATB66FV052327@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Cc: Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 11:06:06 -0000 (Note: an HTML version of this report is available at http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports .) The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/152646 [maintainer-update] devel/eclipse-eclemma 1.5.0 to 1.5 o ports/152642 Gnome-packagekit build error o ports/152637 [maintainer-update] games/ioquake3 and slaves f ports/152627 [PATCH] math/py-numpy: Checksum mismatch o ports/152618 net/vnc: allow vncviewer build on CURRENT f ports/152578 [PATCH] dns/ldns: update to 1.6.7 f ports/152576 PATCH net-im/prosody: change maintainer and update to f ports/152537 [patch] database/postgresql90-server no longer needs p o ports/152484 ports Build error of GTK-2.22.1_1 o ports/152483 Segmentation fault in sshd with pam_ldap and openssl f f ports/152481 [PATCH] editors/nano: update to 2.2.6 o ports/152480 [Patch] fix build of devel/libffi with clang on amd64 f ports/152470 [PATCH] mail/bsfilter: update to 1.0.17 o ports/152467 [new port] net/openafs port o ports/152453 textproc/urlview port should install gecko.sh optional o ports/152423 net/freeswitch-core update f ports/152413 [PATCH] net-im/py-xmpppy fix patch fix o ports/152403 New port: databases/firebird21-client o ports/152402 New port: databases/firebird21-server o ports/152396 Update cad/salome* to 5.1.4 o ports/152387 ports-mgmt/portupgrade: portinstall with bash completi o ports/152386 New port: devel/TheSchwartz-Worker-SendEmail o ports/152384 New port: devel/TheSchwartz-Simple o ports/152376 New port: audio/lastfmsubmitd f ports/152375 [patch] lang/qscheme: add a missing dependency and hop o ports/152365 mail/assp: Periodic script resets file ownership to ro f ports/152304 sysutils/fcron: illegal instruction 4 s ports/152296 wrong message when trying to checkout using old reposi o ports/152274 New Port: editors/jupp (portable joe from MirBSD) o ports/152236 [patch] x11/slim: Enable pam support, add hald and dbu f ports/152225 security/sancp: UIDs & GIDs Update o ports/152186 [NEW PORT] lang/python-doc-text: Documentation for the o ports/152175 New port: lang/javascript-v8 Google's open source Java f ports/152152 math/polymake: Port upgrade request f ports/152134 error: cannot portupgrade 'slony1-1.2.20' to 'slony1-1 o ports/152118 New port: deskutils/linux-tahometer A worktime trackin o ports/152109 New port: x11/keylaunch2 A fork of keylaunch that a o ports/152082 [NEW PORT] www/encode-explorer: A PHP script to browse f ports/152080 www/flashplugin-mozilla port is broken o ports/152073 New port: audio/WMmp o ports/152065 New port sysutils/zfs-periodic o ports/152060 [new port] devel/pear-PHPTAL Pear port for PHPTAL. o ports/152048 Request/wish for new port textproc/xerces-c3 (XERCES 3 f ports/152045 New port: www/links-hacked browser with tricks for tab o ports/152006 New Port: archivers/unzip-iconv: Slave port of unzip w o ports/151988 New port: databases/dalmp DALMP - Database Abstraction f ports/151983 multimedia/avidemux2 crash f ports/151982 Can't build sysutils/fusefs-kmod ; problem with ruby o ports/151973 New port: security/arpCounterattack -- Detects and rem o ports/151945 net/freeswitch-core update f ports/151930 [PATCH] net-mgmt/netams links to libmysqlclient/libpq o ports/151907 [NEW PORT] security/sophie: A daemon which uses 'libsa f ports/151876 www/squid: Squid rc script doesn't restart the daemon o ports/151852 New port devel/violet - Simple UML editor o ports/151837 [patch] sysutils/bsdstats : does honor BATCH when inst f ports/151783 mail/fetchmail: rc.d script broken in case of MDA use f ports/151777 deskutils/xfce4-volstatus-icon Segmentation fault and o ports/151774 [new port] sysutils/pprotectd o ports/151747 request to enable emulators/wine on amd64 o ports/151744 New port net/appkonference, a high-performance Asteris o ports/151718 [NEW PORT] www/dwoo: Dwoo is a PHP5 template engine f ports/151706 [PATCH] games/endgame-singularity: update to 0.30b f ports/151689 dns/rbldnsd does not use preassigned UID/GIDs o ports/151662 ports-mgmt/portupgrade: upgrade of autoconf leaves old f ports/151658 [PATCH] x11-themes/gtk-murrine-engine update to 0.98.1 o ports/151643 www/rt38: RT38 upgrade directory location o ports/151637 Update port: security/maia Much needed updates for Per o ports/151572 The first start of net/tucan failed because it can't w o ports/151510 ports-mgmt/portupgrade: circular dependencies breaks p f ports/151509 [PATCH] x11-themes/gtk-murrine-engine: update to 0.98. o ports/151467 New port: sysutils/autojump acts as a complement to cd o ports/151466 New port: www/trac-TracGoogleAnalytics Trac plugin to o ports/151453 [NEW PORT] sysutils/froxlor: PHP-based ISP Server Mana o ports/151431 Update to include ZFS module in grub2-1.98 o ports/151371 New Port: audio/pithos GNOME Pandora player f ports/151347 port net-mgmt/rancid doesn't work corretly with SVN o ports/151300 Add LaTeX Project Public Licenses to Mk/bsd.licenses.d f ports/151299 audio/mt-daapd: portlint(1) fixes and more f ports/151296 [patch] ports/sysutils/fusefs-kmod build fails: MNT_NF f ports/151261 add option to net/nss_ldapd o ports/151237 [NEW PORT] x11-toolkits/gob2: GOB (GOB2 anyway) is a p f ports/151154 audio/amarok-kde4 crashes on network activity if ports o ports/151062 New port: www/trac-OhlohWidgetsMacro Trac macro to emb o ports/151005 New port: www/peraperaprv, a pure java twitter client f ports/150883 Ports games/openastromenace won't compile on 64 bit o ports/150879 [NEW PORT] sysutils/downtimed: System downtime monitor f ports/150783 mail/qpopper: fails to configure ocasionally o ports/150605 [PATCH] audio/liblastfm: Fix build with alternate LOCA o ports/150541 [new port] sysutils/yum - Installer/updater for rpm o ports/150508 multimedia/avidemux2 does not find existing x264 o ports/150493 Update for: security/openssh-portable port from 5.2p1 o ports/150489 [NEW PORT] devel/d-feet: D-Feet is a D-Bus debugger wr o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o ports/150423 [PATCH] Upgrade www/p5-Mojo to devel/p5-Mojolicious (v f ports/150376 port net-mgmt/zabbix-server 1.8.3 fails to build on 8. o ports/150361 [patch] provide script to bind with nautilus for multi o ports/150316 new port: net/neatx f ports/150294 news/hellanzb fails to run due to string compare bug f ports/150283 security/l5 produces wrong output on amd64 o ports/150266 New port: x11/tabbed Simple generic tabbed fronted to f ports/150235 sysutils/smartmontools build system bug s ports/150208 [new port] databases/jasperserver: Open Source Java Re f ports/150194 There is no startup script for databases/cassandra f ports/150169 www/havp: Assertion failed: file llvm/lib/System/Mutex o ports/150086 [NEW PORT] net-im/tkabber-plugins-devel: External Plug f ports/150047 net/ipv6socket_scrub: Makefile contains incorrect URL f ports/149963 chinese/ibus-chewing: Refine FETCH_ARGS o ports/149947 [NEW PORT] devel/smartCVS, a powerful graphical CVS cl o ports/149928 New port: textproc/iText iText, a JAVA-PDF library by o ports/149892 [NEW PORT] textproc/weka-devel: Data Mining Software i o ports/149817 ports-mgmt/portupgrade: portinstall -p option doesn't o ports/149601 New port: games/gargoyle - a multiplatform interacti o ports/149565 Update port: converters/igbinary o ports/149564 patch for various games/ adding appropriate LICENSEs t o ports/149538 sysutils/fusefs-ntfs panic on writte on 8.1 o ports/149348 New port: net/wowzamediaserver o ports/149196 [PATCH] chinese/zh-ibus-chewing: update to 1.3.6.20100 f ports/149127 [PATCH] net/beacon: allow compilation on non-i386 arch f ports/148871 bad packages: p5-XML-Parser-2.36_1 p5-XML-SAX-Expat-0. o ports/148777 [New Port] sysutils/qjail: Utility to deploy large num o ports/148605 security/ipsec-tools rc.d/racoon startup script fails f ports/148519 New port: devel/pear-PHP_Debug Port for the PEAR PHP_D f ports/148462 [New port] www/wordpress-themes: wordpress featured th f ports/148454 games/freebsd-carddeck-kde4: freebsd's kde card deck d o ports/148415 new port: devel/libsysinfo, GNU libc's sysinfo port fo o ports/148411 New port: audio/madfufw M-Audio DFU Firmware for USB s o ports/148398 [NEW PORT] net/omcmd: CLI utility for performing OMAPI o alpha/148392 ports Users of Alpha platform should stay with Dovecot 1.1.1 o ports/148234 pkg_install fails for some math/octave-forge ports o ports/147943 New port: net/radsecproxy Radsecproxy is a generic RAD o ports/147847 audio/zynaddsubfx mxml error when opening instruments s ports/147829 Improved net/ucarp startup script: multiple VHID and F o ports/147660 new port: net-im/pidgin-mra, Mail.ru Agent protocol pl s ports/147457 Update port: devel/ptlib26 o ports/147242 ports-mgmt/portupgrade incorrectly remove old port whe o ports/147171 x11-toolkits/open-motif: mwm seems to lose mouse event o ports/146913 ports/databases/skytools failed to make package if Pos o ports/146895 [NEW PORT] emulators/linux-libusb -- linux(4)-friendly o ports/146880 [MAINTAINER] korean/ko.TeX : update to 0.2.0.20100511 o ports/146879 [MAINTAINER] korean/ko.TeX-fonts-extra : update to 0.2 o ports/146830 multimedia/pvr_xxx does not compile on FreeBSD 8.* and o ports/146713 [patch] net-mgmt/argus-monitor update o ports/146434 sysutils/fusefs-ntfs fails to build if devel/bonobo in f ports/145966 port devel/pwlib fails to build: cast error: patch att o ports/145076 I could not build devel/pwlib o ports/144852 [patch] sysutils/ntfsprogs - improvements to mkntfs o ports/144821 [patch] audio/xmms2 : update to version 0.7 DrNo. o ports/144769 [PATCH] ports-mgmt/portupgrade should have a configura o ports/144605 [PATCH] Get ports-mgmt/portupgrade to build under Ruby o ports/144597 security/openssh-portable fails to compile with KERBER f ports/144555 graphics/mesagl: glutMainLoop() crashes when using VBO o ports/144248 net/asterisk16 conflicts with linuxthreads o ports/143938 [NEW PORTS] textproc/linux-f10-ibus-qt et al.: Linux v o ports/143566 sysutils/diskcheckd runs constantly when using gmirror o ports/142824 [patch] security/openssh-portable: add VersionAddendum f ports/141103 net/stone strange behavior on 8.0-RELEASE o ports/140880 ports-mgmt/portupgrade: portversion confused with ezm3 f ports/140867 net-mgmt/nagios-plugins: check_icmp default packets si o ports/140364 ports-mgmt/portupgrade-devel: #! line substitution is s ports/140303 net-mgmt/docsis can not compile filters under amd64 pl o ports/140273 ports-mgmt/portupgrade-devel chokes on bsdpan pkgs o ports/140008 ports-mgmt/portupgrade: many papercut omissions on por o ports/139440 [panic] 8.0 RC1 panics on writing large files to sysut f ports/139203 sysutils/freebsd-snapshot more careful patch not depen o ports/138602 audio/sphinxbase port update o ports/137958 ports-mgmt/portupgrade fails with recursive dependency o ports/137708 ports-mgmt/portupgrade: portupgrade -cRn is broken o ports/137378 Advisory locks fail with ports/security/cfs on FreeBSD o ports/135691 ports-mgmt/portupgrade Wrong example in man page of pk o ports/134714 ports-mgmt/portupgrade deletes user data without quest o ports/134182 ports-mgmt/portupgrade incorrectly handles manual reje a ports/133773 net/keepalived port update request o ports/133563 security/cfs rc script needs "mntudp" option on 8-CURR o ports/131111 ports-mgmt/portupgrade-devel: completely removes packa o ports/129930 ports-mgmt/portupgrade - portinstall tries to install o ports/129891 ports-mgmt/portupgrade fails to recognize variations o o ports/128952 [NEW PORT] java/javadb: Sun's supported distribution o o ports/128881 ports-mgmt/portupgrade backtrace o ports/127889 ports-mgmt/portupgrade detects spurious failures and s o ports/127321 japanese/kon2-16dot: buffer overflow and mouse bugs s ports/127087 mail/bincimap port does not include an rc.d file o ports/127019 ports-mgmt/portupgrade does not recognize fail conditi o ports/126140 ports-mgmt/portupgrade runtime error o ports/125936 ports-mgmt/portupgrade -R fails if BUILD_DEP's are not s ports/125324 editors/the (3.2) looses cursor when compiled with PDC o ports/123068 sysutils/bubblemon2 bubblemon-dockapp: error extractin o ports/112818 ports-mgmt/portupgrade -a fails with database error o ports/107816 [patch] The IPv6 patch breaks the location feature of f ports/91838 graphics/svgalib: tty switching is broken o ports/80111 patch to make WITH_KERBEROS4 working for security/cyru s ports/57498 HEIMDAL_HOME should be defined in src or ports Makefil 191 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 29 11:51:36 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE02C1065674 for ; Mon, 29 Nov 2010 11:51:36 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 400518FC0C for ; Mon, 29 Nov 2010 11:51:36 +0000 (UTC) Received: (qmail invoked by alias); 29 Nov 2010 11:24:54 -0000 Received: from f055154000.adsl.alicedsl.de (EHLO baloo.cs.uni-paderborn.de) [78.55.154.0] by mail.gmx.net (mp008) with SMTP; 29 Nov 2010 12:24:54 +0100 X-Authenticated: #428038 X-Provags-ID: V01U2FsdGVkX1+TvWZHnZ+TBaCA/SPFKF1GjzsiwAfu1TD1c6H+fB 34akqModdJES7T Message-ID: <4CF38D7F.6070206@gmx.de> Date: Mon, 29 Nov 2010 12:24:47 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.12) Gecko/20101103 Fedora/1.0-0.33.b2pre.fc14 Lightning/1.0b3pre Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 11:51:37 -0000 Am 28.11.2010 22:12, schrieb Goran Tal: > Now that the base system supports xz compression, it should be used as > the default compression for packages. > > Files compressed with xz are smaller and decompress faster than those > compressed with bzip2. This can make an installation much quicker, > especially when the complete system is installed or upgraded. > > Any reasons against it? xz compressed files can take up CONSIDERABLY more memory to decompress than files compressed with bzip2 or gzip. Keep that in mind so that systems that are low on memory can still decompress xz packages. If you don't fit into RAM for decompression, it will be unusable. From owner-freebsd-ports@FreeBSD.ORG Mon Nov 29 19:01:48 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C325106564A for ; Mon, 29 Nov 2010 19:01:48 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9B4548FC14 for ; Mon, 29 Nov 2010 19:01:47 +0000 (UTC) Received: by fxm16 with SMTP id 16so2965303fxm.13 for ; Mon, 29 Nov 2010 11:01:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=QVO3huGU5f9mjUTSTQK2iAi5gNJIBgWu0jsX6ygZTU4=; b=qnd5+TFOXdHODmM4NEFAbgwH68MU20GnzDPeaqsbCwtAocHRTvOmHsxU4qnETNUd3/ M8peM79AUZlUQCGkSvfGeoeCSUyANwgq5CPYx3Sf0GMcYXxA/E54uOCgM9q8NsYWy5vq FkmyyrZxH/gaEyk3GucCgzaubpWhjAA0oCgLs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=k/LbHfGu39NqRQKxGNQa9rycGTcxDcN+9MmrTob7pUkpLTKWsTTdtZ5SsONyIQwVPH +hAe8WKEAVXeQmqVI/ia+rv2vUf7iinAz1Wmq6b4YhkgngPUpFbpzm2oOMYAc6UyPQXU BqNXjt0OuIBA+5SUX+WF/PC9BD0Zv/c4G28qQ= Received: by 10.223.102.79 with SMTP id f15mr5694246fao.134.1291055474177; Mon, 29 Nov 2010 10:31:14 -0800 (PST) Received: from centel.dataix.local ([99.19.40.65]) by mx.google.com with ESMTPS id r24sm1321937fax.3.2010.11.29.10.31.11 (version=SSLv3 cipher=RC4-MD5); Mon, 29 Nov 2010 10:31:12 -0800 (PST) Sender: "J. Hellenthal" Message-ID: <4CF3F16E.3020501@DataIX.net> Date: Mon, 29 Nov 2010 13:31:10 -0500 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.12) Gecko/20101028 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Matthias Andree References: <4CF38D7F.6070206@gmx.de> In-Reply-To: <4CF38D7F.6070206@gmx.de> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 19:01:48 -0000 On 11/29/2010 06:24, Matthias Andree wrote: > Am 28.11.2010 22:12, schrieb Goran Tal: >> Now that the base system supports xz compression, it should be used as >> the default compression for packages. >> >> Files compressed with xz are smaller and decompress faster than those >> compressed with bzip2. This can make an installation much quicker, >> especially when the complete system is installed or upgraded. >> >> Any reasons against it? > > xz compressed files can take up CONSIDERABLY more memory to decompress > than files compressed with bzip2 or gzip. Keep that in mind so that > systems that are low on memory can still decompress xz packages. If you > don't fit into RAM for decompression, it will be unusable. Adding to this, as the manual says... The decompressing host will need to have at minimal 5% -> 20% of memory 'available' for decompression of what the compressing host had. Seeing as FreeBSD still runs on systems with memory as little as 200MB "~20% of 1024MB" and quite possible to run on systems with memory of 64MB "~5% of 1024MB" I would not see any benefit in modifying the default memory limit on a compressing host to accommodate for these system rather than using gzip(1) or bzip2(1) by default. It would be nice to support xz(1) compression for large selective packages like firefox or openoffice as those will never run on smaller systems. -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Mon Nov 29 20:23:54 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29BD4106564A for ; Mon, 29 Nov 2010 20:23:54 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id 87D398FC0C for ; Mon, 29 Nov 2010 20:23:53 +0000 (UTC) Received: from it.buh.tecnik93.com (unknown [188.26.251.109]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by worf.ds9.tecnik93.com (Postfix) with ESMTPSA id 767F922C5432; Mon, 29 Nov 2010 22:23:52 +0200 (EET) Date: Mon, 29 Nov 2010 22:23:51 +0200 From: Ion-Mihai Tetcu To: jhell Message-ID: <20101129222351.47fc7534@it.buh.tecnik93.com> In-Reply-To: <4CF3F16E.3020501@DataIX.net> References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.22.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/wpJ73DGcYg3O/eQO0Q+KlsK"; protocol="application/pgp-signature" Cc: Matthias Andree , freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 20:23:54 -0000 --Sig_/wpJ73DGcYg3O/eQO0Q+KlsK Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Mon, 29 Nov 2010 13:31:10 -0500 jhell wrote: > On 11/29/2010 06:24, Matthias Andree wrote: > > Am 28.11.2010 22:12, schrieb Goran Tal: > >> Now that the base system supports xz compression, it should be > >> used as the default compression for packages. > >> > >> Files compressed with xz are smaller and decompress faster than > >> those compressed with bzip2. This can make an installation much > >> quicker, especially when the complete system is installed or > >> upgraded. > >> > >> Any reasons against it? > >=20 > > xz compressed files can take up CONSIDERABLY more memory to > > decompress than files compressed with bzip2 or gzip. Keep that in > > mind so that systems that are low on memory can still decompress xz > > packages. If you don't fit into RAM for decompression, it will be > > unusable. >=20 > Adding to this, as the manual says... The decompressing host will need > to have at minimal 5% -> 20% of memory 'available' for decompression > of what the compressing host had. Seeing as FreeBSD still runs on > systems with memory as little as 200MB "~20% of 1024MB" and quite > possible to run on systems with memory of 64MB "~5% of 1024MB" I > would not see any benefit in modifying the default memory limit on a > compressing host to accommodate for these system rather than using > gzip(1) or bzip2(1) by default. >=20 > It would be nice to support xz(1) compression for large selective > packages like firefox or openoffice as those will never run on smaller > systems. Trouble is it ain't no way (CPU, space, banhdwidth on our side and space,bandwidth on our mirrors side) we could build a double set of packages. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B --Sig_/wpJ73DGcYg3O/eQO0Q+KlsK Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkz0C9cACgkQJ7GIuiH/oeWnfACguNJ+TGcbBtz2VYHqoixgPtNr y1YAn2ZN9XZjzN/zlWbH8YKs0/nDTqLW =d4TW -----END PGP SIGNATURE----- --Sig_/wpJ73DGcYg3O/eQO0Q+KlsK-- From owner-freebsd-ports@FreeBSD.ORG Mon Nov 29 23:40:38 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF5D21065670 for ; Mon, 29 Nov 2010 23:40:38 +0000 (UTC) (envelope-from matthias.andree@gmx.de) Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id 1E76B8FC14 for ; Mon, 29 Nov 2010 23:40:37 +0000 (UTC) Received: (qmail invoked by alias); 29 Nov 2010 23:40:36 -0000 Received: from f055154000.adsl.alicedsl.de (EHLO baloo.cs.uni-paderborn.de) [78.55.154.0] by mail.gmx.net (mp008) with SMTP; 30 Nov 2010 00:40:36 +0100 X-Authenticated: #428038 X-Provags-ID: V01U2FsdGVkX19kMt1FY1FktobT7xSQyesuseADPjgc/ElQ4eDkyn IuSP+itzvUmDR0 Received: from [127.0.0.1] by baloo.cs.uni-paderborn.de with esmtp (Exim 4.70) (envelope-from ) id LCO73L-0004I4-8U for freebsd-ports@freebsd.org; Tue, 30 Nov 2010 00:40:33 +0100 Message-ID: <4CF439F1.6050703@gmx.de> Date: Tue, 30 Nov 2010 00:40:33 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.12) Gecko/20101027 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> In-Reply-To: <4CF3F16E.3020501@DataIX.net> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Nov 2010 23:40:38 -0000 Am 29.11.2010 19:31, schrieb jhell: > Adding to this, as the manual says... The decompressing host will need > to have at minimal 5% -> 20% of memory 'available' for decompression of > what the compressing host had. Seeing as FreeBSD still runs on systems > with memory as little as 200MB "~20% of 1024MB" and quite possible to > run on systems with memory of 64MB "~5% of 1024MB" I would not see any > benefit in modifying the default memory limit on a compressing host to > accommodate for these system rather than using gzip(1) or bzip2(1) by > default. You can specify limits during compression, so the question is should we do that so that hosts with N MB of RAM can decompress packages? Do we retain the compression ratio over bzip2 if we limit compression memory to 512 MB so that decompression would be possible with, say, 128 MB? > It would be nice to support xz(1) compression for large selective > packages like firefox or openoffice as those will never run on smaller > systems. Yes, would be nice. I doubt it will happen soon. -- Matthias Andree From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 02:10:10 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46788106566B for ; Tue, 30 Nov 2010 02:10:10 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1FE458FC0A for ; Tue, 30 Nov 2010 02:10:10 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id 796BE5602D; Tue, 30 Nov 2010 02:10:09 +0000 (UTC) Date: Tue, 30 Nov 2010 02:10:09 +0000 From: Mark Linimon To: Matthias Andree Message-ID: <20101130021009.GA15430@lonesome.com> References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <4CF439F1.6050703@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4CF439F1.6050703@gmx.de> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 02:10:10 -0000 On Tue, Nov 30, 2010 at 12:40:33AM +0100, Matthias Andree wrote: > Yes, would be nice. I doubt it will happen soon. It's actually being looked at. As part of the extensive rework of the pointyhat scripts I did this summer, I attempted to factor out all the magic constants, including the definition of PKGSUFFIX. There are some other bugs that need to be fixed (having to deal with INDEX and duds) before we can get to this, however. mcl From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 02:16:30 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE504106564A for ; Tue, 30 Nov 2010 02:16:30 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7B72D8FC08 for ; Tue, 30 Nov 2010 02:16:30 +0000 (UTC) Received: by vws9 with SMTP id 9so1657724vws.13 for ; Mon, 29 Nov 2010 18:16:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=JxgTac+BUpT/YcV+E7gj1dN29zcfwb563farDfEqi20=; b=eouyQCPuyjPGXnF2TVzjo+05ePGlG1GWjTA+GpkkJ5HkWLnom/sfmmqe2O1QGPaK5J L1jKDQNGY4iS838xtleaombhoaBVMswSqoe1F/hj+v6qE7jHIPBhXINrEsAn+apKo7Ai p1/biCL8GkLBHfQuPT6QNybLPJbwioS7TiQTs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=QBlQhus1qQpU+N/8rtFWQf5rxYmhbkLBvKWIZRIlcej5Ewk7c0BSZLSlv2xPaZgfA1 jKHhOEuVyWksOOLYQrri6Im/FlBAfQ8XZRrGZ+CmnOWmXVJ+dPyEYLZbtJcZIjvFVqdn iMqlVff1l3a7DJiRn4Q8r5MI9EmT+ADpz5Cgw= Received: by 10.220.199.134 with SMTP id es6mr1656523vcb.145.1291083389618; Mon, 29 Nov 2010 18:16:29 -0800 (PST) Received: from centel.dataix.local (adsl-99-19-40-65.dsl.klmzmi.sbcglobal.net [99.19.40.65]) by mx.google.com with ESMTPS id p30sm885598vcf.2.2010.11.29.18.16.27 (version=SSLv3 cipher=RC4-MD5); Mon, 29 Nov 2010 18:16:28 -0800 (PST) Sender: "J. Hellenthal" Message-ID: <4CF45E7A.80102@DataIX.net> Date: Mon, 29 Nov 2010 21:16:26 -0500 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.12) Gecko/20101028 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Matthias Andree References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <4CF439F1.6050703@gmx.de> In-Reply-To: <4CF439F1.6050703@gmx.de> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 02:16:31 -0000 On 11/29/2010 18:40, Matthias Andree wrote: > Am 29.11.2010 19:31, schrieb jhell: > >> Adding to this, as the manual says... The decompressing host will need >> to have at minimal 5% -> 20% of memory 'available' for decompression of >> what the compressing host had. Seeing as FreeBSD still runs on systems >> with memory as little as 200MB "~20% of 1024MB" and quite possible to >> run on systems with memory of 64MB "~5% of 1024MB" I would not see any >> benefit in modifying the default memory limit on a compressing host to >> accommodate for these system rather than using gzip(1) or bzip2(1) by >> default. > > You can specify limits during compression, so the question is should we do that > so that hosts with N MB of RAM can decompress packages? Do we retain the > compression ratio over bzip2 if we limit compression memory to 512 MB so that > decompression would be possible with, say, 128 MB? > Hosts that have [N]MB of "free or available" memory. Most systems in this case will not have a whole lot of RAM available in any case as they are likely to be utilizing it to its upper most potential. Doing such limiting on the compressors part I would think, be more of a waste of resources as such can be achieved by default just sticking with bzip2(1). Besides, limiting memory to 512MB to what ? shave an ~ small percentage off the top of a resulting package. >> It would be nice to support xz(1) compression for large selective >> packages like firefox or openoffice as those will never run on smaller >> systems. > > Yes, would be nice. I doubt it will happen soon. > Agreed. Soon can be quantified by actual need and of which there is not much need except for larger packages but adding this would just add unneeded complication to the system that is already in place. ~ JMO -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 02:37:40 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69A871065697 for ; Tue, 30 Nov 2010 02:37:40 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) by mx1.freebsd.org (Postfix) with ESMTP id 27ACC8FC18 for ; Tue, 30 Nov 2010 02:37:39 +0000 (UTC) Received: from elsa.codelab.cz (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 7F8B219E02D; Tue, 30 Nov 2010 03:37:38 +0100 (CET) Received: from [192.168.1.2] (ip-86-49-61-235.net.upcbroadband.cz [86.49.61.235]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 7999E19E023; Tue, 30 Nov 2010 03:37:36 +0100 (CET) Message-ID: <4CF46370.101@quip.cz> Date: Tue, 30 Nov 2010 03:37:36 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.15) Gecko/20101027 SeaMonkey/2.0.10 MIME-Version: 1.0 To: Matthew Seaman References: <4CF2A724.9050406@quip.cz> <4CF2B696.3010408@infracaninophile.co.uk> <4CF2E24B.7030903@quip.cz> In-Reply-To: <4CF2E24B.7030903@quip.cz> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: dbf2mysql and hardcoded mysql-client version dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 02:37:40 -0000 Miroslav Lachman wrote: > Matthew Seaman wrote: >> On 28/11/2010 19:01, Miroslav Lachman wrote: >>> Can somebody explain me, why databases/dbf2mysql has hardcoded >>> dependency to mysql323-client? >>> >>> The Makefile contains: >>> >>> LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client >>> >>> But it is unbuildable >> >> The sources to dbf2mysql were last modified around 2000, when mysql-3.2x >> was current. Since then, it seems to have been pretty much abandoned. >> >> A good candidate for deletion from the ports on grounds of obsolescence. > > I attached two patches. Makefile.patch is for port's Makefile and > patch-mysql2dbf should be placed into files port directory. > > Then it works with MySQL 5.0.x (tested with mysql-client-5.0.90) > > I tested just a dbf2mysql command, patch for mysql2dbf is needed to > compile, but I did not tested it as I do not have any apps to test > produced dbf file. > > Should I send a PR for this fix? The PR is 152693 http://www.freebsd.org/cgi/query-pr.cgi?pr=152693 Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 03:12:05 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 786751065694 for ; Tue, 30 Nov 2010 03:12:05 +0000 (UTC) (envelope-from julien.laffaye@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2E8288FC1A for ; Tue, 30 Nov 2010 03:12:05 +0000 (UTC) Received: by gxk8 with SMTP id 8so2621173gxk.13 for ; Mon, 29 Nov 2010 19:12:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=HRlKZYJMlgz0R4T62wZZ44mf2dTqq6MtTM9EMJYHv9A=; b=P/CDJAbnjr2fzQ0Q/3s7wtYvlkF4YzUkV7oexFlk3Te7siUdvjjFX7iWwWH8iAqyz9 6l2xHkxvePnCjYw2wXsSbZ3GrZwH0F4Aoj4vQuk2Y2sxzf/4g9etStcrsU3q4+LAcZrc 4i4hQWb0yjZkP2fMMZ+Kx3x813NT1JZhDRTJA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=EG3PeKzMyhanSGZ4LylYe0DKyCfy5m97lUC/CYkLKAhpK2dS7JEKzM/7Q/goAjAtvf wVJSk2a3U49LfOh0tRLizTqVyHC9oIzUoIvTK4XjLElUFmNTXrK33Udwyxl/3+mQjlJd C9nVHCpEsZdqz4MHObq+k0rkFQOMTTFFyaSp4= MIME-Version: 1.0 Received: by 10.100.202.2 with SMTP id z2mr1976144anf.266.1291084845249; Mon, 29 Nov 2010 18:40:45 -0800 (PST) Sender: julien.laffaye@gmail.com Received: by 10.236.110.144 with HTTP; Mon, 29 Nov 2010 18:40:45 -0800 (PST) In-Reply-To: <4CF439F1.6050703@gmx.de> References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <4CF439F1.6050703@gmx.de> Date: Tue, 30 Nov 2010 02:40:45 +0000 X-Google-Sender-Auth: H1SptVH0QY8cH3nW_59mmxleHgc Message-ID: From: Julien Laffaye To: Matthias Andree Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 03:12:05 -0000 On 11/29/2010 23:40, Matthias Andree wrote: You can specify limits during compression, so the question is should we do that so that hosts with N MB of RAM can decompress packages? Do we retain the compression ratio over bzip2 if we limit compression memory to 512 MB so that decompression would be possible with, say, 128 MB? According to xz(1), in its default mode (-6), xz uses ~100MiB for compression and ~10MiB for decompression. That seems to be acceptable. From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 01:53:22 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1D63106566B for ; Tue, 30 Nov 2010 01:53:22 +0000 (UTC) (envelope-from dolgavin.alexey@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id BC9358FC1C for ; Tue, 30 Nov 2010 01:53:22 +0000 (UTC) Received: by iwn39 with SMTP id 39so6392654iwn.13 for ; Mon, 29 Nov 2010 17:53:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=0MXkV++OB84lJamxyCts2sqJJCcCGYalwrvpLmYpduU=; b=yH827quR6TDKeElBFDzzIrGiGQTOl4T8Fi4vrwApFMj1uVozdAUT3gmRoxYYviGIj5 NSUjyR47U3vUO6yu8+FXR7SmlT9uQzHq5cNXwTyr6Z3/5lx30swKz2mn7eoNuMvPOHpi o/atZIaBm4U4Oe3Er/rkMCZ5JDXxzyWIRIan8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=gN+bQ9SA12WrVRnxUjbYaVq2Qwhf2W6OPF/zfBnRczKkE1A99QRqLK/9aGlQ8vXLfh 2N4OGISu/DHHTFeWNzJkq7qattQvsx/5ze3ZhNIxJqPS4TniCUYhgLSqGMi1Ywl41T3i WLuXpNJQWbVSqq02Q9JkVBBkvpntToSQsBfyA= MIME-Version: 1.0 Received: by 10.231.173.138 with SMTP id p10mr6274295ibz.143.1291072059629; Mon, 29 Nov 2010 15:07:39 -0800 (PST) Received: by 10.231.31.77 with HTTP; Mon, 29 Nov 2010 15:07:39 -0800 (PST) Date: Tue, 30 Nov 2010 02:07:39 +0300 Message-ID: From: =?KOI8-R?B?5M/Mx8HXyc4g4czFy9PFyg==?= To: ports@freebsd.org X-Mailman-Approved-At: Tue, 30 Nov 2010 03:29:33 +0000 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: avant-window-navigator X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 01:53:23 -0000 Hello. I'm sorry for my question but... when will we have this port (x11/avant-window-navigator) with 0.4 version? Thanks for answer... From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 04:29:10 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58D7C106564A for ; Tue, 30 Nov 2010 04:29:10 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 3DFF38FC1B for ; Tue, 30 Nov 2010 04:29:09 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id DEF125602D; Tue, 30 Nov 2010 04:13:23 +0000 (UTC) Date: Tue, 30 Nov 2010 04:13:23 +0000 From: Mark Linimon To: ports@FreeBSD.org Message-ID: <20101130041323.GA17404@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Cc: linimon@FreeBSD.org Subject: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 04:29:10 -0000 I am trying to debug a problem in the package building scripts, and in the process of debugging it, have found some inconsistencies with ports that require kernel sources. For installations that keep their latest sources in /usr/src, this patch should have no effect; however, for others (such as pointyhat, which has multiple src trees) this should fix edge conditions with 'make describe'. I would appreciate feedback on the following patch: http://people.freebsd.org/~linimon/patches/diff.out.srcbase Thanks. mcl From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 09:33:39 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B5040106566B for ; Tue, 30 Nov 2010 09:33:39 +0000 (UTC) (envelope-from ade@FreeBSD.org) Received: from panix.lovett.com (panix.lovett.com [166.84.7.128]) by mx1.freebsd.org (Postfix) with ESMTP id 8F8288FC14 for ; Tue, 30 Nov 2010 09:33:39 +0000 (UTC) Received: from cpe-66-68-128-204.austin.res.rr.com ([66.68.128.204] helo=[172.16.32.150]) by panix.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PNMag-000Pe1-Fu; Tue, 30 Nov 2010 09:33:38 +0000 Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Ade Lovett In-Reply-To: <20101130041323.GA17404@lonesome.com> Date: Tue, 30 Nov 2010 03:33:27 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <5A25461F-A28C-415C-A8AB-59C91E1B1CC7@FreeBSD.org> References: <20101130041323.GA17404@lonesome.com> To: Mark Linimon X-Mailer: Apple Mail (2.1082) Cc: FreeBSD Ports Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 09:33:39 -0000 On Nov 29, 2010, at 22:13 , Mark Linimon wrote: > I would appreciate feedback on the following patch: >=20 > http://people.freebsd.org/~linimon/patches/diff.out.srcbase Seems like there's an awful lot of duplication of: SRC_BASE?=3D /usr/src in those port Makefiles. What's wrong with adding the above, with a bit of documentation, to = bsd.port.mk ? This also allows portlint to be trivially extended to warn/fatal on = seeing /usr/src in any port Makefile, pointing the author in the = direction of ${SRC_BASE} -aDe From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 10:41:48 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71463106566B; Tue, 30 Nov 2010 10:41:48 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [IPv6:2607:f678:1010::34]) by mx1.freebsd.org (Postfix) with ESMTP id 4E26A8FC16; Tue, 30 Nov 2010 10:41:48 +0000 (UTC) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id oAUAfS2T001430 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 30 Nov 2010 02:41:28 -0800 (PST) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id oAUAfSnD001429; Tue, 30 Nov 2010 02:41:28 -0800 (PST) Received: from fbsd61 by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA11350; Tue, 30 Nov 10 02:41:02 PST Date: Tue, 30 Nov 2010 02:40:40 -0800 From: perryh@pluto.rain.com To: itetcu@freebsd.org, jhell@DataIX.net Message-Id: <4cf4d4a8.XZFA0ONHiBWt/ZMs%perryh@pluto.rain.com> References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <20101129222351.47fc7534@it.buh.tecnik93.com> In-Reply-To: <20101129222351.47fc7534@it.buh.tecnik93.com> User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: matthias.andree@gmx.de, freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 10:41:48 -0000 Ion-Mihai Tetcu wrote: > > It would be nice to support xz(1) compression for large selective > > packages like firefox or openoffice as those will never run on > > smaller systems. > > Trouble is it ain't no way (CPU, space, banhdwidth on our side and > space,bandwidth on our mirrors side) we could build a double set of > packages. but perhaps it would be possible to support compressing certain ports' packages using xz _instead of_ bzip2, the specification being made in the port's Makefile and defaulting to bzip2 (current behavior) if no alternative compression method is specified. From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 10:59:21 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5582D1065672; Tue, 30 Nov 2010 10:59:21 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from mail.vx.sk (mail.vx.sk [IPv6:2a01:4f8:100:1043::3]) by mx1.freebsd.org (Postfix) with ESMTP id DD0658FC08; Tue, 30 Nov 2010 10:59:20 +0000 (UTC) Received: from core.vx.sk (localhost [127.0.0.1]) by mail.vx.sk (Postfix) with ESMTP id 1212112B66B; Tue, 30 Nov 2010 11:59:20 +0100 (CET) X-Virus-Scanned: amavisd-new at mail.vx.sk Received: from mail.vx.sk ([127.0.0.1]) by core.vx.sk (mail.vx.sk [127.0.0.1]) (amavisd-new, port 10024) with LMTP id KgpCMUG-mplp; Tue, 30 Nov 2010 11:59:18 +0100 (CET) Received: from [10.0.3.3] (188-167-67-67.dynamic.chello.sk [188.167.67.67]) by mail.vx.sk (Postfix) with ESMTPSA id D72B312B655; Tue, 30 Nov 2010 11:59:17 +0100 (CET) Message-ID: <4CF4D904.2020801@FreeBSD.org> Date: Tue, 30 Nov 2010 11:59:16 +0100 From: Martin Matuska User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6 MIME-Version: 1.0 To: Thomas Zander References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: multimedia@freebsd.org, FreeBSD - Ports Subject: Re: [CFT] mplayer / mencoder port update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 10:59:21 -0000 I have just updated x264 to 0.110.1804 We use now original x264 versioning scheme for PORTVERSION. Dňa 17.11.2010 21:44, Thomas Zander wrote / napísal(a): > Hi, > > I have prepared a new tarball, for download at the usual location: > > http://www.rrr.de/~riggs/mplayer/m20101117.tar.bz2 > > Most notable changes: > - remove volume-per-channel patch, instead pkg-message explains the > issue and the solutions > - remove RUN_DEPENDS for live media > > @Martin: Do you have plans for an x264 update? I'd like to commit > mplayer after we have a suitable x264 port. > > Have fun > Riggs From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 14:59:51 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A613C106566C; Tue, 30 Nov 2010 14:59:51 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 86FA48FC08; Tue, 30 Nov 2010 14:59:51 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id 1AD9E56026; Tue, 30 Nov 2010 14:59:51 +0000 (UTC) Date: Tue, 30 Nov 2010 14:59:51 +0000 From: Mark Linimon To: Ade Lovett Message-ID: <20101130145951.GA24687@lonesome.com> References: <20101130041323.GA17404@lonesome.com> <5A25461F-A28C-415C-A8AB-59C91E1B1CC7@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5A25461F-A28C-415C-A8AB-59C91E1B1CC7@FreeBSD.org> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: FreeBSD Ports Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 14:59:51 -0000 On Tue, Nov 30, 2010 at 03:33:27AM -0600, Ade Lovett wrote: > Seems like there's an awful lot of duplication of: > > SRC_BASE?= /usr/src > > in those port Makefiles. > > What's wrong with adding the above, with a bit of documentation, to > bsd.port.mk ? Nothing at all, but this is a fix I'd like to go ahead and get in ASAP, as it's holding me up from doing what I need to do. mcl From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 15:08:40 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from hub.freebsd.org (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by hub.freebsd.org (Postfix) with ESMTP id BE767106566B; Tue, 30 Nov 2010 15:08:39 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Date: Tue, 30 Nov 2010 10:08:39 -0500 From: Thomas Abthorpe To: ports@FreeBSD.org Message-ID: <20101130150839.GH52404@hub.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="D6IIOQQv2Iwyp54J" Content-Disposition: inline X-URL: http://www.goodking.org/ X-PGP-Key: http://people.freebsd.org/~tabthorpe/tabthorpe.asc X-PGP-Key-ID: 0xA473C990 X-PGP-Key-Fingerprint: D883 2D7C EB78 944A 69FC 36A6 D937 1097 A473 C990 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: Things all ports mentors and potential mentees should know X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 15:08:40 -0000 --D6IIOQQv2Iwyp54J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Greetings list This document was initially prepared by portmgr@ as a means of addressing issues around ports quality, in addition to informing mentors/mentees their duties and obligations within the ports tree. It has gone through some peer review among ports committers, integrating feedback from the community at large. This is intended as a living, growing document to be updated and modified over time. At some point in the future, it will likely get rendered for use on the WWW, in the meantime it is being tracked as a text file. Without further delay, I would like to present Mentoring Guidelines, feedback welcome! Guideline for Mentor/Mentee relationships =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D "The code is more what you'd call 'guidelines' than actual rules." -- Captain Barbossa, Pirates of the Caribbean, Curse of the Black Pearl Preamble =3D=3D=3D=3D=3D=3D=3D=3D This document is intended to help demystify the mentoring process, as well as a way to openly promote a constructive discussion to adapt and grow the guidelines. In our lives we have too many rules, we are not a government organisation that inflicts regulation, but rather a collective of like minded individuals working toward a common goal, maintaining the quality assurance of the product we call the Ports Tree. Mentoring =3D=3D=3D=3D=3D=3D=3D=3D=3D Why mentor? ----------- - For most of us, we were mentored into the Project, so pay it forward by offering to mentor somebody else in. - You have an irresistible urge to inflict knowledge on others. - The usual punishment applies because you are sick and tired of committing somebody else's good work! Mentor/Co-Mentor ---------------- - Reasons for a co-mentorship * Significant timezone differential. Accessible, interactive mentor(s) available via IM is extremely helpful! * Potential language barrier. Yes, FreeBSD is very English oriented, as is most software development, however, having a mentor who can speak a native language can be very useful. * ENOTIME! Until there is a 30 hour day, and an 8 day week, some of us only have so much time to give. Sharing the load with somebody else will make it easier. * A rookie mentor can benefit from the experience of a senior committer/mentor. * Two heads are better than one. - Reasons for sole mentorship * You do not play nicely with others :) * You prefer to have a one-on-one relationship * The reasons for co-mentorship do not apply to you Expectations ------------ - We expect mentors to review and test-build all proposed patches, at least for an initial period lasting more than a week or two. - We expect that mentors should take responsibility for the actions of their mentee. A mentor should follow up with all commits the mentee makes, both approved, and implicit. - We expect mentors to make sure their mentees read the Porter's Handbook, the PR handling guide, and the Committer's Guide. While it's not necessary to memorize all the details, every committer needs to have an overview of these things to be an effective part of the community (and avoid as many rookie mistakes as possible. Hey, there's always got to be at least one ...) MENTEES =3D=3D=3D=3D=3D=3D=3D Selecting a mentee ------------------ - There is no defined rule for what makes a candidate ready, it can be a combination of number of PRs they have spammed to gnats, the number ports maintained, frequency of ports updates and/or level of participation in a particular area of interest, e.g. Gnome, KDE, Gecko etc. - A candidate should have almost no timeouts, be responsive to requests, and generally helpful in supporting their ports. - There must be a history of commitment, as we all know hatching a committer takes time and effort. So if somebody has been around longer, and spent the time observing how things are done, there is some anticipation of accumulated knowledge. All too often we have seen a maintainer submit a few PRs, show up in IRC and ask "When do I get my @FreeBSD.org address?" - Being subscribed to, and following the mailing lists is very beneficial. There is no real expectation that submitting posts on the lists will make somebody a committer, but it demonstrates a commitment. Some mails offer insights into the knowledge of a candidate as well how they interact with others. Similarly participating in IRC can give somebody a higher profile. - Ask six different committers how many PRs a maintainer should submit prior to being nominated, and you will get six different answers. Ask those same individuals how long somebody should have been participating, same dilemma. How many ports should they have at a minimum? Now we have a bikeshed! Some things are just hard to quantify, a mentor will just have to use their best judgement, and hope that portmgr@ agrees. Duration of mentorship ---------------------- - As the trust level develops and grows, the mentee may be granted "implici= t" commit rights. This can include trivial changes to a Makefile, pkg-descr etc. Similarly, it may include PORTVERSION updates that do not include plist changes. Other circumstances may be formulated at the discretion of the Mentor. However, during the period of mentorship, a port version bump, that affects dependent ports should be checked by a mentor. - Just as we are all varied individuals, each mentee has different learning curves, time commitments, and other influencing factors that will contribute to the time required before they can fly solo. Empirically, a mentee should be observed for at least 3 months. 90-100 commits is another target that a mentor could use before releasing a mentee. Other factors to consider prior releasing a mentee, is the number of mistakes they may have made, QATs received etc. If they are still making rookie mistakes, they still require mentor guidance. Mentor/Co-Mentor debate ----------------------- - When a request gets to portmgr@, it usually reads as, "I propose 'foo' for a ports commit bit, I will co-mentor with 'bar'". Proposal received, vot= ed, and carried. - The mentor is the primary point of contact or the "first among equals", the co-mentor is the backup. - Some reprobate, whose name shall be withheld, made this commit http://lists.freebsd.org/pipermail/cvs-ports/2007-September/134614.html, it seems to be the first one documented in the ports tree, until somebody can prove otherwise. Similar co-mentor commits have also been spotted in the src tree. Does this make it right? Does this make it wrong? It seems to be part of the evolution of how things are done. Expectations ------------ - We expect mentees to be prepared for constructive criticism from the community. There's still a lot of "lore" that isn't written down. Responding well to constructive criticism is what we hope we are selecting for by first reviewing their existing contributions on IRC and mailing lists. - We warn mentees that some of the criticism they receive may be less "constructive" than others, (whether through language communication problems, or excessive nit-picking), and that dealing with this gracefully is just part of being in a large community. In case of specific problems with specific people, or any questions, we hope that they will approach a portmgr@ member on IRC or by email. Supplementary Reading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - http://www.freebsd.org/doc/en/articles/committers-guide - The FreeBSD Committer's Guide - http://www.freebsd.org/doc/en/articles/contributing-ports - Contributing to the FreeBSD Ports Collection - http://www.freebsd.org/doc/en/books/porters-handbook - FreeBSD Porter's Handbook Summary =3D=3D=3D=3D=3D=3D=3D The thing to keep in mind is that the twin goals are to have an effective and useful Ports Collection, with the minimum degree of interpersonal friction, and all the while keeping in mind that this is a completely volunteer effort, and as such is supposed to be (to some degree) fun ... Last edited : $Date: 2010/11/27 18:36:53 $ -- Copyright 2010, The FreeBSD Portmgr Team. All rights reserved. Redistribution, publication, translation and use, with or without modification, in full or in excerpt, in any form or format of this document are permitted. Excerpts must be quoted in context and may not misconstrue the original meaning. http://people.freebsd.org/~portmgr/mentor_guidelines.txt.asc --=20 Thomas Abthorpe | FreeBSD Committer tabthorpe@FreeBSD.org | http://people.freebsd.org/~tabthorpe --D6IIOQQv2Iwyp54J Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iQEcBAEBAgAGBQJM9RN2AAoJENk3EJekc8mQW6IH/jvzceHyl3PD6XctR+Vny5bC T0EcnT8r6AFNTPzfnVBD95NPGhw4/RDQ6Q7go1VF/te1EYTf5bMxCbwAZuzPaa/L 9zfMm8ynKLrEAsVJ5GzC9HeTvQdklzQ9Jj9JzQsVsccsJjZaVvuFrgn8KU/fwNjN nAGKQd05GIdUh7eQL4X3Db0qc7EtSZNeqDuGVhQpSJl4QEeBmnOUZLMbvCj9a3OR Nh9d5Fd7JWzdi/2xqqLXXYCFW3XjZ/eHPeEwi9kx3+DKaVe9zR7Nf2rSVqmtktSm jIxG+/cyTbeq7Qkj82fzJwlZwO0RjGvR/PsKKrEJtoJpwoq/Dn93UIOh7sM2akg= =qImZ -----END PGP SIGNATURE----- --D6IIOQQv2Iwyp54J-- From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 15:37:16 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E065C1065672 for ; Tue, 30 Nov 2010 15:37:16 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 6BCF78FC14 for ; Tue, 30 Nov 2010 15:37:16 +0000 (UTC) Received: by ewy24 with SMTP id 24so2886575ewy.13 for ; Tue, 30 Nov 2010 07:37:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :x-enigmail-version:content-type:content-transfer-encoding; bh=lSsapuuaniQlbG5WRTt0q/IDQozYG+NpmnQ8t37Fg/0=; b=pjALul0ugvpss55oxKqpXaHEYDRBdS6XpjscT8nWzaUH4rYlHduh2idqbx7Do2EKXf uk7RJPCI8LdDP4wt+zB4u1lMldnFG3VHd3ZIIIEGVzkts8SbCq/KavBTHs5E0572unGG mY/sFV4QWCCV5Qc+AKbrG80/QyDqjBytFwPtA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=Qpk16h8dSvZXbbxEVAEmBPwx7OfFp9AeCOEyOFMF15NOd6M+W3lq7+7bEQ2vtQr+9Z +IhVw1pXVsczfTd5vWrpEY1fwEIrhf9H0dh8Bm+vkeohdGXX04i0Lh/mff5Hrf6uGqBc lDQXKv1zJKfE/2WZnN4B9i0XGsflPifc9JMFs= Received: by 10.213.17.72 with SMTP id r8mr2080126eba.58.1291131434979; Tue, 30 Nov 2010 07:37:14 -0800 (PST) Received: from [192.168.1.64] (ip4da3ae31.direct-adsl.nl [77.163.174.49]) by mx.google.com with ESMTPS id v56sm6465146eeh.14.2010.11.30.07.37.04 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 30 Nov 2010 07:37:07 -0800 (PST) Message-ID: <4CF51A1F.7030803@gmail.com> Date: Tue, 30 Nov 2010 16:37:03 +0100 From: Rene Ladan User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; nl-NL; rv:1.9.2.12) Gecko/20101029 Thunderbird/3.1.6 MIME-Version: 1.0 To: Mark Linimon References: <20101130041323.GA17404@lonesome.com> In-Reply-To: <20101130041323.GA17404@lonesome.com> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 15:37:17 -0000 Op 30-11-2010 05:13, Mark Linimon schreef: > I am trying to debug a problem in the package building scripts, and > in the process of debugging it, have found some inconsistencies with > ports that require kernel sources. For installations that keep their > latest sources in /usr/src, this patch should have no effect; however, > for others (such as pointyhat, which has multiple src trees) this should > fix edge conditions with 'make describe'. > > I would appreciate feedback on the following patch: > > http://people.freebsd.org/~linimon/patches/diff.out.srcbase > Just looking at the patch itself, I've found that ${SRC_BASE} can also be used in line 137, 152, 186, and 205 of the patch. These are ports graphics/kix-kmod, graphics/plasma-kmod, palm/uppc-kmod, and devel-linux_kdump respectively. Rene -- http://www.rene-ladan.nl/ GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 18:01:35 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F8101065673; Tue, 30 Nov 2010 18:01:35 +0000 (UTC) (envelope-from p.bylinski@pertus.pl) Received: from pertus.legnica.medianet.pl (mail.pertus.pl [195.116.191.3]) by mx1.freebsd.org (Postfix) with ESMTP id 1E1EE8FC19; Tue, 30 Nov 2010 18:01:34 +0000 (UTC) Received: from PiotrekPC (gw.pertus.pl [195.116.191.120]) by pertus.legnica.medianet.pl (8.14.0/8.14.0) with ESMTP id oAUI1UWB044481; Tue, 30 Nov 2010 19:01:31 +0100 (CET) (envelope-from p.bylinski@pertus.pl) From: =?iso-8859-2?Q?Piotr_Byli=F1ski?= To: Date: Tue, 30 Nov 2010 19:01:30 +0100 Organization: PERTUS Message-ID: <007201cb90b8$9e50aaa0$daf1ffe0$@pertus.pl> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 thread-index: AcuQuESBkqcP7IqlToy1Ial6MdQuOQ== Content-Language: pl X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (pertus.legnica.medianet.pl [195.116.191.3]); Tue, 30 Nov 2010 19:01:32 +0100 (CET) X-Scanned-By: MIMEDefang 2.61 on 195.116.191.3 X-Virus-Scanned: clamav-milter 0.96.4 at av.pertus.pl X-Virus-Status: Clean Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: otrs-2.4.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 18:01:35 -0000 Hello, =20 Is it possible to know when will otrs-3=20 be available in freebsd ports ? =20 =20 Kind regards, Pozdrawiam, Piotr Byli=F1ski =20 e-mail: p.bylinski@pertus.pl =20 =20 From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 18:24:49 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 310CC1065674 for ; Tue, 30 Nov 2010 18:24:49 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id D757C8FC12 for ; Tue, 30 Nov 2010 18:24:48 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id A579134D404; Tue, 30 Nov 2010 18:24:15 +0000 (GMT) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Tue, 30 Nov 2010 18:24:15 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201011301824.15550.david@vizion2000.net> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 18:24:49 -0000 Hi I was idly wondering how easy/difficult it might be to maintain and access an historical record of port installations and upgrades on a particular system. Something fairly comprehensive that would enable one to see when a port was first installed, its original version number, when it was upgraded/deinstalled/reinstalled and subsequent changes to the installed version. Maybe also time/date when a port tree was updated and which ports were affected by those updates. I dont suppose there a convenient way of obtaining this information by default? If not is there a port which would do it? Thoughts Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 18:42:08 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6A7B106564A for ; Tue, 30 Nov 2010 18:42:08 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 415058FC0C for ; Tue, 30 Nov 2010 18:42:08 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 8939634D404; Tue, 30 Nov 2010 18:41:35 +0000 (GMT) From: David Southwell Organization: Voice & Vision To: Chuck Swiger Date: Tue, 30 Nov 2010 18:41:35 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) References: <201011301824.15550.david@vizion2000.net> <9C919663-9CAE-4A7D-889F-D36B62787A46@mac.com> In-Reply-To: <9C919663-9CAE-4A7D-889F-D36B62787A46@mac.com> X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201011301841.35462.david@vizion2000.net> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 18:42:08 -0000 > On Nov 30, 2010, at 10:24 AM, David Southwell wrote: > > Something fairly comprehensive that would enable one to see when a port > > was first installed, its original version number, when it was > > upgraded/deinstalled/reinstalled and subsequent changes to the installed > > version. Maybe also time/date when a port tree was updated and which > > ports were affected by those updates. > > You can gather some information by: > > ls -ltr /var/db/ports > > For full information about all of the changes to the ports tree, you'd need > to take a look at the CVS history, perhaps via: > > http://www.freshports.org/ > http://www.freebsd.org/cgi/cvsweb.cgi/ports/ > > Regards, I was thinking of something which is far more comprehensive and systematic. Whilst installed options are obtained by examining /var/db/ports the files do not do not provide the detailed historical information which I envisage. The freshports/freebsd sites will tell us when the distributed ports tree was changed but does not provide a historical record of changes to the local ports tree. David Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 18:46:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0F771065672 for ; Tue, 30 Nov 2010 18:46:46 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout023.mac.com (asmtpout023.mac.com [17.148.16.98]) by mx1.freebsd.org (Postfix) with ESMTP id C6C0A8FC1A for ; Tue, 30 Nov 2010 18:46:46 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp023.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0LCP00C64O5KXR50@asmtp023.mac.com> for freebsd-ports@freebsd.org; Tue, 30 Nov 2010 10:46:32 -0800 (PST) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1010190000 definitions=main-1011300108 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2010-11-30_10:2010-11-30, 2010-11-30, 1970-01-01 signatures=0 From: Chuck Swiger In-reply-to: <201011301841.35462.david@vizion2000.net> Date: Tue, 30 Nov 2010 10:46:31 -0800 Message-id: <3B286D1E-E7F8-4FF5-85E9-29309A8693C6@mac.com> References: <201011301824.15550.david@vizion2000.net> <9C919663-9CAE-4A7D-889F-D36B62787A46@mac.com> <201011301841.35462.david@vizion2000.net> To: David Southwell X-Mailer: Apple Mail (2.1082) Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 18:46:47 -0000 On Nov 30, 2010, at 10:41 AM, David Southwell wrote: > I was thinking of something which is far more comprehensive and systematic. Whilst installed options are obtained by examining /var/db/ports the files do not do not provide the detailed historical information which I envisage. Correct. Unless you've taken good backups, nothing else currently preserves all of the historical information you envision, but you can at least get some of the requested info just out of the current filesystem. > The freshports/freebsd sites will tell us when the distributed ports tree was changed but does not provide a historical record of changes to the local ports tree. Also correct. Again, short of having periodic backups made at sufficiently rapid intervals, there is no way to track that information over time. Regards, -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 18:44:03 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8309D106566B; Tue, 30 Nov 2010 18:44:03 +0000 (UTC) (envelope-from fomistoklus@tut.by) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id E4C278FC13; Tue, 30 Nov 2010 18:44:02 +0000 (UTC) Received: by bwz2 with SMTP id 2so5599669bwz.13 for ; Tue, 30 Nov 2010 10:44:01 -0800 (PST) MIME-Version: 1.0 Received: by 10.204.114.210 with SMTP id f18mr7030503bkq.51.1291140985021; Tue, 30 Nov 2010 10:16:25 -0800 (PST) Sender: fomistoklus@tut.by Received: by 10.204.69.144 with HTTP; Tue, 30 Nov 2010 10:16:24 -0800 (PST) In-Reply-To: <007201cb90b8$9e50aaa0$daf1ffe0$@pertus.pl> References: <007201cb90b8$9e50aaa0$daf1ffe0$@pertus.pl> Date: Tue, 30 Nov 2010 20:16:24 +0200 X-Google-Sender-Auth: h4mgXfy5-G8Lhio7ZQeRH_gfA3U Message-ID: From: =?KOI8-R?B?6czY0SDr0sHX3sXOy88=?= To: skv@freebsd.org, ports@freebsd.org X-Mailman-Approved-At: Tue, 30 Nov 2010 18:51:19 +0000 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Fwd: FreeBSD Port: otrs-2.4.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: danko@iptel.by List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 18:44:03 -0000 *UP!* * * ---------- Forwarded message ---------- From: Piotr Byli=F1ski Date: 2010/11/30 Subject: FreeBSD Port: otrs-2.4.9 To: skv@freebsd.org Cc: ports@freebsd.org Hello, Is it possible to know when will otrs-3 be available in freebsd ports ? Kind regards, Pozdrawiam, Piotr Byli=F1ski e-mail: p.bylinski@pertus.pl _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 18:58:44 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D88621065698 for ; Tue, 30 Nov 2010 18:58:44 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 2B00D8FC39 for ; Tue, 30 Nov 2010 18:58:43 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 5691434D404; Tue, 30 Nov 2010 18:58:11 +0000 (GMT) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Tue, 30 Nov 2010 18:58:10 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) References: <201011301824.15550.david@vizion2000.net> <201011301841.35462.david@vizion2000.net> <3B286D1E-E7F8-4FF5-85E9-29309A8693C6@mac.com> In-Reply-To: <3B286D1E-E7F8-4FF5-85E9-29309A8693C6@mac.com> X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201011301858.11175.david@vizion2000.net> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 18:58:44 -0000 > On Nov 30, 2010, at 10:41 AM, David Southwell wrote: > > I was thinking of something which is far more comprehensive and > > systematic. Whilst installed options are obtained by examining > > /var/db/ports the files do not do not provide the detailed historical > > information which I envisage. > > Correct. Unless you've taken good backups, nothing else currently > preserves all of the historical information you envision, but you can at > least get some of the requested info just out of the current filesystem. > > > The freshports/freebsd sites will tell us when the distributed ports tree > > was changed but does not provide a historical record of changes to the > > local ports tree. > > Also correct. Again, short of having periodic backups made at sufficiently > rapid intervals, there is no way to track that information over time. > > Regards, Seems to me that a comprehensive record would be extremely useful on a local system. I am wondering how difficult it might be to collect data from applications such as: cvsup of ports tree portupgrade/portmaster changes to /var/db/ports changes to /usr/ports/distfiles The results could be held in a mysql database. David Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 19:15:15 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AC511065670 for ; Tue, 30 Nov 2010 19:15:15 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout025.mac.com (asmtpout025.mac.com [17.148.16.100]) by mx1.freebsd.org (Postfix) with ESMTP id 2F8C58FC12 for ; Tue, 30 Nov 2010 19:15:14 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp025.mac.com (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008; 64bit)) with ESMTPSA id <0LCP0090HPH90H50@asmtp025.mac.com> for freebsd-ports@freebsd.org; Tue, 30 Nov 2010 11:15:11 -0800 (PST) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1010190000 definitions=main-1011300113 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2010-11-30_10:2010-11-30, 2010-11-30, 1970-01-01 signatures=0 From: Chuck Swiger In-reply-to: <201011301858.11175.david@vizion2000.net> Date: Tue, 30 Nov 2010 11:15:09 -0800 Message-id: <500E66A0-FC50-4867-80E4-D188E45B3B83@mac.com> References: <201011301824.15550.david@vizion2000.net> <201011301841.35462.david@vizion2000.net> <3B286D1E-E7F8-4FF5-85E9-29309A8693C6@mac.com> <201011301858.11175.david@vizion2000.net> To: David Southwell X-Mailer: Apple Mail (2.1082) Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 19:15:15 -0000 On Nov 30, 2010, at 10:58 AM, David Southwell wrote: > Seems to me that a comprehensive record would be extremely useful on a local system. I am wondering how difficult it might be to collect data from applications such as: > > cvsup of ports tree > portupgrade/portmaster > changes to /var/db/ports > changes to /usr/ports/distfiles It's not difficult. The normal way people track changes to filesystems over time is by making backups (or snapshots, or other equivalents). The normal way people track process execution is accton / sa. > The results could be held in a mysql database. I suppose...MySQL isn't particularly efficient at dealing with large numbers of BLOBs, which is what importing filesystem-tree changes would probably become. You'd likely end up with a MySQL database which grows to be many orders of magnitude bigger than the size of /var/db/ports + whatever under /usr/ports. Things like CVS or Subversion better understand how to represent the list of deltas representing the changes than MySQL does. Good backup software which understands dedup'ing, things like mbox format, etc can also track changes more efficiently than a naive method of keeping around a copy of every file every time it changes. -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 19:17:22 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D30F710656C0; Tue, 30 Nov 2010 19:17:22 +0000 (UTC) (envelope-from thomas.e.zander@googlemail.com) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 54B228FC13; Tue, 30 Nov 2010 19:17:22 +0000 (UTC) Received: by qyk8 with SMTP id 8so1522790qyk.13 for ; Tue, 30 Nov 2010 11:17:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=fWBOtf2GFINkKCz5/Z7soGVZ/e3BZHtFO9hRz2WvCUw=; b=KRf5DFGJTNs30sxffolc7jrIFaiDnyJ4JudgBmua0ECf/17O8HwhWLT17l/Qz5lijv 2BSsPHFMaTuaLEH3tvKzN0GOkOJt5LjEEiZbWqI/nj9zW2Aa6B8p3x+kMKc5WpqJ77Kq /zziUSCas+UCvsQrQo9rPvevic8zjVsmJDkYg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=eue5q0G/2b9ckVJqGA3yvEI/pXI9GycmHhPS515HW6p12Xh26O+r+amQj9euXN/7Cj wcwz+S2Y4Q3aoviSjiMHkMoMDLp4IFISGy63kpyuZ9pSM9jqJ4COu8Bq7MhjhoUp9S1y PA3VlncYOb5A4fWVgphtb57MPxKzRYgxOe7uc= MIME-Version: 1.0 Received: by 10.229.81.148 with SMTP id x20mr6406846qck.18.1291144641329; Tue, 30 Nov 2010 11:17:21 -0800 (PST) Received: by 10.229.239.133 with HTTP; Tue, 30 Nov 2010 11:17:21 -0800 (PST) In-Reply-To: <4CF4D904.2020801@FreeBSD.org> References: <4CF4D904.2020801@FreeBSD.org> Date: Tue, 30 Nov 2010 20:17:21 +0100 Message-ID: From: Thomas Zander To: Martin Matuska Content-Type: text/plain; charset=ISO-8859-1 Cc: multimedia@freebsd.org, FreeBSD - Ports Subject: Re: [CFT] mplayer / mencoder port update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 19:17:22 -0000 On Tue, Nov 30, 2010 at 11:59, Martin Matuska wrote: > I have just updated x264 to 0.110.1804 Great! Merci, Riggs From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 19:19:07 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC363106564A for ; Tue, 30 Nov 2010 19:19:07 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8FD928FC24 for ; Tue, 30 Nov 2010 19:19:07 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id AB0DF56026; Tue, 30 Nov 2010 19:19:06 +0000 (UTC) Date: Tue, 30 Nov 2010 19:19:06 +0000 From: Mark Linimon To: Rene Ladan Message-ID: <20101130191906.GA28560@lonesome.com> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4CF51A1F.7030803@gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: ports@FreeBSD.org Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 19:19:07 -0000 Patch incorporating these suggestions, along with some other edge cases I found, uploaded: http://people.freebsd.org/~linimon/patches/diff.out.srcbase mcl From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 19:29:44 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90C451065674 for ; Tue, 30 Nov 2010 19:29:44 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout030.mac.com (asmtpout030.mac.com [17.148.16.105]) by mx1.freebsd.org (Postfix) with ESMTP id 77D488FC29 for ; Tue, 30 Nov 2010 19:29:44 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp030.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0LCP0004WND3B100@asmtp030.mac.com> for freebsd-ports@freebsd.org; Tue, 30 Nov 2010 10:29:29 -0800 (PST) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1010190000 definitions=main-1011300105 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2010-11-30_10:2010-11-30, 2010-11-30, 1970-01-01 signatures=0 From: Chuck Swiger In-reply-to: <201011301824.15550.david@vizion2000.net> Date: Tue, 30 Nov 2010 10:29:27 -0800 Message-id: <9C919663-9CAE-4A7D-889F-D36B62787A46@mac.com> References: <201011301824.15550.david@vizion2000.net> To: David Southwell X-Mailer: Apple Mail (2.1082) Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 19:29:44 -0000 On Nov 30, 2010, at 10:24 AM, David Southwell wrote: > Something fairly comprehensive that would enable one to see when a port was > first installed, its original version number, when it was > upgraded/deinstalled/reinstalled and subsequent changes to the installed > version. Maybe also time/date when a port tree was updated and which ports > were affected by those updates. You can gather some information by: ls -ltr /var/db/ports For full information about all of the changes to the ports tree, you'd need to take a look at the CVS history, perhaps via: http://www.freshports.org/ http://www.freebsd.org/cgi/cvsweb.cgi/ports/ Regards, -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 19:39:18 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0632106566B for ; Tue, 30 Nov 2010 19:39:18 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx23.fluidhosting.com [204.14.89.6]) by mx1.freebsd.org (Postfix) with ESMTP id 4FA528FC0C for ; Tue, 30 Nov 2010 19:39:17 +0000 (UTC) Received: (qmail 356 invoked by uid 399); 30 Nov 2010 19:39:16 -0000 Received: from localhost (HELO doug-optiplex.ka9q.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 30 Nov 2010 19:39:16 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <4CF552E3.2080904@FreeBSD.org> Date: Tue, 30 Nov 2010 11:39:15 -0800 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.12) Gecko/20101028 Thunderbird/3.1.6 MIME-Version: 1.0 To: David Southwell References: <201011301824.15550.david@vizion2000.net> In-Reply-To: <201011301824.15550.david@vizion2000.net> X-Enigmail-Version: 1.1.2 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 19:39:18 -0000 On 11/30/2010 10:24, David Southwell wrote: > > Hi > > I was idly wondering how easy/difficult it might be to maintain and access an > historical record of port installations and upgrades on a particular system. ports-mgmt/portmaster has the capability to log this information for you. Look in the man page in the ENVIRONMENT section for more information. hth, Doug -- Nothin' ever doesn't change, but nothin' changes much. -- OK Go Breadth of IT experience, and depth of knowledge in the DNS. Yours for the right price. :) http://SupersetSolutions.com/ From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 20:09:53 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBE4A1065672 for ; Tue, 30 Nov 2010 20:09:53 +0000 (UTC) (envelope-from ade@FreeBSD.org) Received: from panix.lovett.com (panix.lovett.com [166.84.7.128]) by mx1.freebsd.org (Postfix) with ESMTP id B55D98FC1A for ; Tue, 30 Nov 2010 20:09:53 +0000 (UTC) Received: from cpe-66-68-128-204.austin.res.rr.com ([66.68.128.204] helo=[172.16.32.150]) by panix.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PNWWO-000B1G-IH; Tue, 30 Nov 2010 20:09:52 +0000 Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Ade Lovett In-Reply-To: <20101130191906.GA28560@lonesome.com> Date: Tue, 30 Nov 2010 14:09:35 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> To: Mark Linimon X-Mailer: Apple Mail (2.1082) Cc: FreeBSD Ports Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 20:09:53 -0000 On Nov 30, 2010, at 13:19 , Mark Linimon wrote: > Patch incorporating these suggestions, along with some other edge > cases I found, uploaded: >=20 > http://people.freebsd.org/~linimon/patches/diff.out.srcbase http://people.FreeBSD.org/~ade/bpm.src_base.diff Trivial addition to Mk/bsd.port.mk to prevent duplication of SRC_BASE?=3D = ... in individual port Makefiles. -aDe From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 21:25:05 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5168C106566B for ; Tue, 30 Nov 2010 21:25:05 +0000 (UTC) (envelope-from ade@FreeBSD.org) Received: from panix.lovett.com (panix.lovett.com [166.84.7.128]) by mx1.freebsd.org (Postfix) with ESMTP id 2284C8FC18 for ; Tue, 30 Nov 2010 21:25:04 +0000 (UTC) Received: from cpe-66-68-128-204.austin.res.rr.com ([66.68.128.204] helo=[172.16.32.150]) by panix.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PNXDg-000B7v-HJ; Tue, 30 Nov 2010 20:54:36 +0000 Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Ade Lovett In-Reply-To: <4CF552E3.2080904@FreeBSD.org> Date: Tue, 30 Nov 2010 14:54:25 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <72D8C25F-566B-41FD-88E3-687DC38B9AA3@FreeBSD.org> References: <201011301824.15550.david@vizion2000.net> <4CF552E3.2080904@FreeBSD.org> To: Doug Barton X-Mailer: Apple Mail (2.1082) Cc: freebsd-ports Ports Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 21:25:05 -0000 On Nov 30, 2010, at 13:39 , Doug Barton wrote: > ports-mgmt/portmaster has the capability to log this information for = you. Look in the man page in the ENVIRONMENT section for more = information. All we need now is for portmaster to go into src/ next to the pkg_* = tools (a development version can obviously be kept in ports, and handled = in the same way base-vs-ports openssl (ok, bad example :) and bind, = purge portupgrade from existence, and a blitz pushing the use of = portmaster as the _supported_ method of upgrading stuff for those = without far too much ports infrastructure information in their heads. -aDe From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 21:35:14 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2203C106564A; Tue, 30 Nov 2010 21:35:14 +0000 (UTC) (envelope-from ganael.laplanche@martymac.org) Received: from data.galacsys.net (webmail.galacsys.net [217.24.81.215]) by mx1.freebsd.org (Postfix) with ESMTP id D9A048FC13; Tue, 30 Nov 2010 21:35:13 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by data.galacsys.net (Postfix) with ESMTP id 401761714F7; Tue, 30 Nov 2010 22:16:17 +0100 (CET) From: "Ganael LAPLANCHE" To: Ade Lovett ,Mark Linimon X-Openwebmail-Date: Tue, 30 Nov 2010 23:16:17 +0200 Message-Id: <20101130211524.M4648@martymac.org> In-Reply-To: <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 88.163.147.236 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Tue, 30 Nov 2010 22:16:17 +0100 (CET) Cc: FreeBSD Ports Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 21:35:14 -0000 On Tue, 30 Nov 2010 14:09:35 -0600, Ade Lovett wrote Hi Ade, hi Mark ! > > Patch incorporating these suggestions, along with some other edge > > cases I found, uploaded: > > > > http://people.freebsd.org/~linimon/patches/diff.out.srcbase > > http://people.FreeBSD.org/~ade/bpm.src_base.diff > > Trivial addition to Mk/bsd.port.mk to prevent duplication of > SRC_BASE?= ... in individual port Makefiles. Good patches, thanks ! But couldn't we extend this idea ? Most of the time, ${SRC_BASE} is used to check whether some file (mostly ${SRC_BASE}/sys/Makefile) exists or not, to return, most of the time, the same error : "you need to extract kernel source tree before building this package" It would be interesting to provide something like : USE_BASE= yes Which would do the following : => defines ${SRC_BASE} => checks for ${SRC_BASE}/sys/Makefile => provides a standard error msg if not found or, if set to something other than yes : USE_BASE= some/file/within/src_base => defines ${SRC_BASE} => check for ${SRC_BASE}/some/file/within/src_base => provides a standard error msg if not found Thus, we would avoid having the same tests again and again, and be able to provide more "standard" messages... What do you think ? -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Nov 30 23:38:48 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DA93106566B; Tue, 30 Nov 2010 23:38:48 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5CF7E8FC14; Tue, 30 Nov 2010 23:38:48 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id 8BF3A56025; Tue, 30 Nov 2010 23:38:47 +0000 (UTC) Date: Tue, 30 Nov 2010 23:38:47 +0000 From: Mark Linimon To: Ganael LAPLANCHE Message-ID: <20101130233847.GA32333@lonesome.com> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> <20101130211524.M4648@martymac.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101130211524.M4648@martymac.org> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: FreeBSD Ports , Ade Lovett Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 23:38:48 -0000 ok, but I'm trying to fix something before I have time to do an -exp run ... mcl From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 00:01:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [IPv6:2001:4f8:fff6::35]) by hub.freebsd.org (Postfix) with ESMTP id 0FF4710656A8 for ; Wed, 1 Dec 2010 00:01:46 +0000 (UTC) (envelope-from cperciva@freebsd.org) Received: from xps.daemonology.net (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx2.freebsd.org (Postfix) with SMTP id CA2411A8C08 for ; Wed, 1 Dec 2010 00:01:45 +0000 (UTC) Received: (qmail 36349 invoked from network); 1 Dec 2010 00:01:44 -0000 Received: from unknown (HELO xps.daemonology.net) (127.0.0.1) by localhost with SMTP; 1 Dec 2010 00:01:44 -0000 Message-ID: <4CF59068.8040105@freebsd.org> Date: Tue, 30 Nov 2010 16:01:44 -0800 From: FreeBSD Security Officer Organization: FreeBSD Project User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.11) Gecko/20100803 Thunderbird/3.0.6 MIME-Version: 1.0 To: freebsd-ports X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: FreeBSD supported branches update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: security-officer@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 00:01:46 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello Everyone, The branches supported by the FreeBSD Security Officer have been updated to reflect the EoL (end-of-life) of FreeBSD 6.4 and FreeBSD 8.0. Since FreeBSD 6.4 was the last remaining supported release from the FreeBSD 6.x stable branch, support for the FreeBSD 6.x stable branch has also ended. The new list of supported branches is below and at < http://security.freebsd.org/ >. Users of FreeBSD 6.4 and 8.0 are advised to upgrade promptly to a newer release, either by downloading an updated source tree and building updates manually, or (for i386 and amd64 systems) using the FreeBSD Update utility as described in the relevant release announcement. The FreeBSD Ports Management Team wishes to remind users that November 30 is also the end of support for the Ports Collection for both FreeBSD 6.4 RELEASE and the FreeBSD 6.x STABLE branch. Neither the infrastructure nor individual ports are guaranteed to work on these FreeBSD versions after that date. A CVS tag will be created for users who cannot upgrade for some reason, at which time these users are advised to stop tracking the latest ports CVS repository and use the RELEASE_6_EOL tag instead. The current supported branches and expected EoL dates are: +---------------------------------------------------------------------+ | Branch | Release | Type | Release date | Estimated EoL | |-----------+------------+--------+-----------------+-----------------| |RELENG_7 |n/a |n/a |n/a |last release + 2y| |-----------+------------+--------+-----------------+-----------------| |RELENG_7_1 |7.1-RELEASE |Extended|January 4, 2009 |January 31, 2011 | |-----------+------------+--------+-----------------+-----------------| |RELENG_7_3 |7.3-RELEASE |Extended|March 23, 2010 |March 31, 2012 | |-----------+------------+--------+-----------------+-----------------| |RELENG_7_4 |7.4-RELEASE |Extended|not yet |release + 2 years| |-----------+------------+--------+-----------------+-----------------| |RELENG_8 |n/a |n/a |n/a |last release + 2y| |-----------+------------+--------+-----------------+-----------------| |RELENG_8_1 |8.1-RELEASE |Extended|July 23, 2010 |July 31, 2012 | |-----------+------------+--------+-----------------+-----------------| |RELENG_8_2 |8.2-RELEASE |Normal |not yet |release + 1 year | +---------------------------------------------------------------------+ - -- Colin Percival Security Officer, FreeBSD | freebsd.org | The power to serve Founder / author, Tarsnap | tarsnap.com | Online backups for the truly paranoid -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAkz1ZCQACgkQFdaIBMps37IHxQCfZQMMAvww0Lgfpt2GRUmgygHG 8JAAn1YPEiEIu39XhMZUslfPwJdv3RRE =LR8q -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 01:50:40 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A8D4106566C; Wed, 1 Dec 2010 01:50:40 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id A72018FC0A; Wed, 1 Dec 2010 01:50:39 +0000 (UTC) Received: from park.js.berklix.net (p549A3E20.dip.t-dialin.net [84.154.62.32]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id oB11KtZh064328; Wed, 1 Dec 2010 01:20:56 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by park.js.berklix.net (8.13.8/8.13.8) with ESMTP id oB11LEpH030875; Wed, 1 Dec 2010 02:21:14 +0100 (CET) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.3/8.14.3) with ESMTP id oB11L9Hc037774; Wed, 1 Dec 2010 02:21:14 +0100 (CET) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201012010121.oB11L9Hc037774@fire.js.berklix.net> To: ports@freebsd.org From: "Julian H. Stacey" Organization: http://www.berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://www.berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Tue, 30 Nov 2010 16:01:44 PST." <4CF59068.8040105@freebsd.org> Date: Wed, 01 Dec 2010 02:21:09 +0100 Sender: jhs@berklix.com Cc: security-officer@freebsd.org Subject: Re: FreeBSD supported branches update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 01:50:40 -0000 > Users of FreeBSD 6.4 and 8.0 are advised to upgrade promptly to a newer release, ISDN Users of 6 be aware: 7 & 8 dropped inbuilt ISDN. http://lists.freebsd.org/pipermail/freebsd-stable/2010-September/058549.html http://lists.freebsd.org/pipermail/freebsd-isdn/2009-June/000897.html list exists for those interested. Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Mail plain text; Not quoted-printable, or HTML or base 64. Avoid top posting, it cripples itemised cumulative responses. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 05:04:34 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 726511066314 for ; Wed, 1 Dec 2010 05:04:24 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 392448FC17 for ; Wed, 1 Dec 2010 05:04:23 +0000 (UTC) Received: by qwj9 with SMTP id 9so1133883qwj.13 for ; Tue, 30 Nov 2010 21:04:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.224.60.65 with SMTP id o1mr7629053qah.13.1291179863289; Tue, 30 Nov 2010 21:04:23 -0800 (PST) Received: by 10.220.190.73 with HTTP; Tue, 30 Nov 2010 21:04:23 -0800 (PST) X-Originating-IP: [128.95.133.190] In-Reply-To: <201011301841.35462.david@vizion2000.net> References: <201011301824.15550.david@vizion2000.net> <9C919663-9CAE-4A7D-889F-D36B62787A46@mac.com> <201011301841.35462.david@vizion2000.net> Date: Tue, 30 Nov 2010 21:04:23 -0800 Message-ID: From: Rob Farmer To: David Southwell Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 05:04:34 -0000 On Tue, Nov 30, 2010 at 10:41, David Southwell wrote: > I was thinking of something which is far more comprehensive and systematic. > Whilst installed options are obtained by examining /var/db/ports the files do > not do not provide the detailed historical information which I envisage. > Try adapting this: http://svn.freebsd.org/viewvc/base?view=revision&revision=210863 -- Rob Farmer From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 05:26:49 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC246106606E for ; Wed, 1 Dec 2010 05:26:33 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6E9EB8FC1C for ; Wed, 1 Dec 2010 05:26:33 +0000 (UTC) Received: by gyf3 with SMTP id 3so3373522gyf.13 for ; Tue, 30 Nov 2010 21:26:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=DkRDZCAhSMgBEZD0sHcEQ14DYwU3ImA+B0uY+GNDlFg=; b=Y6CKheixN1RNFLxOImLQXnxaS+ylHRftxXqlO6RjSfDTJIJSCDviIa7D9WSVSHM3gP fZL62JMttbfZIUkK2r9gWq4+yVCTC7lTG5V0/exWOvL7Ml8r9yVoI9z15N5jYIzu/9GQ w/0v0WjSK7sQwiw3XhELVyA42kjKjG/zcsKVM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=BUT6a74DkQdgBsAu02wDrF/F7vUdw3yjmXUjJWXsRZLN1KxN6ORR2HkDdJ03U55lYN 2YaR56GPEqOiJcPvjw/lbK/OsyHFCXrhNchpWSJXCFq5K+G+PfKgcHKLywFgvEcBHeq3 jZDptuP0yZbWt6ybr5hMvYnAF+OB46FbsTxs8= Received: by 10.100.254.4 with SMTP id b4mr6006440ani.217.1291181192624; Tue, 30 Nov 2010 21:26:32 -0800 (PST) Received: from centel.dataix.local (adsl-99-19-40-65.dsl.klmzmi.sbcglobal.net [99.19.40.65]) by mx.google.com with ESMTPS id x36sm7845067anx.14.2010.11.30.21.26.29 (version=SSLv3 cipher=RC4-MD5); Tue, 30 Nov 2010 21:26:30 -0800 (PST) Sender: "J. Hellenthal" Message-ID: <4CF5DC84.1020100@DataIX.net> Date: Wed, 01 Dec 2010 00:26:28 -0500 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.12) Gecko/20101028 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: David Southwell References: <201011301824.15550.david@vizion2000.net> In-Reply-To: <201011301824.15550.david@vizion2000.net> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 05:26:49 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 11/30/2010 13:24, David Southwell wrote: > > Hi > > I was idly wondering how easy/difficult it might be to maintain and access an > historical record of port installations and upgrades on a particular system. > > Something fairly comprehensive that would enable one to see when a port was > first installed, its original version number, when it was > upgraded/deinstalled/reinstalled and subsequent changes to the installed > version. Maybe also time/date when a port tree was updated and which ports > were affected by those updates. > > I dont suppose there a convenient way of obtaining this information by > default? If not is there a port which would do it? > > Thoughts You might find the following handy. This is certainly not perfect and just a ``my use case scenario'' but I use a hg(1) or Mercurial repository in the package directory to keep track of these things along with a script[1] to update the repository after upgrades and installs that also sends an email once complete. And of course the repository itself has to be modified a little by adding necessary files I have provided at URL[1] and allows you to use pkg_info(1) on the .hg directory for information. Sample email output by default mailed to root@localhost provided in signature. And of course the output of hg(1) run manually in the package directory can also provide you with more verbose output as well as diffs of changes to the files. I originally did this using svn(1) but converted it to using hg(1) because Mercurial only uses one directory in the package root rather than several in each package directory. This could also be converted to using git(1) as well but have not had a need for it as of yet and as I am more attracted to the use of Mercurial over git. [1] http://code.google.com/p/jhell/source/browse/base#base/projects/pkg_commit Regards, - -- changeset: 327:aef99c54e36c tag: 8.2-PRERELEASE user: J. Hellenthal date: Mon Nov 22 10:56:04 2010 -0500 description: Package database update by pkg_commit(1) Addendum: py26-zfs-1_1 Deprecated: py26-zfs-1 Modified: python26-2.6.6 jhell,v -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJM9dyDAAoJEJBXh4mJ2FR+420H/RP5w4i65Eb4ud8zOAIeRV9P mJMthD18VX5LNtmOLOAQ1xcjFo0/bx44sHQl9NqlucF6SgDs0OCmXzUKpcSyVqWb JQipxHjnKnxhp5oiBZg6889F+8oeA7A1CxlE59AaN9vMT808H2RGy3rgLl4A38WR XxHA6SIMe/tS6vAtuPARMrAlF44Rc3FilaU9nSMS3G2XnQaITyUjsIhIolSk2wYZ l2LV7q/Q8fRhkrMiwOCMFqe8gU8lG3+iMfGQX8UGNXxO3pMgW/hA3yxLD8rNORxy KFVBL6cHlmF+6xvGshWFzf8vf7PDOcVz87zJ6Y0dpXfTpylEp30Nwx7w1LVrnug= =gFkj -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 06:18:28 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C5B9106566C; Wed, 1 Dec 2010 06:18:28 +0000 (UTC) (envelope-from ws@au.dyndns.ws) Received: from ipmail04.adl6.internode.on.net (ipmail04.adl6.internode.on.net [150.101.137.141]) by mx1.freebsd.org (Postfix) with ESMTP id 96ED68FC13; Wed, 1 Dec 2010 06:18:27 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApEBABJx9UyWZWdv/2dsb2JhbAAH53CFRwSJcg Received: from ppp103-111.static.internode.on.net (HELO [192.168.1.144]) ([150.101.103.111]) by ipmail04.adl6.internode.on.net with ESMTP; 01 Dec 2010 16:32:53 +1030 From: Wayne Sierke To: Doug Barton In-Reply-To: <4CF552E3.2080904@FreeBSD.org> References: <201011301824.15550.david@vizion2000.net> <4CF552E3.2080904@FreeBSD.org> Content-Type: text/plain; charset="ASCII" Date: Wed, 01 Dec 2010 16:32:50 +1030 Message-ID: <1291183370.2093.35516.camel@predator-ii.buffyverse> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: David Southwell , freebsd-ports@freebsd.org Subject: Re: Ports - installation & upgrade history X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 06:18:28 -0000 On Tue, 2010-11-30 at 11:39 -0800, Doug Barton wrote: > On 11/30/2010 10:24, David Southwell wrote: > > > > Hi > > > > I was idly wondering how easy/difficult it might be to maintain and access an > > historical record of port installations and upgrades on a particular system. > > ports-mgmt/portmaster has the capability to log this information for > you. Look in the man page in the ENVIRONMENT section for more information. ports-mgmt/portupgrade also has a logging capability. See this post for details on configuring pkgtools.conf for date-stamped logfiles: http://lists.freebsd.org/pipermail/freebsd-ports/2004-December/019221.html I've been using this to retain the date-stamped portupgrade history for each port: require "date" PORTUPGRADE_ARGS = ENV['PORTUPGRADE'] || \ '-v -D --results-file /var/tmp/portupgrade.results ' + \ '--log-file /var/tmp/portupgrade-%s::%s-' + \ DateTime.now.strftime("%Y%m%d%H%M%S") + '.log' Of course, this technique is only effective when the corresponding tool is used, but not for "cd portdir && make [de|re]install" installs/updates. I'm currently working on a script to record config file changes to a subversion repo and had already thought that it should be useful for recording changes in /var/db/ports and /var/db/pkg which ought to track something useful about port upgrades and port options changes. I suppose it wouldn't be too hard to keep a "shadow" copy of these dirs and cron a daily script to record diffs, etc., too. Wayne From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 08:38:13 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20B491065674 for ; Wed, 1 Dec 2010 08:38:13 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id B470F8FC17 for ; Wed, 1 Dec 2010 08:38:12 +0000 (UTC) Received: from it.buh.tecnik93.com (unknown [188.26.251.109]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by worf.ds9.tecnik93.com (Postfix) with ESMTPSA id 5589E22C5444; Wed, 1 Dec 2010 10:38:11 +0200 (EET) Date: Wed, 1 Dec 2010 10:38:10 +0200 From: Ion-Mihai Tetcu To: "Ganael LAPLANCHE" Message-ID: <20101201103810.46a1be7a@it.buh.tecnik93.com> In-Reply-To: <20101130211524.M4648@martymac.org> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> <20101130211524.M4648@martymac.org> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.22.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/xeeLEmIuESqflQrOTfPULj7"; protocol="application/pgp-signature" Cc: FreeBSD Ports , Mark Linimon , Ade Lovett Subject: Re: CFR: patch to cleanup usage of SRC_BASE in various ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 08:38:13 -0000 --Sig_/xeeLEmIuESqflQrOTfPULj7 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Tue, 30 Nov 2010 22:16:17 +0100 (CET) "Ganael LAPLANCHE" wrote: > On Tue, 30 Nov 2010 14:09:35 -0600, Ade Lovett wrote >=20 > Hi Ade, hi Mark ! >=20 > > > Patch incorporating these suggestions, along with some other edge > > > cases I found, uploaded: > > >=20 > > > http://people.freebsd.org/~linimon/patches/diff.out.srcbase > >=20 > > http://people.FreeBSD.org/~ade/bpm.src_base.diff > >=20 > > Trivial addition to Mk/bsd.port.mk to prevent duplication of=20 > > SRC_BASE?=3D ... in individual port Makefiles. >=20 > Good patches, thanks ! But couldn't we extend this idea ? >=20 > Most of the time, ${SRC_BASE} is used to check whether some file > (mostly ${SRC_BASE}/sys/Makefile) exists or not, to return,=20 > most of the time, the same error :=20 > =20 > "you need to extract kernel source tree before building this package" > =20 > It would be interesting to provide something like : >=20 > USE_BASE=3D yes=20 > Which would do the following : > =3D> defines ${SRC_BASE} > =3D> checks for ${SRC_BASE}/sys/Makefile > =3D> provides a standard error msg if not found >=20 > or, if set to something other than yes : >=20 > USE_BASE=3D some/file/within/src_base > =3D> defines ${SRC_BASE} > =3D> check for ${SRC_BASE}/some/file/within/src_base > =3D> provides a standard error msg if not found >=20 > Thus, we would avoid having the same tests again and again, and be=20 > able to provide more "standard" messages... >=20 > What do you think ? Yes. It would help tracking some errors on automated build systems. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B --Sig_/xeeLEmIuESqflQrOTfPULj7 Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkz2CXIACgkQJ7GIuiH/oeWIAQCgrOuoqPU4FRm6UCaxUROpKAWn 5s4AoJZZlHsNxhJlTxr8IO7xF0/hm9hi =9TOs -----END PGP SIGNATURE----- --Sig_/xeeLEmIuESqflQrOTfPULj7-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 09:03:43 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD9AB106564A; Wed, 1 Dec 2010 09:03:43 +0000 (UTC) (envelope-from miwi.freebsd@googlemail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6EF8B8FC0C; Wed, 1 Dec 2010 09:03:43 +0000 (UTC) Received: by yxh35 with SMTP id 35so3447927yxh.13 for ; Wed, 01 Dec 2010 01:03:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:reply-to:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:cc:content-type; bh=YoTe+Xp//DGb2QRSPzYXk/YXg8GwTCmQZTA4ST6enj4=; b=rJ6jnO6xmCVEGN0ryvYV4Cts9YQL8nCNyHJep0s5c3k2RXnHeAl241qJbyKaAFKSA2 XBIsCDqGB2s0Dl0pUZMPHxwzsUu8Qx7YFjDaf3s6yEhH7BEq0R3FXnHHRnfRQ5JRZ3fg sibsNCA/FtbFPOKeeW94vjczZ/No2eTDkJRi0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:sender:reply-to:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; b=PI06BK/vJq3A5BwSb1lY7Zk21u+2uizN/xqpepwXDPZ9nfJGKV5u7tI7lanwmCtSEO Lxz6gZ6qwtkFAVgVnng5C3+MD9a8R0t/Me3jCy83+2VjKskfvY9AQx3yK6GSVYhz/iWp 7On+2HLH6TTUBQjiZUt0tlsEr1xl0BMPSUp1M= MIME-Version: 1.0 Received: by 10.90.228.10 with SMTP id a10mr1188913agh.176.1291192634083; Wed, 01 Dec 2010 00:37:14 -0800 (PST) Sender: miwi.freebsd@googlemail.com Received: by 10.90.187.13 with HTTP; Wed, 1 Dec 2010 00:37:14 -0800 (PST) In-Reply-To: <201012010832.oB18WoDm097939@repoman.freebsd.org> References: <201012010832.oB18WoDm097939@repoman.freebsd.org> Date: Wed, 1 Dec 2010 08:37:14 +0000 X-Google-Sender-Auth: 547zu5rBPsF7phjRcx7Z2XZef5o Message-ID: From: Martin Wilke To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ruby@FreeBSD.org, Doug Barton Subject: Fwd: cvs commit: ports/Mk bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: miwi@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 09:03:43 -0000 FYI, ---------- Forwarded message ---------- From: Martin Wilke Date: Wed, Dec 1, 2010 at 8:32 AM Subject: cvs commit: ports/Mk bsd.port.mk To: ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org miwi 2010-12-01 08:32:50 UTC FreeBSD ports repository Modified files: Mk bsd.port.mk Log: - Remove two checks obviated by the removal of _OPTIONSFILE in revision 1.596 [1] - Remove Legacy USE_BISON in bsd.port.mk [2] - Remove Legacy 2004 Hack in bsd.port.mk [3] - CONFLICT handling in has been reworked. There are two new variables in bsd.ports.mk: - CONFLICTS_BUILDS: Check for conflicts prior to build - CONFLICTS_INSTALL: Check for conflicts prior to installation stage The existing CONFLICTS checks for conflicts prior to build and installation stage. Users could defer the conflict check of CONFLICTS_BUILDS and CONFLICTS to the installation stage by using DEFER_CONFLICTS_CHECK. As already possible with CONFLICTS the new conflict checks could be disabled by using DISABLE_CONFLICTS. This patch was submitted by beat@ PR: ports/149670 [1] ports/151806 [2] [3] Subitted by: bf [1] Eitan Adler [2] [3] Revision Changes Path 1.659 +109 -37 ports/Mk/bsd.port.mk From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 07:06:02 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 668C6106566C for ; Wed, 1 Dec 2010 07:06:02 +0000 (UTC) (envelope-from ibdmbk@yahoo.com) Received: from nm7.bullet.mail.sp2.yahoo.com (nm7.bullet.mail.sp2.yahoo.com [98.139.91.77]) by mx1.freebsd.org (Postfix) with SMTP id 424628FC14 for ; Wed, 1 Dec 2010 07:06:02 +0000 (UTC) Received: from [98.139.91.66] by nm7.bullet.mail.sp2.yahoo.com with NNFMP; 01 Dec 2010 06:53:46 -0000 Received: from [98.139.91.50] by tm6.bullet.mail.sp2.yahoo.com with NNFMP; 01 Dec 2010 06:53:46 -0000 Received: from [127.0.0.1] by omp1050.mail.sp2.yahoo.com with NNFMP; 01 Dec 2010 06:53:46 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 520038.37154.bm@omp1050.mail.sp2.yahoo.com Received: (qmail 20926 invoked by uid 60001); 1 Dec 2010 06:53:46 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1291186426; bh=JM6YfnDLUowRriWxcCElH+8TmmB9pA7BrVvGNrNrZpo=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=aaulZSfOLN4iABF2QwhYnNpYhrQlXygeX01DB5P0MUTOYMbe/22ylIYfuaX33i+MUhDzpCyRS4acJQ1ikP2NTojjxqF3MHsi6TwdXZmFg2Y766k9aUg6iTKJ1m7xY2pwUeDUkrZkxXLLClgpK6u7b4CGK/rnL4m7cYsytDRkxVM= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=27yKFfNCjsh1H8xFf/ifs/sN2iSdkChxRztLj6+85c0BQgCLmaXem8c/caOyf5Z3gPs/MucYdj0w56nsKEhoGVZLf+h9jUyB4BLoQy4TeiAdNaRjTQ2RD090gPmdtDYPlzhqMh8ab66R/wZgMd1cqlDPXIxUGNVp5yDPNLYvnoI=; Message-ID: <137508.95194.qm@web45304.mail.sp1.yahoo.com> X-YMail-OSG: 5LCaX4UVM1k9LnCZwjd4UuIEu8fTlTpCCTIX1BJJ1Epwy9N IUN7VspOWEVe1RrQJNZf6mmGjkk7n_pJQwTEGQ3kILl1HBKx3Lcsb2gxNcIU 7.gM19bW6dfeEPaRoju6eeTWH3vR_qDTSE3Qs.NI3o5jll_Yz_5QXDP9YgLy JlyWZzLdcfhYYrmcLag1uK2FK6_ZTFc3KuoWAgMzCwBjHanWLUpqQRe9e7dS Oq8gkv_CuZfmFGcaJOYnO9SB.qJB4cDRze0DHfHSESkOIqs0r5qCgWQQfCIr 76bZO3qIVDRdvPXKPBoqeaf4- Received: from [67.40.255.97] by web45304.mail.sp1.yahoo.com via HTTP; Tue, 30 Nov 2010 22:53:45 PST X-Mailer: YahooMailClassic/11.4.9 YahooMailWebService/0.8.107.285259 Date: Tue, 30 Nov 2010 22:53:45 -0800 (PST) From: M K To: freebsd-ports@freebsd.org MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 01 Dec 2010 12:15:02 +0000 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Port updating instructions and portmaster -a X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 07:06:02 -0000 Hi, As posted to: http://forums.freebsd.org/showthread.php?t=19789 I'd like to express my feedback generally to port maintainers. The upgrade instructions posted in /usr/ports/UPDATING are generally excellent. And they can probably be enhanced to better serve users of your ports. Specifically, Code: portmaster -a or Code: portupgrade -a as a port update instruction is imprecise at best and inadvisable at worst. The command would rebuild all ports for which a newer version exists in the ports tree. However, that includes even ports which do not have a dependency on or any relation at all to your port. And the user may have good reasons for refusing to install the newest version of any port unrelated to yours. In addition, the command may not be entirely sufficient. If a dependent port were to be updated first, before your port, then Code: portmaster -a might not rebuild a dependent port if it were up to date. At the very least a choice of two options would be great. A less specific command of Code: portmaster -a in addition to a more specific command of Code: portmaster -R -r - or the equivalents - would probably be a big help at little cost. And if the former were truly appropriate, then a brief explanation why would help the users better gauge the impact of change. Given the time, the users could pick and choose which ports to update. Keep in mind not everyone has yet acquired expert skill. But multiply those man-hours spent by the hundreds of thousands or millions, and you will probably agree that better and more specific update instructions will save countless hours and best serve your user base. Sincerely, and thanks for your consideration. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 14:42:02 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 025CE1065670 for ; Wed, 1 Dec 2010 14:42:02 +0000 (UTC) (envelope-from ade@FreeBSD.org) Received: from panix.lovett.com (panix.lovett.com [166.84.7.128]) by mx1.freebsd.org (Postfix) with ESMTP id D00FE8FC12 for ; Wed, 1 Dec 2010 14:42:01 +0000 (UTC) Received: from cpe-66-68-128-204.austin.res.rr.com ([66.68.128.204] helo=[172.16.32.150]) by panix.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72 (FreeBSD)) (envelope-from ) id 1PNnse-000DH5-LM; Wed, 01 Dec 2010 14:42:00 +0000 Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Ade Lovett In-Reply-To: <137508.95194.qm@web45304.mail.sp1.yahoo.com> Date: Wed, 1 Dec 2010 08:41:49 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <0C9CF395-EFA7-464A-8EC5-9B2EF549AACD@FreeBSD.org> References: <137508.95194.qm@web45304.mail.sp1.yahoo.com> To: M K X-Mailer: Apple Mail (2.1082) Cc: freebsd-ports Ports Subject: Re: Port updating instructions and portmaster -a X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 14:42:02 -0000 On Dec 01, 2010, at 00:53 , M K wrote: > [major snippage to get to the point] >=20 > Given the time, the users could pick and choose which ports to update. Herein lies the fundamental problem with upgrading ports, particularly = those which affect a large number of other ports, of which I, amongst = others, have a certain degree of understanding. When it comes to testing such updates, they are done in a "clean room" = environment, whether it is a local tinderbox, or a full -exp package = build run. Ports, and those that depend upon them, are built in natural = order (ie: if A depends on B which depends on C, then the build order is = C->B->A) The ports tree contains bugs, naturally. Implicit dependencies where = explicit ones are needed are the most obvious. "Oh, cool, configure = script found so I shall link against it even though you didn't = ask" is a little less common, but prevalent enough. And so the list = continues. As such, the deeper down inside the chain a port is that has been = updated, so the number of combinations and edge cases increases = exponentially to the point where given that cpu time (compiling) is = vastly cheaper than human time (answering "A didn't rebuild because I = had Q, W, but not X"), it is simply easier to pull out the compilation = sledgehammer and say "rebuild everything depending on updated port = " or, in extreme cases, "rebuild _everything_" (I don't think this = has happened yet, but most gettext upgrades, fortunately relatively few = and far between, are pretty close contenders for this). One should also note that whilst the capability exists, via = ${LOCALBASE}/lib/compat/pkg, for old shared libraries to be kept, if you = have ports Q and R, both depending on port V, and via the = pick-and-choose method you choose to update V and one of Q or R, then = Really Bad Things [tm] will start to happen. In an isolated case of >one< end-user picking-and-choosing, then your = approach would be viable with the caveats above. Regretfully, we have = many tens of thousands of end-users, with differing environments, and = thus out of pure simplicity and saving of overall time, = portmaster/portupgrade instructions occasionally come down via UPDATING = in the shape of a really BIG hammer. If someone[tm] could _provably_solve_ this upgrading problem, I'll make = you famous (and take a 2% cut, I'm not greedy) -aDe From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 17:17:28 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1EFDD1065673 for ; Wed, 1 Dec 2010 17:17:28 +0000 (UTC) (envelope-from david@atf4.com) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 50DD68FC1A for ; Wed, 1 Dec 2010 17:17:27 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 7578934D404; Wed, 1 Dec 2010 17:16:52 +0000 (GMT) From: David Southwell ARPS Organization: Photographic Artist To: freebsd-ports@freebsd.org Date: Wed, 1 Dec 2010 17:16:52 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201012011716.52328.david@atf4.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 17:17:28 -0000 File size mismatch error dns1# make clean ===> Cleaning for py26-numpy-1.5.1,1 dns1# make ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for py26-numpy-1.4.1,1 ===> Extracting for py26-numpy-1.5.1,1 => SHA256 Checksum OK for numpy-1.5.1.tar.gz. => SHA256 Checksum mismatch for numpy-ref.pdf. => SHA256 Checksum mismatch for numpy-user.pdf. => SHA256 Checksum OK for amd64/fenv.c?p=203441. => SHA256 Checksum OK for amd64/fenv.h?p=203441. ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for py26-numpy-1.4.1,1 => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://docs.scipy.org/doc/numpy-1.5.x/. fetch: http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested Range Not Satisfiable => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: size mismatch: expected 5865550, actual 7112007 => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/math/py-numpy. *** Error code 1 Stop in /usr/ports/math/py-numpy. *** Error code 1 Stop in /usr/ports/math/py-numpy. dns1# Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 18:02:38 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 648BF1065679 for ; Wed, 1 Dec 2010 18:02:38 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) by mx1.freebsd.org (Postfix) with ESMTP id EA3298FC1D for ; Wed, 1 Dec 2010 18:02:37 +0000 (UTC) Received: from p5791860e.dip.t-dialin.net ([87.145.134.14] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1PNr0f-0005eO-QF; Wed, 01 Dec 2010 19:02:30 +0100 Message-ID: <4CF68DB0.1050603@gwdg.de> Date: Wed, 01 Dec 2010 19:02:24 +0100 From: Rainer Hurling User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; de-DE; rv:1.9.2.12) Gecko/20101029 Thunderbird/3.1.6 MIME-Version: 1.0 To: David Southwell ARPS References: <201012011716.52328.david@atf4.com> In-Reply-To: <201012011716.52328.david@atf4.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - X-Virus-Scanned: (clean) by exiscan+sophie Cc: freebsd-ports@freebsd.org Subject: Re: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 18:02:38 -0000 On 01.12.2010 18:16 (UTC+1), David Southwell ARPS wrote: > File size mismatch error > > dns1# make clean > ===> Cleaning for py26-numpy-1.5.1,1 > dns1# make > ===> License check disabled, port has not defined LICENSE > ===> Found saved configuration for py26-numpy-1.4.1,1 > ===> Extracting for py26-numpy-1.5.1,1 > => SHA256 Checksum OK for numpy-1.5.1.tar.gz. > => SHA256 Checksum mismatch for numpy-ref.pdf. > => SHA256 Checksum mismatch for numpy-user.pdf. > => SHA256 Checksum OK for amd64/fenv.c?p=203441. > => SHA256 Checksum OK for amd64/fenv.h?p=203441. > ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf > ===> License check disabled, port has not defined LICENSE > ===> Found saved configuration for py26-numpy-1.4.1,1 > => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. > => Attempting to fetch from http://docs.scipy.org/doc/numpy-1.5.x/. > fetch: http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested Range > Not Satisfiable > => Attempting to fetch from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: size > mismatch: expected 5865550, actual 7112007 rm /usr/ports/distfiles/numpy-ref.pdf rm /usr/ports/distfiles/numpy-user.pdf Then retry. Hope this helps, Rainer Hurling > => Couldn't fetch it - please try to retrieve this > => port manually into /usr/ports/distfiles/ and try again. > *** Error code 1 > > Stop in /usr/ports/math/py-numpy. > *** Error code 1 > > Stop in /usr/ports/math/py-numpy. > *** Error code 1 > > Stop in /usr/ports/math/py-numpy. > dns1# > Photographic Artist > Permanent Installations& Design > Creative Imagery and Advanced Digital Techniques > High Dynamic Range Photography& Official Portraiture > Combined darkroom& digital creations From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 18:35:15 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3FC11065670 for ; Wed, 1 Dec 2010 18:35:14 +0000 (UTC) (envelope-from david@atf4.com) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 47C948FC1A for ; Wed, 1 Dec 2010 18:35:13 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 51C3134D404; Wed, 1 Dec 2010 18:34:39 +0000 (GMT) From: David Southwell ARPS Organization: Photographic Artist To: Rainer Hurling Date: Wed, 1 Dec 2010 18:34:38 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) References: <201012011716.52328.david@atf4.com> <4CF68DB0.1050603@gwdg.de> In-Reply-To: <4CF68DB0.1050603@gwdg.de> X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201012011834.39251.david@atf4.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 18:35:15 -0000 > On 01.12.2010 18:16 (UTC+1), David Southwell ARPS wrote: > > File size mismatch error > > > > dns1# make clean > > ===> Cleaning for py26-numpy-1.5.1,1 > > dns1# make > > ===> License check disabled, port has not defined LICENSE > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > ===> Extracting for py26-numpy-1.5.1,1 > > => SHA256 Checksum OK for numpy-1.5.1.tar.gz. > > => SHA256 Checksum mismatch for numpy-ref.pdf. > > => SHA256 Checksum mismatch for numpy-user.pdf. > > => SHA256 Checksum OK for amd64/fenv.c?p=203441. > > => SHA256 Checksum OK for amd64/fenv.h?p=203441. > > ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf > > ===> License check disabled, port has not defined LICENSE > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. > > => Attempting to fetch from http://docs.scipy.org/doc/numpy-1.5.x/. > > fetch: http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested > > Range Not Satisfiable > > => Attempting to fetch from > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: > > size mismatch: expected 5865550, actual 7112007 > > rm /usr/ports/distfiles/numpy-ref.pdf > rm /usr/ports/distfiles/numpy-user.pdf > > Then retry. Hope this helps, > Rainer Hurling > Thanks v. much So far (compilation) so good BUT after deinstalling previous version reinstall failed with: dns1# make reinstall ===> Installing for py26-numpy-1.5.1,1 ===> py26-numpy-1.5.1,1 depends on executable: nosetests - found ===> py26-numpy-1.5.1,1 depends on file: /usr/local/bin/python2.6 - found ===> py26-numpy-1.5.1,1 depends on executable: gcc45 - found ===> py26-numpy-1.5.1,1 depends on shared library: lapack.4 - found ===> py26-numpy-1.5.1,1 depends on shared library: blas.2 - found rm: /usr/ports/math/py- numpy/work/numpy-1.5.1/numpy/core/include/numpy/fenv/fenv.c.bak: No such file or directory *** Error code 1 Stop in /usr/ports/math/py-numpy. *** Error code 1 Stop in /usr/ports/math/py-numpy. *** Error code 1 Stop in /usr/ports/math/py-numpy. Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 20:39:26 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9095A1065674 for ; Wed, 1 Dec 2010 20:39:26 +0000 (UTC) (envelope-from peterjeremy@acm.org) Received: from fallbackmx08.syd.optusnet.com.au (fallbackmx08.syd.optusnet.com.au [211.29.132.10]) by mx1.freebsd.org (Postfix) with ESMTP id 1FBAE8FC14 for ; Wed, 1 Dec 2010 20:39:25 +0000 (UTC) Received: from mail34.syd.optusnet.com.au (mail34.syd.optusnet.com.au [211.29.133.218]) by fallbackmx08.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id oB1IDT8a011145 for ; Thu, 2 Dec 2010 05:13:29 +1100 Received: from server.vk2pj.dyndns.org (c220-239-116-103.belrs4.nsw.optusnet.com.au [220.239.116.103]) by mail34.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id oB1IDPG1022429 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 2 Dec 2010 05:13:26 +1100 X-Bogosity: Ham, spamicity=0.000000 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.4/8.14.4) with ESMTP id oB1IDNJo006352; Thu, 2 Dec 2010 05:13:23 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.4/8.14.4/Submit) id oB1IDNP2006351; Thu, 2 Dec 2010 05:13:23 +1100 (EST) (envelope-from peter) Date: Thu, 2 Dec 2010 05:13:23 +1100 From: Peter Jeremy To: =?utf-8?B?0JTQvtC70LPQsNCy0LjQvSDQkNC70LXQutGB0LXQuQ==?= Message-ID: <20101201181323.GA6220@server.vk2pj.dyndns.org> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline In-Reply-To: X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.20 (2009-06-14) Cc: ports@freebsd.org Subject: Re: avant-window-navigator X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 20:39:26 -0000 --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Him On 2010-Nov-30 02:07:39 +0300, =D0=94=D0=BE=D0=BB=D0=B3=D0=B0=D0=B2=D0=B8= =D0=BD =D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9 wrote: >I'm sorry for my question but... when will we have this port >(x11/avant-window-navigator) with 0.4 version? There is no official maintainer for x11/avant-window-navigator (the Makefile shows Maintainer as ports@) which means it's unlikely to be updated. If you are interested in using this port, you might like to submit the update yourself and take over maintainership. --=20 Peter Jeremy --fUYQa+Pmc3FrFX/N Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.15 (FreeBSD) iEYEARECAAYFAkz2kEMACgkQ/opHv/APuIdjnACguaSX0N+AVgzeeuIr3PL4V/G9 o9MAoKvpKjpCXHMqMxT9cB0r4BMYPWMZ =SnQi -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 21:44:13 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABB321065670 for ; Wed, 1 Dec 2010 21:44:13 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3D4988FC0C for ; Wed, 1 Dec 2010 21:44:12 +0000 (UTC) Received: by bwz2 with SMTP id 2so6953567bwz.13 for ; Wed, 01 Dec 2010 13:44:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=qlERgKWY7tHzPIoy2y2l8VbL7eljZ7qHmh6frlG8AN8=; b=lGrVwQVao47urwBakN8USTqfJPN0ZpakZpRJzVtiaCKzWcrtDJRPta74+AUZhX/PES IPgar/Gnv/347sR6KAimOVuFzEupcCvber6tNCR1gZwOyUhkXk18EYtrnK+6YrVAulHa TQlVUz0rcnqrCdTxoBWN3wKG4Vmxn+0MWs11w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=E16RznVbdL6rZefAj1f0yrX5UTubs0+gR1+VrAOfO33etWgEoQNRd7xSLFMqzFubzc NjSdjkB4k13tfnQ22apjlJm4vmgdyjXPg1aX+uTphhjBALOTE1zuZEIK+OXEgwM1oymU quDR3XvQ3cbe3J3pNEp1lQ8QcyhI+ZMArzZwQ= MIME-Version: 1.0 Received: by 10.204.129.210 with SMTP id p18mr9224952bks.85.1291239851980; Wed, 01 Dec 2010 13:44:11 -0800 (PST) Received: by 10.204.127.20 with HTTP; Wed, 1 Dec 2010 13:44:11 -0800 (PST) Date: Wed, 1 Dec 2010 22:44:11 +0100 Message-ID: From: David DEMELIER To: freebsd-ports Content-Type: text/plain; charset=UTF-8 Subject: Broken x11-themes/icons-tango ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 21:44:13 -0000 Hello, I was surprised to see black squares around tango icons, I checked the tango icons and they looks okay. It must be a problem deeper. Perhaps in gtk or in library handling png/svg files ? Take a look at this picture : http://files.malikania.fr/tango-bug.png It's generated on two machines with : $ cat ~/.gtkrc-2.0 gtk-theme-name = "Clearlooks" gtk-font-name = "Dejavu Sans 8" gtk-icon-theme-name = "Tango" Kind regards, -- Demelier David From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 22:03:23 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A23D1065670 for ; Wed, 1 Dec 2010 22:03:23 +0000 (UTC) (envelope-from c-s@c-s.li) Received: from server22.cyon.ch (server22.cyon.ch [194.126.200.32]) by mx1.freebsd.org (Postfix) with ESMTP id DA30A8FC0C for ; Wed, 1 Dec 2010 22:03:22 +0000 (UTC) Received: from [194.230.155.31] (helo=[10.240.97.225]) by server22.cyon.ch with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1PNuNw-000718-VQ for freebsd-ports@freebsd.org; Wed, 01 Dec 2010 22:38:45 +0100 From: C-S To: freebsd-ports@freebsd.org In-Reply-To: <20101201120032.0F2A21065781@hub.freebsd.org> References: <20101201120032.0F2A21065781@hub.freebsd.org> Date: Wed, 01 Dec 2010 22:38:40 +0100 Message-ID: <1291239520.2771.3.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server22.cyon.ch X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - c-s.li Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: FreeBSD Port: otrs-2.4.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 22:03:23 -0000 Actually, it was worth waiting a bit because there was a big bug with generic agent. There has been released a new third release in short time yesterday to fix it finally. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 1 22:31:25 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF726106566C for ; Wed, 1 Dec 2010 22:31:25 +0000 (UTC) (envelope-from lumiwa@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 74EE38FC1C for ; Wed, 1 Dec 2010 22:31:25 +0000 (UTC) Received: by ywp6 with SMTP id 6so3965992ywp.13 for ; Wed, 01 Dec 2010 14:31:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:cc:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=6EoFkpcHeVddLAXbZj4YvbrrG8zeO95iVK2sS+yXflc=; b=GKy/4HngScSX2mGJfGBE6fOgksv1BIZ56J0s1UVaeJVo9R2IUK6w+D0cpsQF/6whzU 94JIPj5bILDQnliON/g94tXXzD3+BcRNScCQ3TaXvERKFt2BX395zkS5aLmV6t42VnxR MF1Rhgi06IuUF8KCY1V7fH7Nl+PavYXS6yAdg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id; b=eKZmaoPRf/w6qy2ph4UYg6M8tHnCDTNODmtFcQsn0K5cdLZHMIIZA9uDMAHhDYNOB6 iEmuU68TroCm8x0TK4lncmNlBPavFUDnEs0A77HfrTPMqU4W8iQ/D0SiG307GQewje8m pbtVFJfmd+LgP7zEcLa0zoK5MbR2zzYqHYHuQ= Received: by 10.151.79.18 with SMTP id g18mr90564ybl.209.1291242684440; Wed, 01 Dec 2010 14:31:24 -0800 (PST) Received: from athena.wi.rr.com (cpe-184-58-138-79.wi.res.rr.com [184.58.138.79]) by mx.google.com with ESMTPS id l55sm290627yhd.35.2010.12.01.14.31.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 01 Dec 2010 14:31:23 -0800 (PST) From: ajtiM To: freebsd-ports@freebsd.org Date: Wed, 1 Dec 2010 16:31:16 -0600 User-Agent: KMail/1.13.5 (FreeBSD/8.1-RELEASE; KDE/4.5.3; i386; ; ) References: <201012011716.52328.david@atf4.com> <4CF68DB0.1050603@gwdg.de> <201012011834.39251.david@atf4.com> In-Reply-To: <201012011834.39251.david@atf4.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201012011631.17172.lumiwa@gmail.com> Cc: David Southwell ARPS , Rainer Hurling Subject: Re: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Dec 2010 22:31:25 -0000 On Wednesday 01 December 2010 12:34:38 David Southwell ARPS wrote: > > On 01.12.2010 18:16 (UTC+1), David Southwell ARPS wrote: > > > File size mismatch error > > > > > > dns1# make clean > > > ===> Cleaning for py26-numpy-1.5.1,1 > > > dns1# make > > > ===> License check disabled, port has not defined LICENSE > > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > > ===> Extracting for py26-numpy-1.5.1,1 > > > => SHA256 Checksum OK for numpy-1.5.1.tar.gz. > > > => SHA256 Checksum mismatch for numpy-ref.pdf. > > > => SHA256 Checksum mismatch for numpy-user.pdf. > > > => SHA256 Checksum OK for amd64/fenv.c?p=203441. > > > => SHA256 Checksum OK for amd64/fenv.h?p=203441. > > > ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf > > > ===> License check disabled, port has not defined LICENSE > > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > > => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. > > > => Attempting to fetch from http://docs.scipy.org/doc/numpy-1.5.x/. > > > fetch: http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested > > > Range Not Satisfiable > > > => Attempting to fetch from > > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > > > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: > > > size mismatch: expected 5865550, actual 7112007 > > > > rm /usr/ports/distfiles/numpy-ref.pdf > > rm /usr/ports/distfiles/numpy-user.pdf > > > > Then retry. Hope this helps, > > Rainer Hurling > > Thanks v. much > So far (compilation) so good BUT after deinstalling previous version > reinstall failed with: > > dns1# make reinstall > ===> Installing for py26-numpy-1.5.1,1 > ===> py26-numpy-1.5.1,1 depends on executable: nosetests - found > ===> py26-numpy-1.5.1,1 depends on file: /usr/local/bin/python2.6 - found > ===> py26-numpy-1.5.1,1 depends on executable: gcc45 - found > ===> py26-numpy-1.5.1,1 depends on shared library: lapack.4 - found > ===> py26-numpy-1.5.1,1 depends on shared library: blas.2 - found > rm: /usr/ports/math/py- > numpy/work/numpy-1.5.1/numpy/core/include/numpy/fenv/fenv.c.bak: No such > file or directory > *** Error code 1 > > Stop in /usr/ports/math/py-numpy. > *** Error code 1 > > Stop in /usr/ports/math/py-numpy. > *** Error code 1 > > Stop in /usr/ports/math/py-numpy. > > > Photographic Artist > Permanent Installations & Design > Creative Imagery and Advanced Digital Techniques > High Dynamic Range Photography & Official Portraiture > Combined darkroom & digital creations > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" I ahd the same problem as you and after > rm /usr/ports/distfiles/numpy-ref.pdf >rm /usr/ports/distfiles/numpy-user.pdf I use portmaster for update and it works without problem. Mitja -------- http://jpgmag.com/people/lumiwa From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 00:11:43 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEAFA1065674 for ; Thu, 2 Dec 2010 00:11:43 +0000 (UTC) (envelope-from jpg@griffin.gnix.co.uk) Received: from griffin.gnix.co.uk (griffin.gnix.co.uk [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id 863818FC0A for ; Thu, 2 Dec 2010 00:11:43 +0000 (UTC) Received: from snow.gnix.co.uk (unknown [80.229.5.32]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by griffin.gnix.co.uk (Postfix) with ESMTPSA id D7EAD391C7 for ; Wed, 1 Dec 2010 23:53:45 +0000 (GMT) Date: Wed, 1 Dec 2010 23:54:11 +0000 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20101201235410.GA1466@snow.gnix.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-PGP-Key: http://gnix.co.uk/jpg-pubkey.asc X-URL: http://gnix.co.uk/ User-Agent: Mutt/1.5.20 (2009-06-14) Subject: www/firefox & mail/thunderbird fail to build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 00:11:43 -0000 Hello everyone Installed my FreeBSD 8.1 system last night. Trying to build firefox and thunderbird and both fail when compiling the same component. I've put a screenshot on the net: http://gnix.co.uk/code.html I was wondering if anyone else had experienced this and if so if and how they fixed it. Cheers, Jamie. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 05:18:35 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BE35E106567A for ; Thu, 2 Dec 2010 05:18:35 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 946848FC0C for ; Thu, 2 Dec 2010 05:18:34 +0000 (UTC) Received: by iwn39 with SMTP id 39so9338807iwn.13 for ; Wed, 01 Dec 2010 21:18:34 -0800 (PST) Received: by 10.231.17.4 with SMTP id q4mr10048346iba.119.1291267114404; Wed, 01 Dec 2010 21:18:34 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.79.82 with HTTP; Wed, 1 Dec 2010 21:18:14 -0800 (PST) From: Eitan Adler Date: Thu, 2 Dec 2010 00:18:14 -0500 Message-ID: To: freebsd ports Content-Type: text/plain; charset=UTF-8 Subject: updated dialog(1) replacement for ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 05:18:35 -0000 I've been working on a dialog(1) replacement as used in the ports system. The goal is to replace both the options and the license screen with a single binary. It also features long descriptions, mutually exclusive options, and some other nice features. The source code be found here along with some testing scripts. http://isis.poly.edu/~eitan/files/d4p-v16.tgz If you want to follow development: hg clone http://dialog4ports.googlecode.com/hg/ dialog4ports I will be adapting a recent patch from bapt@ to integrate this ports system soon and send it to the list. If anyone has any questions, concerns, or code reviews please let me know. -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 06:15:43 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2543210656A7 for ; Thu, 2 Dec 2010 06:15:43 +0000 (UTC) (envelope-from armin@frozen-zone.org) Received: from mailbackup.inode.at (mailbackup.inode.at [213.229.60.24]) by mx1.freebsd.org (Postfix) with ESMTP id D54E58FC1C for ; Thu, 2 Dec 2010 06:15:42 +0000 (UTC) Received: from [62.99.145.5] (port=64431 helo=mx.inode.at) by mailbackup.inode.at with esmtp (Exim 4.67) (envelope-from ) id 1PO22f-0001Ag-GI; Thu, 02 Dec 2010 06:49:17 +0100 Received: from [84.119.26.126] (port=11657 helo=fz-sub1.local) by smartmx-05.inode.at with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1PO22T-0005z9-Dl; Thu, 02 Dec 2010 06:49:05 +0100 Message-ID: <4CF7334F.7010002@frozen-zone.org> Date: Thu, 02 Dec 2010 06:49:03 +0100 From: Armin Pirkovitsch User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.12) Gecko/20101030 Thunderbird/3.1.6 MIME-Version: 1.0 To: Jamie Paul Griffin References: <20101201235410.GA1466@snow.gnix.co.uk> In-Reply-To: <20101201235410.GA1466@snow.gnix.co.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: www/firefox & mail/thunderbird fail to build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 06:15:43 -0000 Hi! In most cases the version of the port is quiet helpful to determine whether the problem already has been fixed. FreeBSD 8.1 was released quiet some time ago - if you haven't updated your ports tree yet it might be a good start to see if the problem still exists in the most recent version of the port. Armin On 12/02/10 00:54, Jamie Paul Griffin wrote: > Hello everyone > > Installed my FreeBSD 8.1 system last night. Trying to build firefox and thunderbird and both fail when compiling the same component. I've put a screenshot on the net: http://gnix.co.uk/code.html > > I was wondering if anyone else had experienced this and if so if and how they fixed it. > > Cheers, Jamie. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://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 2 07:32:33 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6F011065674 for ; Thu, 2 Dec 2010 07:32:33 +0000 (UTC) (envelope-from glimp@live.com) Received: from blu0-omc2-s27.blu0.hotmail.com (blu0-omc2-s27.blu0.hotmail.com [65.55.111.102]) by mx1.freebsd.org (Postfix) with ESMTP id 7D49C8FC0C for ; Thu, 2 Dec 2010 07:32:33 +0000 (UTC) Received: from BLU0-SMTP111 ([65.55.111.72]) by blu0-omc2-s27.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Wed, 1 Dec 2010 23:20:31 -0800 X-Originating-IP: [151.49.235.26] X-Originating-Email: [glimp@live.com] Message-ID: Received: from genki.collidiamo.net ([151.49.235.26]) by BLU0-SMTP111.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Wed, 1 Dec 2010 23:20:31 -0800 Date: Thu, 2 Dec 2010 08:17:59 +0100 From: dan User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.12) Gecko/20101101 Thunderbird/3.1.6 MIME-Version: 1.0 To: Jamie Paul Griffin References: <20101201235410.GA1466@snow.gnix.co.uk> In-Reply-To: <20101201235410.GA1466@snow.gnix.co.uk> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 02 Dec 2010 07:20:31.0460 (UTC) FILETIME=[6730FA40:01CB91F1] Cc: freebsd-ports@freebsd.org Subject: Re: www/firefox & mail/thunderbird fail to build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 07:32:33 -0000 On 12/02/2010 00:54, Jamie Paul Griffin wrote: > Hello everyone > > Installed my FreeBSD 8.1 system last night. Trying to build firefox and thunderbird and both fail when compiling the same component. I've put a screenshot on the net: http://gnix.co.uk/code.html > > I was wondering if anyone else had experienced this and if so if and how they fixed it. > > Cheers, Jamie. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > Hello, I suppose the system on which the port is being compiled on is low in swap space. Try to disable compiler optimizations (make config). Here's a similar (same ?) problem http://lists.freebsd.org/pipermail/freebsd-gecko/2010-February/000682.html With a workaround, probably no longer valid/adequate http://lists.freebsd.org/pipermail/freebsd-gecko/2010-February/000692.html d From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 11:53:52 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16C0B1065673; Thu, 2 Dec 2010 11:53:52 +0000 (UTC) (envelope-from olivier@gid0.org) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id D51388FC1C; Thu, 2 Dec 2010 11:53:51 +0000 (UTC) Received: by iwn39 with SMTP id 39so9707840iwn.13 for ; Thu, 02 Dec 2010 03:53:51 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.19.74 with SMTP id z10mr51775iba.120.1291289068020; Thu, 02 Dec 2010 03:24:28 -0800 (PST) Received: by 10.231.172.202 with HTTP; Thu, 2 Dec 2010 03:24:27 -0800 (PST) Date: Thu, 2 Dec 2010 12:24:27 +0100 Message-ID: From: Olivier Smedts To: brooks@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org Subject: update of security/pssh X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 11:53:52 -0000 Hello, According to : http://www.theether.org/pssh/ parallel-ssh (pssh) is now maintained on http://code.google.com/p/parallel-ssh/ by Andrew McNabb. Current version is 2.1.1. Would you have time to look into a maintainer-update ? Cheers, Olivier --=20 Olivier Smedts=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0=A0 _ =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0= =A0 ASCII ribbon campaign ( ) e-mail: olivier@gid0.org=A0 =A0 =A0 =A0 - against HTML email & vCards=A0 X www: http://www.gid0.org=A0 =A0 - against proprietary attachments / \ =A0 "Il y a seulement 10 sortes de gens dans le monde : =A0 ceux qui comprennent le binaire, =A0 et ceux qui ne le comprennent pas." From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 13:12:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7982C1065696 for ; Thu, 2 Dec 2010 13:12:46 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.server1.bsdforen.de (bsdforen.de [82.193.243.81]) by mx1.freebsd.org (Postfix) with ESMTP id 3DDAB8FC13 for ; Thu, 2 Dec 2010 13:12:45 +0000 (UTC) Received: from mobileKamikaze.norad (vpn-cl-162-56.rz.uni-karlsruhe.de [141.3.162.56]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.server1.bsdforen.de (Postfix) with ESMTPSA id 057997E92D for ; Thu, 2 Dec 2010 14:12:44 +0100 (CET) Message-ID: <4CF79B4C.2080201@bsdforen.de> Date: Thu, 02 Dec 2010 14:12:44 +0100 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.15) Gecko/20101028 Thunderbird/3.0.10 MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: confused build_depends X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 13:12:46 -0000 # cd /usr/ports/net/wireshark # make -VBUILD_DEPENDS /usr/local/lib/libcrypto.so.8:/usr/ports/cad/linux-eagle5 ... Well, eagle5 does not install the file libcrypto.so.8, thus it doesn't exist and the ports system will try to install linux-eagle5 when building wireshark. Of course linux-eagle5 is already installed, thus it will fail. If I remove linux-eagle5 the dependency works: # make -VBUILD_DEPENDS /usr/local/lib/libcrypto.so.7:/usr/ports/security/openssl ... But why does the ports system think linux-eagle installs this library? # pkg_info -Lx eagle|grep crypto /compat/linux/lib/libcrypto.so.0.9.8 The file is a symlink and has a distinctively different version number. Regards -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 13:37:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FD09106564A for ; Thu, 2 Dec 2010 13:37:46 +0000 (UTC) (envelope-from jpg@griffin.gnix.co.uk) Received: from griffin.gnix.co.uk (griffin.gnix.co.uk [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id E8C468FC08 for ; Thu, 2 Dec 2010 13:37:45 +0000 (UTC) Received: from snow.gnix.co.uk (unknown [80.229.5.32]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by griffin.gnix.co.uk (Postfix) with ESMTPSA id DA37C391C7 for ; Thu, 2 Dec 2010 13:37:15 +0000 (GMT) Date: Thu, 2 Dec 2010 13:37:43 +0000 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20101202133742.GA1825@snow.gnix.co.uk> References: <20101201235410.GA1466@snow.gnix.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-PGP-Key: http://gnix.co.uk/jpg-pubkey.asc X-URL: http://gnix.co.uk/ User-Agent: Mutt/1.5.20 (2009-06-14) Subject: Re: www/firefox & mail/thunderbird fail to build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 13:37:46 -0000 > Hello, > > I suppose the system on which the port is being compiled on is low > in swap space. > > Try to disable compiler optimizations (make config). > > Here's a similar (same ?) problem > > http://lists.freebsd.org/pipermail/freebsd-gecko/2010-February/000682.html > > With a workaround, probably no longer valid/adequate > > http://lists.freebsd.org/pipermail/freebsd-gecko/2010-February/000692.html > > d Hi Dan thanks for the link and your suggestion. `make config` and de-selecting the Additional Optimizations flag has enabled me to build Firefox; just done the same for Thunderbird so I think that will be alright too although it is still building now. Best wishes, Jamie for the archives: www/firefox == firefox-3.6.12 FreeBSD 8.1 i386 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 14:38:51 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A84A11065675 for ; Thu, 2 Dec 2010 14:38:51 +0000 (UTC) (envelope-from david@atf4.com) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 288608FC0A for ; Thu, 2 Dec 2010 14:38:49 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 72D9234D41D; Thu, 2 Dec 2010 14:38:13 +0000 (GMT) From: David Southwell ARPS Organization: Photographic Artist To: freebsd-ports@freebsd.org Date: Thu, 2 Dec 2010 14:38:12 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) References: <201012011716.52328.david@atf4.com> <201012011834.39251.david@atf4.com> <201012011631.17172.lumiwa@gmail.com> In-Reply-To: <201012011631.17172.lumiwa@gmail.com> X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201012021438.13342.david@atf4.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Rainer Hurling , ajtiM Subject: Re: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 14:38:51 -0000 > On Wednesday 01 December 2010 12:34:38 David Southwell ARPS wrote: > > > On 01.12.2010 18:16 (UTC+1), David Southwell ARPS wrote: > > > > File size mismatch error > > > > > > > > dns1# make clean > > > > ===> Cleaning for py26-numpy-1.5.1,1 > > > > dns1# make > > > > ===> License check disabled, port has not defined LICENSE > > > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > > > ===> Extracting for py26-numpy-1.5.1,1 > > > > => SHA256 Checksum OK for numpy-1.5.1.tar.gz. > > > > => SHA256 Checksum mismatch for numpy-ref.pdf. > > > > => SHA256 Checksum mismatch for numpy-user.pdf. > > > > => SHA256 Checksum OK for amd64/fenv.c?p=203441. > > > > => SHA256 Checksum OK for amd64/fenv.h?p=203441. > > > > ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf > > > > ===> License check disabled, port has not defined LICENSE > > > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > > > => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. > > > > => Attempting to fetch from http://docs.scipy.org/doc/numpy-1.5.x/. > > > > fetch: http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested > > > > Range Not Satisfiable > > > > => Attempting to fetch from > > > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > > > > fetch: > > > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: > > > > size mismatch: expected 5865550, actual 7112007 > > > > > > rm /usr/ports/distfiles/numpy-ref.pdf > > > rm /usr/ports/distfiles/numpy-user.pdf > > > > > > Then retry. Hope this helps, > > > Rainer Hurling > > > > Thanks v. much > > So far (compilation) so good BUT after deinstalling previous version > > reinstall failed with: > > > > dns1# make reinstall > > ===> Installing for py26-numpy-1.5.1,1 > > ===> py26-numpy-1.5.1,1 depends on executable: nosetests - found > > ===> py26-numpy-1.5.1,1 depends on file: /usr/local/bin/python2.6 - > > found ===> py26-numpy-1.5.1,1 depends on executable: gcc45 - found > > ===> py26-numpy-1.5.1,1 depends on shared library: lapack.4 - found > > ===> py26-numpy-1.5.1,1 depends on shared library: blas.2 - found > > rm: /usr/ports/math/py- > > numpy/work/numpy-1.5.1/numpy/core/include/numpy/fenv/fenv.c.bak: No such > > file or directory > > *** Error code 1 > > > > Stop in /usr/ports/math/py-numpy. > > *** Error code 1 > > > > Stop in /usr/ports/math/py-numpy. > > *** Error code 1 > > > > Stop in /usr/ports/math/py-numpy. > > > > > > Photographic Artist > > Permanent Installations & Design > > Creative Imagery and Advanced Digital Techniques > > High Dynamic Range Photography & Official Portraiture > > Combined darkroom & digital creations > > _______________________________________________ > > freebsd-ports@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > I ahd the same problem as you and after > > > rm /usr/ports/distfiles/numpy-ref.pdf > > > >rm /usr/ports/distfiles/numpy-user.pdf > > I use portmaster for update and it works without problem. > > > Mitja > -------- > http://jpgmag.com/people/lumiwa What version of freebsd are you using? I am on 7.2 p3 running rm for numy-ref.pdf & numpy-user.pdf enabled compilation but not install failed. It has nothing to do with whether one uses portmaster or portupgrade. David Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 15:52:46 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE9CD1065674 for ; Thu, 2 Dec 2010 15:52:46 +0000 (UTC) (envelope-from glimp@live.com) Received: from blu0-omc2-s17.blu0.hotmail.com (blu0-omc2-s17.blu0.hotmail.com [65.55.111.92]) by mx1.freebsd.org (Postfix) with ESMTP id 74B498FC19 for ; Thu, 2 Dec 2010 15:52:46 +0000 (UTC) Received: from BLU0-SMTP195 ([65.55.111.72]) by blu0-omc2-s17.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 2 Dec 2010 07:52:45 -0800 X-Originating-IP: [151.49.235.26] X-Originating-Email: [glimp@live.com] Message-ID: Received: from genki.collidiamo.net ([151.49.235.26]) by BLU0-SMTP195.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 2 Dec 2010 07:52:44 -0800 Date: Thu, 2 Dec 2010 16:49:58 +0100 From: dan User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.12) Gecko/20101101 Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20101201235410.GA1466@snow.gnix.co.uk> <20101202133742.GA1825@snow.gnix.co.uk> In-Reply-To: <20101202133742.GA1825@snow.gnix.co.uk> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 02 Dec 2010 15:52:44.0740 (UTC) FILETIME=[F5A75840:01CB9238] Subject: Re: www/firefox & mail/thunderbird fail to build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 15:52:46 -0000 On 12/02/2010 14:37, Jamie Paul Griffin wrote: >> Hello, >> >> I suppose the system on which the port is being compiled on is low >> in swap space. >> >> Try to disable compiler optimizations (make config). >> >> Here's a similar (same ?) problem >> >> http://lists.freebsd.org/pipermail/freebsd-gecko/2010-February/000682.html >> >> With a workaround, probably no longer valid/adequate >> >> http://lists.freebsd.org/pipermail/freebsd-gecko/2010-February/000692.html >> >> d > > Hi Dan > > thanks for the link and your suggestion. `make config` and de-selecting the Additional Optimizations flag has enabled me to build Firefox; just done the same for Thunderbird so I think that will be alright too although it is still building now. > > Best wishes, Jamie > You're welcome :-) d From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 16:06:22 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBD921065698 for ; Thu, 2 Dec 2010 16:06:22 +0000 (UTC) (envelope-from sterling@camdensoftware.com) Received: from wh2.interactivevillages.com (wh2.interactivevillages.com [75.125.250.34]) by mx1.freebsd.org (Postfix) with ESMTP id 913CC8FC1A for ; Thu, 2 Dec 2010 16:06:22 +0000 (UTC) Received: from 174-21-106-20.tukw.qwest.net ([174.21.106.20] helo=_HOSTNAME_) by wh2.interactivevillages.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1POCTn-0007Fs-Eb for freebsd-ports@freebsd.org; Thu, 02 Dec 2010 08:58:00 -0800 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Thu, 02 Dec 2010 08:06:17 -0800 Date: Thu, 2 Dec 2010 08:06:17 -0800 From: Chip Camden To: freebsd ports Message-ID: <20101202160617.GD83341@libertas.local.camdensoftware.com> Mail-Followup-To: freebsd ports References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qGV0fN9tzfkG3CxV" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Company: Camden Software Consulting URL: http://camdensoftware.com X-PGP-Key: http://pgp.mit.edu:11371/pks/lookup?search=0xD6DBAF91 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - wh2.interactivevillages.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - camdensoftware.com Subject: Re: updated dialog(1) replacement for ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 16:06:22 -0000 --qGV0fN9tzfkG3CxV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Quoth Eitan Adler on Thursday, 02 December 2010: > I've been working on a dialog(1) replacement as used in the ports system. > The goal is to replace both the options and the license screen with a > single binary. It also features long descriptions, mutually exclusive > options, and some other nice features. >=20 > The source code be found here along with some testing scripts. > http://isis.poly.edu/~eitan/files/d4p-v16.tgz >=20 > If you want to follow development: > hg clone http://dialog4ports.googlecode.com/hg/ dialog4ports >=20 > I will be adapting a recent patch from bapt@ to integrate this ports > system soon and send it to the list. >=20 > If anyone has any questions, concerns, or code reviews please let me know. >=20 > --=20 > Eitan Adler > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" Every keystroke causes the screen to completely repaint. If I accidentally leave off --port name, it core dumps. --=20 Sterling (Chip) Camden | sterling@camdensoftware.com | 2048D/3A978E4F http://camdensoftware.com | http://chipstips.com | http://chipsquips= .com --qGV0fN9tzfkG3CxV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iQEcBAEBAgAGBQJM98P5AAoJEIpckszW26+RXOkIAKoBa600jiOW+HXEXcUCBpHS ZZMngnZJHbyf4GE3GF4SZZR9fkwpaBET08JKcufAccppilRnMt9IGY2klEmFMKbq 9YME3KoILaeFINFdfOmpT1kwEh+JQi39DS5jdnfdnKxUjQMI2kYRwTHxYZ5Unv3M PBlPt+s3XL6BXu+ZFJzmqPFe1Bs1maiyaC0FkBAYJdPJBM464+dVLyAUjXgf7MXQ uBJo4ySSqZ7RgjON/TXfWDpYVUpxMkJulBVkVtuKgkJEEeL2pr/zZ8G1nmko3a4Y Z8YTZSanAjZV1NrkKNQUokdZqZmmfT5oHjGbARmpppUwPe9eSJW2Z0zuyi1y1uQ= =sJMR -----END PGP SIGNATURE----- --qGV0fN9tzfkG3CxV-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 17:00:18 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78E70106567A for ; Thu, 2 Dec 2010 17:00:18 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 49EF38FC13 for ; Thu, 2 Dec 2010 17:00:05 +0000 (UTC) Received: by iwn39 with SMTP id 39so10015777iwn.13 for ; Thu, 02 Dec 2010 09:00:05 -0800 (PST) Received: by 10.231.13.136 with SMTP id c8mr510748iba.19.1291309205088; Thu, 02 Dec 2010 09:00:05 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.79.82 with HTTP; Thu, 2 Dec 2010 08:59:44 -0800 (PST) In-Reply-To: <20101202160617.GD83341@libertas.local.camdensoftware.com> References: <20101202160617.GD83341@libertas.local.camdensoftware.com> From: Eitan Adler Date: Thu, 2 Dec 2010 11:59:44 -0500 Message-ID: To: freebsd ports Content-Type: text/plain; charset=UTF-8 Subject: Re: updated dialog(1) replacement for ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 17:00:18 -0000 Thank you for your comments > Every keystroke causes the screen to completely repaint. This can't be fully helped. Any valid key stroke is going to cause this. However I did make invalid keystrokes skip the repainting. > If I accidentally leave off --port name, it core dumps. Heh - I didn't test usage mistakes very well because its intended to be handled by the ports system, not the end user. Attached patch does fix it though: diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -11,3 +11,4 @@ 87f7ea83a8b57330e68a3c955204b7ae18f72225 3c192430abada995516ba1f949482b419affab98 version13 c12889c6ed8bdcb0085a4c5f40dc6b9fa749f29a version14 49685446bbb2cb7f9f437ff857d1cf4e87dc05e7 version15 +71c308f419475f9ccbbacd9ffd08b60dc88ca646 version16 diff --git a/dialog4ports.c b/dialog4ports.c --- a/dialog4ports.c +++ b/dialog4ports.c @@ -395,6 +395,9 @@ parseArguments(const int argc, char * ar } #endif + if (arginfo->portname == NULL) + errx(EX_USAGE,"Port name is required"); + if (arginfo->nElements == 0) errx(EX_USAGE,"We need at least one option"); @@ -442,14 +445,15 @@ printFileToWindow(WINDOW * const win, co */ void usage(void) { - fprintf(stderr,"%s\n%s\n%s\n%s\n%s\n%s\n%s\n", + fprintf(stderr,"%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n", "--port portname", "[--port-comment 'port comment']", "[--licence name of default licence]", "[--licence-text filename of licence]", "--option optionName=description [--hfile filename]", "--radio optionName=description=option1#option2 [--hfile filename]", - "--input optionName=description [--hfile filename]" + "--input optionName=description [--hfile filename]", + "please note that this program is intended to be used by the ports system - not the end user" ); } @@ -879,6 +883,8 @@ main(int argc, char* argv[]) case 27: /* ESCAPE */ weWantMore = false; break; + default: + continue; } /* this rereads the file each time. perhaps it could be cached? -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 17:58:38 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB0A410656AE for ; Thu, 2 Dec 2010 17:58:38 +0000 (UTC) (envelope-from sterling@camdensoftware.com) Received: from wh2.interactivevillages.com (wh2.interactivevillages.com [75.125.250.34]) by mx1.freebsd.org (Postfix) with ESMTP id AF8848FC12 for ; Thu, 2 Dec 2010 17:58:38 +0000 (UTC) Received: from 174-21-106-20.tukw.qwest.net ([174.21.106.20] helo=_HOSTNAME_) by wh2.interactivevillages.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1POEER-0001up-9B for freebsd-ports@freebsd.org; Thu, 02 Dec 2010 10:50:16 -0800 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Thu, 02 Dec 2010 09:58:33 -0800 Date: Thu, 2 Dec 2010 09:58:33 -0800 From: Chip Camden To: freebsd ports Message-ID: <20101202175833.GG83341@libertas.local.camdensoftware.com> Mail-Followup-To: freebsd ports References: <20101202160617.GD83341@libertas.local.camdensoftware.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cyV/sMl4KAhiehtf" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Company: Camden Software Consulting URL: http://camdensoftware.com X-PGP-Key: http://pgp.mit.edu:11371/pks/lookup?search=0xD6DBAF91 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - wh2.interactivevillages.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - camdensoftware.com Subject: Re: updated dialog(1) replacement for ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 17:58:39 -0000 --cyV/sMl4KAhiehtf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Quoth Eitan Adler on Thursday, 02 December 2010: > Thank you for your comments >=20 > > Every keystroke causes the screen to completely repaint. > This can't be fully helped. Any valid key stroke is going to cause > this. However I did make invalid keystrokes skip the repainting. Ugh -- I haven't looked at the code yet, but even back in the curses days (pre-ncurses) this problem had already been solved. >=20 > > If I accidentally leave off --port name, it core dumps. > Heh - I didn't test usage mistakes very well because its intended to > be handled by the ports system, not the end user. Attached patch does > fix it though: >=20 Heh -- sorry, I always begin my tests in "stupid user" mode. Thanks for the patch! --=20 Sterling (Chip) Camden | sterling@camdensoftware.com | 2048D/3A978E4F http://camdensoftware.com | http://chipstips.com | http://chipsquips= .com --cyV/sMl4KAhiehtf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iQEcBAEBAgAGBQJM995JAAoJEIpckszW26+RY+4IAI/hRENp5lI+gvALwBbA1whT 7tvwjZUdHPbgMB03z6Z3FI9zHs3IFQkVV+AZEuM1bHw57q/l8pF04MQVPpwDGYL5 rGLBlqflUIOa5mlVBh1UN/22HRmlEG5WcAPWa6DPBrilGwkcnMNINTV7EZ6cXu6S GMJIaEtx8GwU5FRpkKCaYHCZdXH8YLt1KLOzW6uYiB97MuQmtvLyw0BCG/2BbJUf C/ZRaPOuWAVqUrCHI9GHkzEcql30ejKy1f38+uKnJpu6obPAm1vXAmJJiFJGl9Ek A0jcO6/6MWbwXugNT5vhrhNxfsnGp9cxM3Ga0I2puTDgxtHq51QPRXj3hNF/sy8= =KimB -----END PGP SIGNATURE----- --cyV/sMl4KAhiehtf-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 18:48:18 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A92710656A8 for ; Thu, 2 Dec 2010 18:48:18 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from u18-124.dslaccess.de (unknown [194.231.39.124]) by mx1.freebsd.org (Postfix) with ESMTP id 0A6188FC0C for ; Thu, 2 Dec 2010 18:48:18 +0000 (UTC) Received: from [172.20.1.100] (unknown [172.20.1.100]) by u18-124.dslaccess.de (Postfix) with ESMTPSA id 83A6120513 for ; Thu, 2 Dec 2010 19:48:15 +0100 (CET) Message-ID: <4CF7EA49.2090705@FreeBSD.org> Date: Thu, 02 Dec 2010 19:49:45 +0100 From: Olli Hauer User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <4CF79B4C.2080201@bsdforen.de> In-Reply-To: <4CF79B4C.2080201@bsdforen.de> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: confused build_depends X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ohauer@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 18:48:18 -0000 On 2010-12-02 14:12, Dominic Fandrey wrote: > # cd /usr/ports/net/wireshark > # make -VBUILD_DEPENDS > /usr/local/lib/libcrypto.so.8:/usr/ports/cad/linux-eagle5 ... > > Well, eagle5 does not install the file libcrypto.so.8, thus it > doesn't exist and the ports system will try to install linux-eagle5 > when building wireshark. Of course linux-eagle5 is already installed, > thus it will fail. > > If I remove linux-eagle5 the dependency works: > # make -VBUILD_DEPENDS > /usr/local/lib/libcrypto.so.7:/usr/ports/security/openssl ... > > But why does the ports system think linux-eagle installs this library? > # pkg_info -Lx eagle|grep crypto > /compat/linux/lib/libcrypto.so.0.9.8 > > The file is a symlink and has a distinctively different version > number. Are you sure you are in the wireshark port? I cannot find a reference to linux-eagle5, even in older versions. http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/wireshark/Makefile?annotate=1.161 # cd /usr/ports/net/wireshark # grep FreeBSD: Makefile $FreeBSD: ports/net/wireshark/Makefile,v 1.161 2010/11/28 08:57:05 marcus Exp $ # make -V BUILD_DEPENDS | tr -s ' ' '\n' | sort /usr/local/bin/intltool-extract:/usr/ports/textproc/intltool /usr/local/bin/perl5.10.1:/usr/ports/lang/perl5.10 /usr/local/bin/python2.6:/usr/ports/lang/python26 /usr/local/libdata/pkgconfig/x11.pc:/usr/ports/x11/libX11 gmake:/usr/ports/devel/gmake pkg-config:/usr/ports/devel/pkg-config # make -V RUN_DEPENDS | tr -s ' ' '\n' | sort /usr/local/lib/gio/modules/libgiofam.so:/usr/ports/devel/gio-fam-backend /usr/local/libdata/pkgconfig/x11.pc:/usr/ports/x11/libX11 pkg-config:/usr/ports/devel/pkg-config Maybe the following bring in some light. # make showconfig # make -d A -VBUILD_DEPENDS From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 20:09:53 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08B8A1065695 for ; Thu, 2 Dec 2010 20:09:53 +0000 (UTC) (envelope-from srmbesthealth@p3nlhg268.shr.prod.phx3.secureserver.net) Received: from p3nlsmtp02.shr.prod.phx3.secureserver.net (p3nlsmtp02.shr.prod.phx3.secureserver.net [72.167.234.226]) by mx1.freebsd.org (Postfix) with SMTP id A67788FC1A for ; Thu, 2 Dec 2010 20:09:52 +0000 (UTC) Received: (qmail 23586 invoked from network); 2 Dec 2010 19:43:12 -0000 Received: from unknown (HELO p3nlhg268.shr.prod.phx3.secureserver.net) ([173.201.196.61]) (envelope-sender ) by p3nlsmtp02.shr.prod.phx3.secureserver.net (qmail-ldap-1.03) with SMTP for ; 2 Dec 2010 19:43:12 -0000 Received: from p3nlhg268.shr.prod.phx3.secureserver.net (localhost.localdomain [127.0.0.1]) by p3nlhg268.shr.prod.phx3.secureserver.net (8.13.8/8.12.11) with ESMTP id oB2Jh9cJ015437 for ; Thu, 2 Dec 2010 12:43:09 -0700 Received: (from srmbesthealth@localhost) by p3nlhg268.shr.prod.phx3.secureserver.net (8.13.8/8.12.11/Submit) id oB2Jh9MY015431; Thu, 2 Dec 2010 12:43:09 -0700 To: freebsd-ports@freebsd.org Date: Thu, 2 Dec 2010 12:43:08 -0700 From: Preeti Message-ID: <5023fd95adc8756003a068b2932bb8d5@netroutex.com> X-Priority: 3 X-Mailer: PHPMailer (phpmailer.codeworxtech.com) [version 2.3] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="iso-8859-1" Subject: Looking for a JOB? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 20:09:53 -0000 Dear Reader! Greetings of the Day!!! Are you a Fresher? Looking for a JOB? Good News is Right Here!!! Openings in Airtel and Reliance Company as a DSL Engineer with attractive packages. JUST 4 YOU. Call Now. Priya Netroute-X Infotech (P) Ltd. Your JOB search ends here. 9971466888, 42421114 From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 20:42:58 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7F9F10656A6 for ; Thu, 2 Dec 2010 20:42:58 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 789B28FC12 for ; Thu, 2 Dec 2010 20:42:58 +0000 (UTC) Received: by iwn39 with SMTP id 39so10239188iwn.13 for ; Thu, 02 Dec 2010 12:42:57 -0800 (PST) Received: by 10.231.170.208 with SMTP id e16mr756410ibz.44.1291322577405; Thu, 02 Dec 2010 12:42:57 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.79.82 with HTTP; Thu, 2 Dec 2010 12:42:36 -0800 (PST) In-Reply-To: <20101202175833.GG83341@libertas.local.camdensoftware.com> References: <20101202160617.GD83341@libertas.local.camdensoftware.com> <20101202175833.GG83341@libertas.local.camdensoftware.com> From: Eitan Adler Date: Thu, 2 Dec 2010 15:42:36 -0500 Message-ID: To: freebsd ports Content-Type: text/plain; charset=UTF-8 Subject: Re: updated dialog(1) replacement for ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 20:42:58 -0000 On Thu, Dec 2, 2010 at 12:58 PM, Chip Camden wrote: > Quoth Eitan Adler on Thursday, 02 December 2010: >> Thank you for your comments >> >> > Every keystroke causes the screen to completely repaint. >> This can't be fully helped. Any valid key stroke is going to cause >> this. However I did make invalid keystrokes skip the repainting. > > Ugh -- I haven't looked at the code yet, but even back in the curses days > (pre-ncurses) this problem had already been solved. The window layout looks like | Title | | primary | help | | license | | exit | And on every valid keystroke primary and help need to be refreshed. ncurses is optimized to handle this correctly. However the wborder command on "primary" and "help" for some reason touches "title" and "license" as well - so the doupdate() ncurses functions refreshes them as well. If you could find a way to solve the problem please let know - a patch would be better :-) >Heh -- sorry, I always begin my tests in "stupid user" mode. Thanks for > the patch! No problem - segfaults should be fixed :-) Again - thanks for your comments: I'd like to get this program into tip-top shape so when I get the bsd.port.mk patch I'll just submit a PR and wait for the flames :-) -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 21:45:15 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B57410656AA for ; Thu, 2 Dec 2010 21:45:15 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from fsm1.ukr.net (fsm1.ukr.net [195.214.192.23]) by mx1.freebsd.org (Postfix) with ESMTP id 2B8F58FC27 for ; Thu, 2 Dec 2010 21:45:14 +0000 (UTC) Received: from 47-39-132-95.pool.ukrtel.net ([95.132.39.47] helo=localhost) by fsm1.ukr.net with esmtps ID 1POGbP-0005oe-WF for freebsd-ports@freebsd.org; Thu, 02 Dec 2010 23:22:08 +0200 Date: Thu, 2 Dec 2010 23:22:06 +0200 From: Ivan Klymenko To: freebsd-ports@freebsd.org Message-ID: <20101202232206.66c672a1@ukr.net> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: ftp/proftpd 1.3.3c with a version which contained a backdoor. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 21:45:15 -0000 Hello, people! What do you think is it worth to pay attention to these events: http://sourceforge.net/mailarchive/message.php?msg_name=alpine.DEB.2.00.1012011542220.12930%40familiar.castaglia.org and that in this case needs to be done with the port ftp/proftpd itself? Thanks! From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 21:49:17 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43D54106566C for ; Thu, 2 Dec 2010 21:49:17 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from fsm1.ukr.net (fsm1.ukr.net [195.214.192.23]) by mx1.freebsd.org (Postfix) with ESMTP id 02F238FC0A for ; Thu, 2 Dec 2010 21:49:16 +0000 (UTC) Received: from 47-39-132-95.pool.ukrtel.net ([95.132.39.47] helo=localhost) by fsm1.ukr.net with esmtps ID 1POH1f-000ATL-OG for freebsd-ports@freebsd.org; Thu, 02 Dec 2010 23:49:16 +0200 Date: Thu, 2 Dec 2010 23:49:14 +0200 From: Ivan Klymenko To: freebsd-ports@freebsd.org Message-ID: <20101202234914.26e53500@ukr.net> In-Reply-To: <20101202232206.66c672a1@ukr.net> References: <20101202232206.66c672a1@ukr.net> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: ftp/proftpd 1.3.3c with a version which contained a backdoor. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 21:49:17 -0000 =D0=92 Thu, 2 Dec 2010 23:22:06 +0200 Ivan Klymenko =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > Hello, people! > What do you think is it worth to pay attention to these events: > http://sourceforge.net/mailarchive/message.php?msg_name=3Dalpine.DEB.2.00= .1012011542220.12930%40familiar.castaglia.org >=20 > and that in this case needs to be done with the port ftp/proftpd > itself? >=20 > Thanks! Check vulnerability of your server, you can by using the following command sequence: $ telnet 1.2.3.4 21 Trying 1.2.3.4... Connected to 1.2.3.4 Escape character is '^]'. 220 ProFTPD 1.3.3c Server (ProFTPD Default Installation) [1.2.3.4] =20 HELP ACIDBITCHEZ =20 id ; =20 uid=3D0(root) gid=3D0(root) groups=3D0(root),65534(nogroup) From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 22:01:10 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1EE710656A3 for ; Thu, 2 Dec 2010 22:01:10 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout028.mac.com (asmtpout028.mac.com [17.148.16.103]) by mx1.freebsd.org (Postfix) with ESMTP id 886668FC0C for ; Thu, 2 Dec 2010 22:01:10 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp028.mac.com (Sun Java(tm) System Messaging Server 6.3-7.04 (built Sep 26 2008; 64bit)) with ESMTPSA id <0LCT00H1PMHA0R40@asmtp028.mac.com> for freebsd-ports@freebsd.org; Thu, 02 Dec 2010 14:00:47 -0800 (PST) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1010190000 definitions=main-1012020131 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2010-12-02_11:2010-12-02, 2010-12-02, 1970-01-01 signatures=0 From: Chuck Swiger In-reply-to: <20101202232206.66c672a1@ukr.net> Date: Thu, 02 Dec 2010 14:00:46 -0800 Message-id: <17BFBD62-414E-448B-A3CE-825C9467138E@mac.com> References: <20101202232206.66c672a1@ukr.net> To: Ivan Klymenko X-Mailer: Apple Mail (2.1082) Cc: freebsd-ports@freebsd.org Subject: Re: ftp/proftpd 1.3.3c with a version which contained a backdoor. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 22:01:10 -0000 On Dec 2, 2010, at 1:22 PM, Ivan Klymenko wrote: > What do you think is it worth to pay attention to these events: > http://sourceforge.net/mailarchive/message.php?msg_name=alpine.DEB.2.00.1012011542220.12930%40familiar.castaglia.org > > and that in this case needs to be done with the port ftp/proftpd itself? Presumably/hopefully, the proftpd tarball which contained the backdoor would fail to match the distinfo for the port: SHA256 (proftpd-1.3.3c.tar.bz2) = ea7f02e21f81e6ce79ebde8bbbd334bd269a039ac9137196a35309f791b24db1 SIZE (proftpd-1.3.3c.tar.bz2) = 4166609 Checking, the tarball you now fetch is the one which matches their md5 and GnuPG signing from the link above... Regards, -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 22:27:41 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9735C1065693 for ; Thu, 2 Dec 2010 22:27:41 +0000 (UTC) (envelope-from lumiwa@gmail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 4D19C8FC08 for ; Thu, 2 Dec 2010 22:27:40 +0000 (UTC) Received: by gyf3 with SMTP id 3so4678869gyf.13 for ; Thu, 02 Dec 2010 14:27:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :user-agent:cc:references:in-reply-to:mime-version:content-type :content-transfer-encoding:message-id; bh=f6Tb29qtxrKRavzZI1pyyzRAO+QxeIzjOvf+a2RwygA=; b=gleLUag2u9uHGFrH9gGfbq+3k1u56fJt1Nk0NxFuxOlv76lqb7l3mUjbaDgSBIDXmB m/dxQ+lDyMMeJ+vzxykNzYGRVG/3TsbK1u4WKwh75ckoUZgwqEGGELiYOeul4X0xC1/A T9BSEX8fP+OMy7MCuWDYAo6NYElXJ9Paoytr4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:cc:references:in-reply-to :mime-version:content-type:content-transfer-encoding:message-id; b=Mfc+xbIgVOuTWTXwaWWGMnaGwLfLilTc7Bga/gcU26jnVs5zcMH+qUnEy84q4eY8It lKpQ4R2xpC4IW4yPSh7VkzH+QEHBhC7elEorm30Nq8LjLQyhkZ7VMSSP+gUXOeCrsdGN 0M9phTgYrF2TBNhR8YxX/gYSbnUQyFN3FA61k= Received: by 10.151.142.20 with SMTP id u20mr2335504ybn.345.1291328860337; Thu, 02 Dec 2010 14:27:40 -0800 (PST) Received: from athena.wi.rr.com (cpe-184-58-138-79.wi.res.rr.com [184.58.138.79]) by mx.google.com with ESMTPS id q5sm34567ybe.18.2010.12.02.14.27.38 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 02 Dec 2010 14:27:39 -0800 (PST) From: ajtiM To: David Southwell ARPS Date: Thu, 2 Dec 2010 16:27:29 -0600 User-Agent: KMail/1.13.5 (FreeBSD/8.1-RELEASE; KDE/4.5.3; i386; ; ) References: <201012011716.52328.david@atf4.com> <201012011631.17172.lumiwa@gmail.com> <201012021438.13342.david@atf4.com> In-Reply-To: <201012021438.13342.david@atf4.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201012021627.30009.lumiwa@gmail.com> Cc: Rainer Hurling , freebsd-ports@freebsd.org Subject: Re: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 22:27:41 -0000 On Thursday 02 December 2010 08:38:12 David Southwell ARPS wrote: > > On Wednesday 01 December 2010 12:34:38 David Southwell ARPS wrote: > > > > On 01.12.2010 18:16 (UTC+1), David Southwell ARPS wrote: > > > > > File size mismatch error > > > > > > > > > > dns1# make clean > > > > > ===> Cleaning for py26-numpy-1.5.1,1 > > > > > dns1# make > > > > > ===> License check disabled, port has not defined LICENSE > > > > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > > > > ===> Extracting for py26-numpy-1.5.1,1 > > > > > => SHA256 Checksum OK for numpy-1.5.1.tar.gz. > > > > > => SHA256 Checksum mismatch for numpy-ref.pdf. > > > > > => SHA256 Checksum mismatch for numpy-user.pdf. > > > > > => SHA256 Checksum OK for amd64/fenv.c?p=203441. > > > > > => SHA256 Checksum OK for amd64/fenv.h?p=203441. > > > > > ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf > > > > > ===> License check disabled, port has not defined LICENSE > > > > > ===> Found saved configuration for py26-numpy-1.4.1,1 > > > > > => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. > > > > > => Attempting to fetch from > > > > > http://docs.scipy.org/doc/numpy-1.5.x/. fetch: > > > > > http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested > > > > > Range Not Satisfiable > > > > > => Attempting to fetch from > > > > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > > > > > fetch: > > > > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: > > > > > size mismatch: expected 5865550, actual 7112007 > > > > > > > > rm /usr/ports/distfiles/numpy-ref.pdf > > > > rm /usr/ports/distfiles/numpy-user.pdf > > > > > > > > Then retry. Hope this helps, > > > > Rainer Hurling > > > > > > Thanks v. much > > > So far (compilation) so good BUT after deinstalling previous version > > > reinstall failed with: > > > > > > dns1# make reinstall > > > ===> Installing for py26-numpy-1.5.1,1 > > > ===> py26-numpy-1.5.1,1 depends on executable: nosetests - found > > > ===> py26-numpy-1.5.1,1 depends on file: /usr/local/bin/python2.6 - > > > found ===> py26-numpy-1.5.1,1 depends on executable: gcc45 - found > > > ===> py26-numpy-1.5.1,1 depends on shared library: lapack.4 - found > > > ===> py26-numpy-1.5.1,1 depends on shared library: blas.2 - found > > > rm: /usr/ports/math/py- > > > numpy/work/numpy-1.5.1/numpy/core/include/numpy/fenv/fenv.c.bak: No > > > such file or directory > > > *** Error code 1 > > > > > > Stop in /usr/ports/math/py-numpy. > > > *** Error code 1 > > > > > > Stop in /usr/ports/math/py-numpy. > > > *** Error code 1 > > > > > > Stop in /usr/ports/math/py-numpy. > > > > > > > > > Photographic Artist > > > Permanent Installations & Design > > > Creative Imagery and Advanced Digital Techniques > > > High Dynamic Range Photography & Official Portraiture > > > Combined darkroom & digital creations > > > _______________________________________________ > > > freebsd-ports@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > > To unsubscribe, send any mail to > > > "freebsd-ports-unsubscribe@freebsd.org" > > > > I ahd the same problem as you and after > > > > > rm /usr/ports/distfiles/numpy-ref.pdf > > > > > >rm /usr/ports/distfiles/numpy-user.pdf > > > > I use portmaster for update and it works without problem. > > > > > > Mitja > > -------- > > http://jpgmag.com/people/lumiwa > > What version of freebsd are you using? > I am on 7.2 p3 > running rm for numy-ref.pdf & numpy-user.pdf enabled compilation but not > install failed. > > It has nothing to do with whether one uses portmaster or portupgrade. > > David I am on 8.1. Mitja -------- http://jpgmag.com/people/lumiwa From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 22:50:15 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E7E81065670 for ; Thu, 2 Dec 2010 22:50:15 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id CB7EB8FC18 for ; Thu, 2 Dec 2010 22:50:14 +0000 (UTC) Received: by iwn39 with SMTP id 39so10361259iwn.13 for ; Thu, 02 Dec 2010 14:50:14 -0800 (PST) Received: by 10.231.14.74 with SMTP id f10mr845034iba.194.1291330214091; Thu, 02 Dec 2010 14:50:14 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.79.82 with HTTP; Thu, 2 Dec 2010 14:49:53 -0800 (PST) From: Eitan Adler Date: Thu, 2 Dec 2010 17:49:53 -0500 Message-ID: To: freebsd ports Content-Type: text/plain; charset=UTF-8 Subject: A few questions about bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 22:50:15 -0000 I noticed a line in bsd.port.mk "Kludge for pre-3.0 systems" # Kludge for pre-3.0 ystems MACHINE_ARCH?= i386 According to cvs blame asami@ added both lines in revision 1.306 in 1999 Furthermore in bsd.port.mk it says ports should test against ARCH and not MACHINE_ARCH but bsd.port.subdir.mk uses MACHINE_ARCH on line 209. bsd.gnustep.mk has a similar test for MACHINE_ARCH instead of ARCH on line 136 (r1.1 by dinoex) 1) Should the initial line be removed 2) Should bsd.port.subdir.mk be changed to use ARCH instead? 3) Should bsd.gnustep.mk be changed to use ARCH instead? Overall I've been finding lots of inconsistent old hacks in bsd.*.mk and its difficult to tell which ones are still needed and which ones are not :-( -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 22:55:05 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB0591065672 for ; Thu, 2 Dec 2010 22:55:05 +0000 (UTC) (envelope-from rfarmer@predatorlabs.net) Received: from mail-qy0-f175.google.com (mail-qy0-f175.google.com [209.85.216.175]) by mx1.freebsd.org (Postfix) with ESMTP id 8CA3B8FC12 for ; Thu, 2 Dec 2010 22:55:05 +0000 (UTC) Received: by qyk8 with SMTP id 8so101490qyk.13 for ; Thu, 02 Dec 2010 14:55:04 -0800 (PST) MIME-Version: 1.0 Received: by 10.224.60.65 with SMTP id o1mr567767qah.13.1291330504569; Thu, 02 Dec 2010 14:55:04 -0800 (PST) Received: by 10.220.190.73 with HTTP; Thu, 2 Dec 2010 14:55:04 -0800 (PST) X-Originating-IP: [128.95.133.190] In-Reply-To: <17BFBD62-414E-448B-A3CE-825C9467138E@mac.com> References: <20101202232206.66c672a1@ukr.net> <17BFBD62-414E-448B-A3CE-825C9467138E@mac.com> Date: Thu, 2 Dec 2010 14:55:04 -0800 Message-ID: From: Rob Farmer To: Chuck Swiger Content-Type: text/plain; charset=ISO-8859-1 Cc: Ivan Klymenko , freebsd-ports@freebsd.org Subject: Re: ftp/proftpd 1.3.3c with a version which contained a backdoor. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 22:55:06 -0000 On Thu, Dec 2, 2010 at 14:00, Chuck Swiger wrote: > Presumably/hopefully, the proftpd tarball which contained the backdoor would fail to match the distinfo for the port: > > SHA256 (proftpd-1.3.3c.tar.bz2) = ea7f02e21f81e6ce79ebde8bbbd334bd269a039ac9137196a35309f791b24db1 > SIZE (proftpd-1.3.3c.tar.bz2) = 4166609 > > Checking, the tarball you now fetch is the one which matches their md5 and GnuPG signing from the link above... For several hours on Wednesday the distinfo was updated to the compromised version (it has been reverted), so anyone who updated this port recently should check their system. -- Rob Farmer From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 23:19:07 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99278106567A for ; Thu, 2 Dec 2010 23:19:07 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (lor.one-eyed-alien.net [69.66.77.232]) by mx1.freebsd.org (Postfix) with ESMTP id 53BEE8FC15 for ; Thu, 2 Dec 2010 23:19:07 +0000 (UTC) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.14.3/8.14.3) with ESMTP id oB2N44vZ096446; Thu, 2 Dec 2010 17:04:04 -0600 (CST) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.14.3/8.14.3/Submit) id oB2N44f2096445; Thu, 2 Dec 2010 17:04:04 -0600 (CST) (envelope-from brooks) Date: Thu, 2 Dec 2010 17:04:04 -0600 From: Brooks Davis To: Olivier Smedts Message-ID: <20101202230404.GC93599@lor.one-eyed-alien.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QRj9sO5tAVLaXnSD" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (lor.one-eyed-alien.net [127.0.0.1]); Thu, 02 Dec 2010 17:04:04 -0600 (CST) Cc: ports@FreeBSD.org Subject: Re: update of security/pssh X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 23:19:07 -0000 --QRj9sO5tAVLaXnSD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 02, 2010 at 12:24:27PM +0100, Olivier Smedts wrote: > Hello, >=20 > According to : > http://www.theether.org/pssh/ >=20 > parallel-ssh (pssh) is now maintained on > http://code.google.com/p/parallel-ssh/ by Andrew McNabb. Current > version is 2.1.1. >=20 > Would you have time to look into a maintainer-update ? Thanks for the pointer. Added to my todo list. -- Brooks --QRj9sO5tAVLaXnSD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iD8DBQFM+CXjXY6L6fI4GtQRAopgAJ9icJlKk4DYqbZf7mMXL5Wz+g1TtQCg1aiF yt/X5CWsZCrJLYOYtibJ13M= =JjKt -----END PGP SIGNATURE----- --QRj9sO5tAVLaXnSD-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 2 23:56:59 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0C931065673 for ; Thu, 2 Dec 2010 23:56:59 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from asmtpout030.mac.com (asmtpout030.mac.com [17.148.16.105]) by mx1.freebsd.org (Postfix) with ESMTP id A48998FC13 for ; Thu, 2 Dec 2010 23:56:59 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=us-ascii Received: from cswiger1.apple.com ([17.209.4.71]) by asmtp030.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTPSA id <0LCT00K4ERUCMY30@asmtp030.mac.com> for freebsd-ports@freebsd.org; Thu, 02 Dec 2010 15:56:37 -0800 (PST) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=6.0.2-1010190000 definitions=main-1012020149 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.2.15,1.0.148,0.0.0000 definitions=2010-12-02_11:2010-12-02, 2010-12-02, 1970-01-01 signatures=0 From: Chuck Swiger In-reply-to: Date: Thu, 02 Dec 2010 15:56:36 -0800 Message-id: References: <20101202232206.66c672a1@ukr.net> <17BFBD62-414E-448B-A3CE-825C9467138E@mac.com> To: Rob Farmer X-Mailer: Apple Mail (2.1082) Cc: Ivan Klymenko , freebsd-ports@freebsd.org Subject: Re: ftp/proftpd 1.3.3c with a version which contained a backdoor. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Dec 2010 23:56:59 -0000 On Dec 2, 2010, at 2:55 PM, Rob Farmer wrote: >> Checking, the tarball you now fetch is the one which matches their md5 and GnuPG signing from the link above... > > For several hours on Wednesday the distinfo was updated to the > compromised version (it has been reverted), so anyone who updated this > port recently should check their system. I see-- that's useful information to be aware of. Hopefully port maintainers practice a bit more wariness about distfiles changing unexpectedly; while it's common enough that people re-roll tarballs for whatever reason, it seems like there have been more incidents of reference sites getting owned... Regards, -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 05:50:52 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 611421065693; Fri, 3 Dec 2010 05:50:52 +0000 (UTC) (envelope-from ade@FreeBSD.org) Received: from panix.lovett.com (panix.lovett.com [166.84.7.128]) by mx1.freebsd.org (Postfix) with ESMTP id 363328FC0C; Fri, 3 Dec 2010 05:50:51 +0000 (UTC) Received: from cpe-66-68-128-204.austin.res.rr.com ([66.68.128.204] helo=[172.16.32.150]) by panix.lovett.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72 (FreeBSD)) (envelope-from ) id 1POOXg-0000sY-UW; Fri, 03 Dec 2010 05:50:49 +0000 Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: Ade Lovett In-Reply-To: Date: Thu, 2 Dec 2010 23:50:27 -0600 Content-Transfer-Encoding: quoted-printable Message-Id: <38CFD0A3-0B0A-49E9-8420-E593CFD24A99@FreeBSD.org> References: <20101202232206.66c672a1@ukr.net> <17BFBD62-414E-448B-A3CE-825C9467138E@mac.com> To: Chuck Swiger X-Mailer: Apple Mail (2.1082) Cc: Ivan Klymenko , Rob Farmer , freebsd-ports Ports , Ade Lovett Subject: Re: ftp/proftpd 1.3.3c with a version which contained a backdoor. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 05:50:52 -0000 On Dec 02, 2010, at 17:56 , Chuck Swiger wrote: > On Dec 2, 2010, at 2:55 PM, Rob Farmer wrote: >>=20 >> For several hours on Wednesday the distinfo was updated to the >> compromised version (it has been reverted), so anyone who updated = this >> port recently should check their system. >=20 > I see-- that's useful information to be aware of. Hopefully port = maintainers practice a bit more wariness about distfiles changing = unexpectedly; while it's common enough that people re-roll tarballs for = whatever reason, it seems like there have been more incidents of = reference sites getting owned... If ya'll are _absolutely_ certain that the current distfile is correct = and not compromised then I would _strongly_ recommend that you bump = PORTREVISION to make it absolutely obvious that folks see this. -aDe From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 07:59:24 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A45D1065695; Fri, 3 Dec 2010 07:59:24 +0000 (UTC) (envelope-from ganael.laplanche@martymac.org) Received: from data.galacsys.net (webmail.galacsys.net [217.24.81.215]) by mx1.freebsd.org (Postfix) with ESMTP id F0C0C8FC17; Fri, 3 Dec 2010 07:59:23 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by data.galacsys.net (Postfix) with ESMTP id 32179171472; Fri, 3 Dec 2010 08:59:22 +0100 (CET) From: "Ganael LAPLANCHE" To: Ion-Mihai Tetcu , "Ganael LAPLANCHE" X-Openwebmail-Date: Fri, 3 Dec 2010 09:59:22 +0200 Message-Id: <20101203073644.M60677@martymac.org> In-Reply-To: <20101201103810.46a1be7a@it.buh.tecnik93.com> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> <20101130211524.M4648@martymac.org> <20101201103810.46a1be7a@it.buh.tecnik93.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Fri, 3 Dec 2010 08:59:22 +0100 (CET) Cc: FreeBSD Ports , Mark Linimon , Ade Lovett Subject: Re: Introducing USE_SRC and ONLY_FOR_*VER (was: CFR: patch to cleanup usage of SRC_BASE in various ports) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 07:59:24 -0000 On Wed, 1 Dec 2010 10:38:10 +0200, Ion-Mihai Tetcu wrote Hi, > > It would be interesting to provide something like : > > > > USE_BASE= yes > > Which would do the following : > > => defines ${SRC_BASE} > > => checks for ${SRC_BASE}/sys/Makefile > > => provides a standard error msg if not found > > > > or, if set to something other than yes : > > > > USE_BASE= some/file/within/src_base > > => defines ${SRC_BASE} > > => check for ${SRC_BASE}/some/file/within/src_base > > => provides a standard error msg if not found > > > > Thus, we would avoid having the same tests again and again, and be > > able to provide more "standard" messages... > > > > What do you think ? > > Yes. It would help tracking some errors on automated build systems. Following this idea, here is a small patch that provides that functionality : http://people.freebsd.org/~martymac/patches/20101203-patch-bsd.kmod.mk.txt It provides : - USE_SRC : to be set to "yes" or a space-separated list of files to check under ${SRC_BASE} - SRC_BASE : by default /usr/src if ${USE_SRC} is set, can be overridden A standard message is displayed if kernel sources are missing. I've also found that the ports that check for presence of kernel sources also often check for a specific version of FreeBSD, so the patch also provides : ONLY_FOR_MINVER / ONLY_FOR_MINVER_REASON : the minimal version of FreeBSD required to build the port, and a given reason (if any) ONLY_FOR_MAXVER / ONLY_FOR_MAXVER_REASON : the maximal version of FreeBSD required to build the port, and a given reason (if any) Those variables will help us avoid duplicating the same kind of checks again and again in our ports tree. Find here : http://people.freebsd.org/~martymac/patches/20101203-patch-uhso-kmod.txt an example that shows how those variables could be used (comms/uhso-kmod). Note that in this example, a change of behaviour is introduced : the port will now refuse to build if OSVERSION > 800500, while it was only displaying a warning in the previous version. This patch to hso-kmod is *not* to be committed, but just a showcase. Comments welcome, Best regards, -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 08:31:55 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F6281065670 for ; Fri, 3 Dec 2010 08:31:55 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) by mx1.freebsd.org (Postfix) with ESMTP id E741E8FC14 for ; Fri, 3 Dec 2010 08:31:54 +0000 (UTC) Received: from p5796f8eb.dip.t-dialin.net ([87.150.248.235] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1POR3X-0003J2-98; Fri, 03 Dec 2010 09:31:51 +0100 Message-ID: <4CF8AAF3.2010904@gwdg.de> Date: Fri, 03 Dec 2010 09:31:47 +0100 From: Rainer Hurling User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; de-DE; rv:1.9.2.12) Gecko/20101029 Thunderbird/3.1.6 MIME-Version: 1.0 To: David Southwell ARPS References: <201012011716.52328.david@atf4.com> <201012011834.39251.david@atf4.com> <201012011631.17172.lumiwa@gmail.com> <201012021438.13342.david@atf4.com> In-Reply-To: <201012021438.13342.david@atf4.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - Cc: freebsd-ports@freebsd.org Subject: Re: math/py-numpy size mismatch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 08:31:55 -0000 On 02.12.2010 15:38 (UTC+1), David Southwell ARPS wrote: >> On Wednesday 01 December 2010 12:34:38 David Southwell ARPS wrote: >>>> On 01.12.2010 18:16 (UTC+1), David Southwell ARPS wrote: >>>>> File size mismatch error >>>>> >>>>> dns1# make clean >>>>> ===> Cleaning for py26-numpy-1.5.1,1 >>>>> dns1# make >>>>> ===> License check disabled, port has not defined LICENSE >>>>> ===> Found saved configuration for py26-numpy-1.4.1,1 >>>>> ===> Extracting for py26-numpy-1.5.1,1 >>>>> => SHA256 Checksum OK for numpy-1.5.1.tar.gz. >>>>> => SHA256 Checksum mismatch for numpy-ref.pdf. >>>>> => SHA256 Checksum mismatch for numpy-user.pdf. >>>>> => SHA256 Checksum OK for amd64/fenv.c?p=203441. >>>>> => SHA256 Checksum OK for amd64/fenv.h?p=203441. >>>>> ===> Refetch for 1 more times files: numpy-ref.pdf numpy-user.pdf >>>>> ===> License check disabled, port has not defined LICENSE >>>>> ===> Found saved configuration for py26-numpy-1.4.1,1 >>>>> => numpy-ref.pdf doesn't seem to exist in /usr/ports/distfiles/. >>>>> => Attempting to fetch from http://docs.scipy.org/doc/numpy-1.5.x/. >>>>> fetch: http://docs.scipy.org/doc/numpy-1.5.x/numpy-ref.pdf: Requested >>>>> Range Not Satisfiable >>>>> => Attempting to fetch from >>>>> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. >>>>> fetch: >>>>> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/numpy-ref.pdf: >>>>> size mismatch: expected 5865550, actual 7112007 >>>> >>>> rm /usr/ports/distfiles/numpy-ref.pdf >>>> rm /usr/ports/distfiles/numpy-user.pdf >>>> >>>> Then retry. Hope this helps, >>>> Rainer Hurling >>> >>> Thanks v. much >>> So far (compilation) so good BUT after deinstalling previous version >>> reinstall failed with: >>> >>> dns1# make reinstall >>> ===> Installing for py26-numpy-1.5.1,1 >>> ===> py26-numpy-1.5.1,1 depends on executable: nosetests - found >>> ===> py26-numpy-1.5.1,1 depends on file: /usr/local/bin/python2.6 - >>> found ===> py26-numpy-1.5.1,1 depends on executable: gcc45 - found >>> ===> py26-numpy-1.5.1,1 depends on shared library: lapack.4 - found >>> ===> py26-numpy-1.5.1,1 depends on shared library: blas.2 - found >>> rm: /usr/ports/math/py- >>> numpy/work/numpy-1.5.1/numpy/core/include/numpy/fenv/fenv.c.bak: No such >>> file or directory >>> *** Error code 1 >>> >>> Stop in /usr/ports/math/py-numpy. >>> *** Error code 1 >>> >>> Stop in /usr/ports/math/py-numpy. >>> *** Error code 1 >>> >>> Stop in /usr/ports/math/py-numpy. >>> >>> >>> Photographic Artist >>> Permanent Installations& Design >>> Creative Imagery and Advanced Digital Techniques >>> High Dynamic Range Photography& Official Portraiture >>> Combined darkroom& digital creations >>> _______________________________________________ >>> freebsd-ports@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-ports >>> To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" >> >> I ahd the same problem as you and after >> >> > rm /usr/ports/distfiles/numpy-ref.pdf >> > >> >rm /usr/ports/distfiles/numpy-user.pdf >> >> I use portmaster for update and it works without problem. >> >> >> Mitja >> -------- >> http://jpgmag.com/people/lumiwa > What version of freebsd are you using? This is 9.0-CURRENT (amd64) > I am on 7.2 p3 > running rm for numy-ref.pdf& numpy-user.pdf enabled compilation but not > install failed. > > It has nothing to do with whether one uses portmaster or portupgrade. > > David > > > Photographic Artist > Permanent Installations& Design > Creative Imagery and Advanced Digital Techniques > High Dynamic Range Photography& Official Portraiture > Combined darkroom& digital creations From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 11:40:07 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBE1E1065670 for ; Fri, 3 Dec 2010 11:40:07 +0000 (UTC) (envelope-from nonsolosoft@diff.org) Received: from u1.diff.org (u1.diff.org [78.46.96.43]) by mx1.freebsd.org (Postfix) with ESMTP id 429F48FC08 for ; Fri, 3 Dec 2010 11:40:06 +0000 (UTC) Received: from lap.diff.org (81-174-26-135.staticnet.ngi.it [81.174.26.135] (may be forged)) (authenticated bits=0) by u1.diff.org (8.14.4/8.14.4) with ESMTP id oB3BIUPg088677 for ; Fri, 3 Dec 2010 11:18:39 GMT (envelope-from nonsolosoft@diff.org) Message-ID: <4CF8D1E9.3070600@diff.org> Date: Fri, 03 Dec 2010 12:18:01 +0100 From: Ferruccio Zamuner Organization: NonSoLoSoft User-Agent: Mozilla/5.0 (X11; U; DragonFly i386; en-US; rv:1.9.2.9) Gecko/20101023 Lightning/1.0b3pre Lanikai/3.1.3 MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.3.4 (u1.diff.org [78.46.96.43]); Fri, 03 Dec 2010 11:18:39 +0000 (UTC) Cc: Subject: building ports/net/netcat X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 11:40:07 -0000 Hi, u1# make ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for netcat-1.10_3 ===> Extracting for netcat-1.10_3 => SHA256 Checksum OK for nc110.tgz. => SHA256 Checksum OK for nc-v6-20000918.patch.gz. ===> Patching for netcat-1.10_3 ===> Applying distribution patches for netcat-1.10_3 ===> Applying FreeBSD patches for netcat-1.10_3 /usr/bin/sed -e 's|%%DOCSDIR%%|/usr/local/share/doc/netcat|g' /faster1/ports/net/netcat/files/nc.1 > /faster1/ports/net/netcat/work/netcat.1 ===> Configuring for netcat-1.10_3 ===> Building for netcat-1.10_3 make -e nc XFLAGS='-DFREEBSD -DIPV6 -DTELNET -DGAPING_SECURITY_HOLE' STATIC=-static cc -s -O2 -pipe -fno-strict-aliasing -DFREEBSD -DIPV6 -DTELNET -DGAPING_SECURITY_HOLE -static -o nc netcat.c netcat.c: In function 'doexec': netcat.c:724: warning: incompatible implicit declaration of built-in function 'execl' Best regards, \ferz From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 12:07:38 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 803F51065693; Fri, 3 Dec 2010 12:07:38 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id DD4EA8FC08; Fri, 3 Dec 2010 12:07:37 +0000 (UTC) Received: from it.buh.tecnik93.com (unknown [188.27.101.35]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by worf.ds9.tecnik93.com (Postfix) with ESMTPSA id BD68522C546C; Fri, 3 Dec 2010 14:07:36 +0200 (EET) Date: Fri, 3 Dec 2010 14:07:35 +0200 From: Ion-Mihai Tetcu To: "Ganael LAPLANCHE" Message-ID: <20101203140735.21045b58@it.buh.tecnik93.com> In-Reply-To: <20101203073644.M60677@martymac.org> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> <20101130211524.M4648@martymac.org> <20101201103810.46a1be7a@it.buh.tecnik93.com> <20101203073644.M60677@martymac.org> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.22.1; amd64-portbld-freebsd8.1) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/LI5vb/zNtOWdF+bWn9fZhSr"; protocol="application/pgp-signature" Cc: FreeBSD Ports , Mark Linimon , Ade Lovett Subject: Re: Introducing USE_SRC and ONLY_FOR_*VER (was: CFR: patch to cleanup usage of SRC_BASE in various ports) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 12:07:38 -0000 --Sig_/LI5vb/zNtOWdF+bWn9fZhSr Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Fri, 3 Dec 2010 08:59:22 +0100 (CET) "Ganael LAPLANCHE" wrote: > On Wed, 1 Dec 2010 10:38:10 +0200, Ion-Mihai Tetcu wrote >=20 > Hi, >=20 > > > It would be interesting to provide something like : > > >=20 > > > USE_BASE=3D yes=20 > > > Which would do the following : > > > =3D> defines ${SRC_BASE} > > > =3D> checks for ${SRC_BASE}/sys/Makefile > > > =3D> provides a standard error msg if not found > > >=20 > > > or, if set to something other than yes : > > >=20 > > > USE_BASE=3D some/file/within/src_base > > > =3D> defines ${SRC_BASE} > > > =3D> check for ${SRC_BASE}/some/file/within/src_base > > > =3D> provides a standard error msg if not found > > >=20 > > > Thus, we would avoid having the same tests again and again, and > > > be able to provide more "standard" messages... > > >=20 > > > What do you think ? > >=20 > > Yes. It would help tracking some errors on automated build systems. >=20 > Following this idea, here is a small patch that provides that > functionality : >=20 > http://people.freebsd.org/~martymac/patches/20101203-patch-bsd.kmod.mk.txt Submit a PR with it please. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> itetcu@FreeBSD.org, PGP Key ID 057E9F8B493A297B --Sig_/LI5vb/zNtOWdF+bWn9fZhSr Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iEYEARECAAYFAkz43YgACgkQJ7GIuiH/oeX36gCdELbtZfe0y/U8hhIBo/LQqWok v8AAoIyWPjxape0guG4NJ4WDwpvLXgqQ =Oy9O -----END PGP SIGNATURE----- --Sig_/LI5vb/zNtOWdF+bWn9fZhSr-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 13:33:58 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC8A8106566C; Fri, 3 Dec 2010 13:33:58 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.server1.bsdforen.de (bsdforen.de [82.193.243.81]) by mx1.freebsd.org (Postfix) with ESMTP id AD46E8FC0C; Fri, 3 Dec 2010 13:33:57 +0000 (UTC) Received: from mobileKamikaze.norad (vpn-cl-162-65.rz.uni-karlsruhe.de [141.3.162.65]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.server1.bsdforen.de (Postfix) with ESMTPSA id C1B8685FD7; Fri, 3 Dec 2010 14:33:56 +0100 (CET) Message-ID: <4CF8F1C4.6080803@bsdforen.de> Date: Fri, 03 Dec 2010 14:33:56 +0100 From: Dominic Fandrey User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-GB; rv:1.9.1.15) Gecko/20101028 Thunderbird/3.0.10 MIME-Version: 1.0 To: ohauer@FreeBSD.org References: <4CF79B4C.2080201@bsdforen.de> <4CF7EA49.2090705@FreeBSD.org> In-Reply-To: <4CF7EA49.2090705@FreeBSD.org> X-Enigmail-Version: 1.0.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: confused build_depends X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 13:33:59 -0000 On 02/12/2010 19:49, Olli Hauer wrote: > On 2010-12-02 14:12, Dominic Fandrey wrote: >> # cd /usr/ports/net/wireshark >> # make -VBUILD_DEPENDS >> /usr/local/lib/libcrypto.so.8:/usr/ports/cad/linux-eagle5 ... >> >> Well, eagle5 does not install the file libcrypto.so.8, thus it >> doesn't exist and the ports system will try to install linux-eagle5 >> when building wireshark. Of course linux-eagle5 is already installed, >> thus it will fail. >> >> If I remove linux-eagle5 the dependency works: >> # make -VBUILD_DEPENDS >> /usr/local/lib/libcrypto.so.7:/usr/ports/security/openssl ... >> >> But why does the ports system think linux-eagle installs this library? >> # pkg_info -Lx eagle|grep crypto >> /compat/linux/lib/libcrypto.so.0.9.8 >> >> The file is a symlink and has a distinctively different version >> number. > > Are you sure you are in the wireshark port? > I cannot find a reference to linux-eagle5, even in older versions. > http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/wireshark/Makefile?annotate=1.161 It affects everything depending on libcrypto. If dependency file exists, the ports system will substitute the package that installed it for the dependency set in the port. It's something in bsd.port.mk that goes wrong and /thinks/ linux-eagle5 installs a file that it actually doesn't. Install linux-eagle5 and you can reproduce it. Regards -- A: Because it fouls the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What is the most annoying thing on usenet and in e-mail? From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 13:58:22 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C62A51065697; Fri, 3 Dec 2010 13:58:22 +0000 (UTC) (envelope-from ganael.laplanche@martymac.org) Received: from data.galacsys.net (webmail.galacsys.net [217.24.81.215]) by mx1.freebsd.org (Postfix) with ESMTP id 81E568FC1A; Fri, 3 Dec 2010 13:58:22 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by data.galacsys.net (Postfix) with ESMTP id 3CE481714EF; Fri, 3 Dec 2010 14:58:21 +0100 (CET) From: "Ganael LAPLANCHE" To: Ion-Mihai Tetcu , "Ganael LAPLANCHE" X-Openwebmail-Date: Fri, 3 Dec 2010 15:58:21 +0200 Message-Id: <20101203133436.M72879@martymac.org> In-Reply-To: <20101203140735.21045b58@it.buh.tecnik93.com> References: <20101130041323.GA17404@lonesome.com> <4CF51A1F.7030803@gmail.com> <20101130191906.GA28560@lonesome.com> <60D0FDFC-83B5-479D-97ED-922A6D31EF87@FreeBSD.org> <20101130211524.M4648@martymac.org> <20101201103810.46a1be7a@it.buh.tecnik93.com> <20101203073644.M60677@martymac.org> <20101203140735.21045b58@it.buh.tecnik93.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Fri, 3 Dec 2010 14:58:21 +0100 (CET) Cc: FreeBSD Ports , Mark Linimon , Ade Lovett Subject: Re: Introducing USE_SRC and ONLY_FOR_*VER (was: CFR: patch to cleanup usage of SRC_BASE in various ports) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 13:58:22 -0000 On Fri, 3 Dec 2010 14:07:35 +0200, Ion-Mihai Tetcu wrote > Submit a PR with it please. Done ports/152804. BTW, there was a mistake in the patch file name. It's been fixed ; the correct URL is now : http://people.freebsd.org/~martymac/patches/20101203-patch-bsd.port.mk.txt Best regards, -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 15:02:12 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AEF31065679 for ; Fri, 3 Dec 2010 15:02:12 +0000 (UTC) (envelope-from jhellenthal@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id E67038FC12 for ; Fri, 3 Dec 2010 15:02:11 +0000 (UTC) Received: by vws9 with SMTP id 9so3885585vws.13 for ; Fri, 03 Dec 2010 07:02:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :organization:user-agent:mime-version:to:cc:subject:references :in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=aXIyFStaxiBcYXmqPS8S2YpkX1X7ey6VwwGKLikRA6Y=; b=rkOoRqzIrPNFhU1qDPpOvSVicHRHrSC5RSMbjVdnHdGaojGwHKzssCcnX9xNR84sXg RWPtW8u2HRDHtcpeSBKgLBD+y99x27B9E9NHzTxrPJuMUjvB96GLeexU8XWWduhpDd4Q YBQ/oA9daiSms837D5TXY3qs8gc9i8ieuXDcw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:organization:user-agent:mime-version:to :cc:subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=Gq1JrkcRejBxRqCftALCRY5n5PSOHtNMRYpnN/iIJELY2rMKOeRDXJwggoKFv1nxiz huSFe2igeMy0EGotL8ePP1t8cdSNQozspFU9REyWQM8o2ET0ERlYs2P1JBD9hJgeCd1Z 2NCj8eU5/nsHYVfFWcyQGfg5D2tCXmyTmB4N8= Received: by 10.220.90.203 with SMTP id j11mr432348vcm.197.1291388531043; Fri, 03 Dec 2010 07:02:11 -0800 (PST) Received: from centel.dataix.local (adsl-99-19-40-65.dsl.klmzmi.sbcglobal.net [99.19.40.65]) by mx.google.com with ESMTPS id j22sm297561vcr.31.2010.12.03.07.02.08 (version=SSLv3 cipher=RC4-MD5); Fri, 03 Dec 2010 07:02:09 -0800 (PST) Sender: "J. Hellenthal" Message-ID: <4CF9066F.10501@DataIX.net> Date: Fri, 03 Dec 2010 10:02:07 -0500 From: jhell Organization: http://www.DataIX.net User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.2.12) Gecko/20101028 Lightning/1.0b1 Thunderbird MIME-Version: 1.0 To: Ferruccio Zamuner References: <4CF8D1E9.3070600@diff.org> In-Reply-To: <4CF8D1E9.3070600@diff.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: building ports/net/netcat X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 15:02:12 -0000 On 12/03/2010 06:18, Ferruccio Zamuner wrote: > Hi, > > u1# make > ===> Vulnerability check disabled, database not found > ===> License check disabled, port has not defined LICENSE > ===> Found saved configuration for netcat-1.10_3 > ===> Extracting for netcat-1.10_3 > => SHA256 Checksum OK for nc110.tgz. > => SHA256 Checksum OK for nc-v6-20000918.patch.gz. > ===> Patching for netcat-1.10_3 > ===> Applying distribution patches for netcat-1.10_3 > ===> Applying FreeBSD patches for netcat-1.10_3 > /usr/bin/sed -e 's|%%DOCSDIR%%|/usr/local/share/doc/netcat|g' > /faster1/ports/net/netcat/files/nc.1 > > /faster1/ports/net/netcat/work/netcat.1 > ===> Configuring for netcat-1.10_3 > ===> Building for netcat-1.10_3 > make -e nc XFLAGS='-DFREEBSD -DIPV6 -DTELNET -DGAPING_SECURITY_HOLE' > STATIC=-static > cc -s -O2 -pipe -fno-strict-aliasing -DFREEBSD -DIPV6 -DTELNET > -DGAPING_SECURITY_HOLE -static -o nc netcat.c > netcat.c: In function 'doexec': > netcat.c:724: warning: incompatible implicit declaration of built-in > function 'execl' > A release that you are building on and related information would be helpful. Just-in-case... You do know that netcat comes in the source tree for FreeBSD sometime greater than 7.X correct ? -- jhell,v From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 16:24:07 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63A6B106566C for ; Fri, 3 Dec 2010 16:24:07 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 1F0E98FC18 for ; Fri, 3 Dec 2010 16:24:06 +0000 (UTC) Received: by yxh35 with SMTP id 35so5130869yxh.13 for ; Fri, 03 Dec 2010 08:24:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=M1RcBfROjsOzjUjxL6QaQTnHIpg386/LClsRmVeIgeA=; b=lxU4O3GZfORHeCe4djf/4Ez3oo6Xq8n7EeGYU/GwMlT08kSwz+4oMpipCJcyCqowLK D7hovlpaO4ZTUHUPcU/AXTqlwh/x6sEY57b9aWkQilJDK7WTpHhcShGGk3Bi8+SAoNCy 4lBl9Ye1wfmckwaLpPvr3AqZBWZMAN6zocUX4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Ns604aIPiIfhgK7gsoXC29bfSlbiTySKERvMYMf+RLb7x7h+sRRP93iDIPe4cpdb+O hjEdR/FHVZFxrHPGRcx4oug05vbiWTZaLUfQEnW8q1aS4MJIB6xQ7lwSDcaM014TNtUV jQK8M75T5dhzkVSC6IJChw7+E2pTW3NSeIOMo= MIME-Version: 1.0 Received: by 10.90.49.8 with SMTP id w8mr1941893agw.138.1291393445943; Fri, 03 Dec 2010 08:24:05 -0800 (PST) Received: by 10.90.226.2 with HTTP; Fri, 3 Dec 2010 08:24:05 -0800 (PST) In-Reply-To: <4CF9066F.10501@DataIX.net> References: <4CF8D1E9.3070600@diff.org> <4CF9066F.10501@DataIX.net> Date: Fri, 3 Dec 2010 08:24:05 -0800 Message-ID: From: Freddie Cash To: jhell Content-Type: text/plain; charset=UTF-8 Cc: ports@freebsd.org, Ferruccio Zamuner Subject: Re: building ports/net/netcat X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 16:24:07 -0000 On Fri, Dec 3, 2010 at 7:02 AM, jhell wrote: > On 12/03/2010 06:18, Ferruccio Zamuner wrote: > Just-in-case... You do know that netcat comes in the source tree for > FreeBSD sometime greater than 7.X correct ? NetCat (/usr/bin/nc) is available on FreeBSD 6.2 (oldest installed machine I have) or newer. -- Freddie Cash fjwcash@gmail.com From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 21:08:06 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1D57106566C for ; Fri, 3 Dec 2010 21:08:06 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 2961C8FC12 for ; Fri, 3 Dec 2010 21:08:05 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1POcrL-0005go-I7 for freebsd-ports@freebsd.org; Fri, 03 Dec 2010 22:08:03 +0100 Received: from 193.33.173.33 ([193.33.173.33]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Dec 2010 22:08:03 +0100 Received: from c.kworr by 193.33.173.33 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Dec 2010 22:08:03 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Volodymyr Kostyrko Date: Fri, 03 Dec 2010 23:07:51 +0200 Lines: 41 Message-ID: <4CF95C27.4030507@gmail.com> References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <4CF439F1.6050703@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: 193.33.173.33 User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; uk-UA; rv:1.9.2.12) Gecko/20101029 Thunderbird/3.1.6 In-Reply-To: Cc: Matthias Andree , freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 21:08:06 -0000 30.11.2010 04:40, Julien Laffaye wrote: > You can specify limits during compression, so the question is should we do that > so that hosts with N MB of RAM can decompress packages? Do we retain the > compression ratio over bzip2 if we limit compression memory to 512 MB so that > decompression would be possible with, say, 128 MB? > > According to xz(1), in its default mode (-6), xz uses ~100MiB for > compression and ~10MiB for decompression. > That seems to be acceptable. You possibly miss something about compression/decompression. The designated memory size is not directly affected only by compression mode. When decompressing you will need memory for: 1. Data history. 2. Dictionary. 3. Some indexes. And those ones are all empty at start. So say, if you are compressing something really huge trying to use 4G of memory you end using that much memory between 2G - 3G of source data. And we will need 512MB to decompress that hunk of data. Are the packages _that_ large? I think that in worst possible case we need to double the size of package for comfort decompression. If the lower point is 64Mb then 32Mb package compressed with any compression strategy would be decompressed without hitting a swap. We'll need someone to do actual testing but look at this one: # ls -la ImageMagick-6.6.5-10.tar.xz -rw-r--r-- 1 root wheel 6316324 21 ноя 23:52 ImageMagick-6.6.5-10.tar.xz # time xz -dt ImageMagick-6.6.5-10.tar.xz 0.860u 0.036s 0:01.02 87.2% 68+1492k 56+0io 1pf+0w -- Sphinx of black quartz judge my vow. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 21:27:35 2010 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FCAE1065670 for ; Fri, 3 Dec 2010 21:27:35 +0000 (UTC) (envelope-from pkthn_parker@hotmail.com) Received: from blu0-omc3-s33.blu0.hotmail.com (blu0-omc3-s33.blu0.hotmail.com [65.55.116.108]) by mx1.freebsd.org (Postfix) with ESMTP id 05F198FC08 for ; Fri, 3 Dec 2010 21:27:34 +0000 (UTC) Received: from BLU157-DS1 ([65.55.116.72]) by blu0-omc3-s33.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Fri, 3 Dec 2010 13:27:33 -0800 X-Originating-IP: [166.205.8.217] X-Originating-Email: [pkthn_parker@hotmail.com] Message-ID: Date: Fri, 3 Dec 2010 15:27:22 -0600 MIME-Version: 1.0 From: Paul Parker To: maurice@castro.aus.net Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-OriginalArrivalTime: 03 Dec 2010 21:27:34.0077 (UTC) FILETIME=[E63EA6D0:01CB9330] Cc: ports@FreeBSD.org Subject: FreeBSD Port: davical-0.9.9.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 21:27:35 -0000 I currently have davical-0.9.9 installed and working nicely. However=2C I'd= like to upgrade as I've received some code the developer has sent me that = uses some of the newer components. Does this package upgrade a previous ver= sion or does it just replace database data already present. Specifically=2C= my calendar items I've already entered?=0A= =0A= Thanks=2C=0A= Paul=0A= From owner-freebsd-ports@FreeBSD.ORG Fri Dec 3 21:32:21 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E093106564A; Fri, 3 Dec 2010 21:32:21 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id D5F378FC12; Fri, 3 Dec 2010 21:32:20 +0000 (UTC) Received: by fxm16 with SMTP id 16so7799568fxm.13 for ; Fri, 03 Dec 2010 13:32:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:newsgroups:to:cc:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=/OspNhyKNsPGguZRDTbyk6sUkIrbrlHJvGi4hwtrj+A=; b=g0Tbw+KnDRcMi8jnSgFzDSCmY95nHK0UKeYgQPf+j5kiqfqlZDgVomDvO0vAm9OECe ARtRYGjSt/uLnTGqihHY237j0/FfyV9RtSqPoM1Q3T1kbgYODn6upkE6d4KExN40QJFk NsYwuXbTETgDBWTXYtn3WVhfYhKE8Ei7rHVWE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:newsgroups:to:cc :subject:references:in-reply-to:content-type :content-transfer-encoding; b=klTYTrqgb02HKD7oNOPug+V0v3L6hnNPT5ZEhfc91TvvQnNXansrN1It2sL/h1zxc3 4tFJAcb6AGSsM2Mm0dwXaNm1yXi1QkUxAL7mskGRchuYcqwxDar5VcE9gEYLf3JscJVS twovy5+KJRUlq5qlVdN1+SHpEnSaFfLRALdz4= Received: by 10.223.96.66 with SMTP id g2mr2657360fan.61.1291410475960; Fri, 03 Dec 2010 13:07:55 -0800 (PST) Received: from limbo.lan ([193.33.173.33]) by mx.google.com with ESMTPS id n1sm785590fam.40.2010.12.03.13.07.53 (version=SSLv3 cipher=RC4-MD5); Fri, 03 Dec 2010 13:07:54 -0800 (PST) Message-ID: <4CF95C27.4030507@gmail.com> Date: Fri, 03 Dec 2010 23:07:51 +0200 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; uk-UA; rv:1.9.2.12) Gecko/20101029 Thunderbird/3.1.6 MIME-Version: 1.0 Newsgroups: gmane.os.freebsd.devel.ports To: Julien Laffaye References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <4CF439F1.6050703@gmx.de> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: Matthias Andree , freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Dec 2010 21:32:21 -0000 30.11.2010 04:40, Julien Laffaye wrote: > You can specify limits during compression, so the question is should we do that > so that hosts with N MB of RAM can decompress packages? Do we retain the > compression ratio over bzip2 if we limit compression memory to 512 MB so that > decompression would be possible with, say, 128 MB? > > According to xz(1), in its default mode (-6), xz uses ~100MiB for > compression and ~10MiB for decompression. > That seems to be acceptable. You possibly miss something about compression/decompression. The designated memory size is not directly affected only by compression mode. When decompressing you will need memory for: 1. Data history. 2. Dictionary. 3. Some indexes. And those ones are all empty at start. So say, if you are compressing something really huge trying to use 4G of memory you end using that much memory between 2G - 3G of source data. And we will need 512MB to decompress that hunk of data. Are the packages _that_ large? I think that in worst possible case we need to double the size of package for comfort decompression. If the lower point is 64Mb then 32Mb package compressed with any compression strategy would be decompressed without hitting a swap. We'll need someone to do actual testing but look at this one: # ls -la ImageMagick-6.6.5-10.tar.xz -rw-r--r-- 1 root wheel 6316324 21 ноя 23:52 ImageMagick-6.6.5-10.tar.xz # time xz -dt ImageMagick-6.6.5-10.tar.xz 0.860u 0.036s 0:01.02 87.2% 68+1492k 56+0io 1pf+0w -- Sphinx of black quartz judge my vow. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 10:58:45 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89109106564A for ; Sat, 4 Dec 2010 10:58:45 +0000 (UTC) (envelope-from demelier.david@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 46CBB8FC18 for ; Sat, 4 Dec 2010 10:58:44 +0000 (UTC) Received: by yxh35 with SMTP id 35so5507813yxh.13 for ; Sat, 04 Dec 2010 02:58:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=L/Kl2Q3Qo880Hy5dFIE001Omcq/xvlfweNOzL5KfNN8=; b=SRqdaA6w+kfJ5EmpbXx1B+s3I12pwvOoeE0Bi3ZBuUZUNNtoLbcrj974V41ZrLbSuz ChOczH6nbox73hbefejtF7NjLHOkxBSVzSDRH0rQQjIRPA4lU2//0u5waqtkGlJ+UWPG t7dTMidIEZShqlupA3dFGPWGK/wPIJ4gVZNnk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=BpGqqu1XcuD4feyVZtdMbVbs5bv+efFz4AgEjEEGbyRcbBAqTCNu9p0C5h5eFdOduJ WDZeMMrRDq9CWfCcqg4Yu/b9j92rQJ9QB59uGs3q0tOX6ovOJXvExI24x2sX1bfSgTiV r/AtWiUHOieMEtL15zjzzF+yXp29lAEOVk3Nk= MIME-Version: 1.0 Received: by 10.90.14.39 with SMTP id 39mr4771140agn.23.1291460324520; Sat, 04 Dec 2010 02:58:44 -0800 (PST) Received: by 10.90.73.18 with HTTP; Sat, 4 Dec 2010 02:58:44 -0800 (PST) Date: Sat, 4 Dec 2010 11:58:44 +0100 Message-ID: From: David DEMELIER To: freebsd-ports Content-Type: text/plain; charset=UTF-8 Subject: Proposal moving *spell dicts to ports/textproc/*spell/dicts X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 10:58:45 -0000 Hi, As I said some weeks ago I personally don't like much the use of ports/{french,chinese,whatever}/ directories. I saw that openbsd created sub directories in the aspell port. I think this is a really good idea, it's really easier to find. I don't think german/ispell french/aspell textproc/gu-aspell are really easy to find. I propose creating a ports/textproc/aspell/dicts and same for textproc/ispell and textproc/hunspell and moving every spellings ports to these directories. -- Demelier David From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 12:51:19 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE45B106566B for ; Sat, 4 Dec 2010 12:51:19 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id 1AEAC8FC23 for ; Sat, 4 Dec 2010 12:51:18 +0000 (UTC) Received: by dns1.vizion2000.net (Postfix, from userid 1001) id 4F6E434D404; Sat, 4 Dec 2010 12:50:38 +0000 (GMT) From: David Southwell Organization: Voice & Vision To: freebsd-ports@freebsd.org Date: Sat, 4 Dec 2010 12:50:37 +0000 User-Agent: KMail/1.13.5 (FreeBSD/7.2-RELEASE-p3; KDE/4.5.3; amd64; ; ) References: In-Reply-To: X-KMail-Markup: true MIME-Version: 1.0 Message-Id: <201012041250.38180.david@vizion2000.net> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Proposal moving *spell dicts to ports/textproc/*spell/dicts X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 12:51:19 -0000 > Hi, > > As I said some weeks ago I personally don't like much the use of > ports/{french,chinese,whatever}/ directories. I saw that openbsd > created sub directories in the aspell port. I think this is a really > good idea, it's really easier to find. > > I don't think german/ispell french/aspell textproc/gu-aspell are > really easy to find. > > I propose creating a ports/textproc/aspell/dicts and same for > textproc/ispell and textproc/hunspell and moving every spellings ports > to these directories. On the surface the idea sounds sensible. Maybe there are some issues relating to consistency across the whole ports tree in the way languages are handled. I see no solution being intrinsically better than any other but would tend to favour a consistent approach for all language. We already have one built in inconsistencyt -- i.e. english is handled different;ly than any other. IMHO one inconsistency is enough!! david Photographic Artist Permanent Installations & Design Creative Imagery and Advanced Digital Techniques High Dynamic Range Photography & Official Portraiture Combined darkroom & digital creations & Systems Adminstrator for the vizion2000.net network From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 12:52:03 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 335151065674 for ; Sat, 4 Dec 2010 12:52:03 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from smtpfb2-g21.free.fr (smtpfb2-g21.free.fr [212.27.42.10]) by mx1.freebsd.org (Postfix) with ESMTP id 9832C8FC19 for ; Sat, 4 Dec 2010 12:52:00 +0000 (UTC) Received: from smtp5-g21.free.fr (smtp5-g21.free.fr [212.27.42.5]) by smtpfb2-g21.free.fr (Postfix) with ESMTP id 4F7E0CA88A5 for ; Sat, 4 Dec 2010 13:35:05 +0100 (CET) Received: from graf.pompo.net (unknown [78.225.128.39]) by smtp5-g21.free.fr (Postfix) with ESMTP id 26E82D480E9 for ; Sat, 4 Dec 2010 13:34:56 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id 04280114A2; Sat, 4 Dec 2010 13:34:50 +0100 (CET) Date: Sat, 4 Dec 2010 13:34:50 +0100 From: Thierry Thomas To: freebsd-ports Message-ID: <20101204123450.GB45846@graf.pompo.net> Mail-Followup-To: freebsd-ports References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aVD9QWMuhilNxW9f" Content-Disposition: inline In-Reply-To: X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.1-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: Proposal moving *spell dicts to ports/textproc/*spell/dicts X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 12:52:03 -0000 --aVD9QWMuhilNxW9f Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le sam 4 d=E9c 10 =E0 11:58:44 +0100, David DEMELIER =E9crivait=A0: > Hi, Hello, > As I said some weeks ago I personally don't like much the use of > ports/{french,chinese,whatever}/ directories. I saw that openbsd > created sub directories in the aspell port. I think this is a really > good idea, it's really easier to find. >=20 > I don't think german/ispell french/aspell textproc/gu-aspell are > really easy to find. >=20 > I propose creating a ports/textproc/aspell/dicts and same for > textproc/ispell and textproc/hunspell and moving every spellings ports > to these directories. I don't know about hunspell and ispell, but aspell's dictionaries are maintained and updated independently, at different dates: its why these are separate ports. Regards, --=20 Th. Thomas. --aVD9QWMuhilNxW9f Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEARECAAYFAkz6NWoACgkQc95pjMcUBaK9IACg0kgSZXDDpOFDuz65dCy1J2ar 0LIAn0kuhrMI2Hf9Uwj9ouO43f9/sU1Q =fBaP -----END PGP SIGNATURE----- --aVD9QWMuhilNxW9f-- From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 17:59:15 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AABA3106566B for ; Sat, 4 Dec 2010 17:59:15 +0000 (UTC) (envelope-from ml@netfence.it) Received: from cp-out9.libero.it (cp-out9.libero.it [212.52.84.109]) by mx1.freebsd.org (Postfix) with ESMTP id 3BDC18FC2C for ; Sat, 4 Dec 2010 17:59:15 +0000 (UTC) Received: from soth.ventu (151.51.58.19) by cp-out9.libero.it (8.5.107) id 4CECDB1501AF30A7 for freebsd-ports@freebsd.org; Sat, 4 Dec 2010 18:59:13 +0100 Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.14.4/8.14.4) with ESMTP id oB4Hx7SA062520 for ; Sat, 4 Dec 2010 18:59:07 +0100 (CET) (envelope-from ml@netfence.it) Message-ID: <4CFA816B.9080505@netfence.it> Date: Sat, 04 Dec 2010 18:59:07 +0100 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; it-IT; rv:1.9.2.12) Gecko/20101028 Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.1.2.13 Subject: emacs and gconf troubles X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 17:59:15 -0000 Hello. I'm having a small, low priority, trouble; more an annoyance in fact. Since a while, if I start an X11 emacs from a terminal window, after I close emacs, the terminal window won't close with Ctrl-D; I have to close the terminal windows by hand. With the latest upgrade, I see the following warning at emacs startup: > (emacs:2267): GLib-WARNING **: In call to g_spawn_sync() > exit status of a child process was requested but SIGCHLD > action was set to SIG_IGN and ECHILD was received by > waitpid(), so exit status can't be returned. This is a bug > in the program calling g_spawn_sync(); either don't request > the exit status, or don't set the SIGCHLD action. > GConf Error: Failed to contact configuration server; some > possible causes are that you need to enable TCP/IP networking > for ORBit, or you have stale NFS locks due to a system crash. > See http://projects.gnome.org/gconf/ for information. > (Details - 1: Failed to get connection to session: Command > line `dbus-launch --autolaunch=b3fbd8cb89ee22fd22fc292600001a5f > --binary-syntax --close-stderr' exited with non-zero exit status > 3429110: ) > > (emacs:2267): GLib-WARNING **: In call to g_spawn_sync(), exit > status of a child process was requested but SIGCHLD action was set > to SIG_IGN and ECHILD was received by waitpid(), so exit status > can't be returned. This is a bug in the program calling > g_spawn_sync(); either don't request the exit status, or don't set the > SIGCHLD action. I really don't understand what I should check... Any help is appreciated. bye & Thanks av. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 18:30:22 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9A3E106566B for ; Sat, 4 Dec 2010 18:30:21 +0000 (UTC) (envelope-from sterling@camdensoftware.com) Received: from wh2.interactivevillages.com (wh2.interactivevillages.com [75.125.250.34]) by mx1.freebsd.org (Postfix) with ESMTP id ADF538FC1C for ; Sat, 4 Dec 2010 18:30:21 +0000 (UTC) Received: from 174-21-106-20.tukw.qwest.net ([174.21.106.20] helo=_HOSTNAME_) by wh2.interactivevillages.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1POxg2-0007l4-Qs for freebsd-ports@freebsd.org; Sat, 04 Dec 2010 11:21:48 -0800 Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sat, 04 Dec 2010 10:30:16 -0800 Date: Sat, 4 Dec 2010 10:30:16 -0800 From: Chip Camden To: freebsd-ports@freebsd.org Message-ID: <20101204183016.GB51632@libertas.local.camdensoftware.com> Mail-Followup-To: freebsd-ports@freebsd.org References: <201012041250.38180.david@vizion2000.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QTprm0S8XgL7H0Dt" Content-Disposition: inline In-Reply-To: <201012041250.38180.david@vizion2000.net> User-Agent: Mutt/1.4.2.3i Company: Camden Software Consulting URL: http://camdensoftware.com X-PGP-Key: http://pgp.mit.edu:11371/pks/lookup?search=0xD6DBAF91 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - wh2.interactivevillages.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - camdensoftware.com Subject: Re: Proposal moving *spell dicts to ports/textproc/*spell/dicts X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 18:30:22 -0000 --QTprm0S8XgL7H0Dt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Quoth David Southwell on Saturday, 04 December 2010: > > Hi, > >=20 > > As I said some weeks ago I personally don't like much the use of > > ports/{french,chinese,whatever}/ directories. I saw that openbsd > > created sub directories in the aspell port. I think this is a really > > good idea, it's really easier to find. > >=20 > > I don't think german/ispell french/aspell textproc/gu-aspell are > > really easy to find. > >=20 > > I propose creating a ports/textproc/aspell/dicts and same for > > textproc/ispell and textproc/hunspell and moving every spellings ports > > to these directories. > On the surface the idea sounds sensible. Maybe there are some issues rela= ting=20 > to consistency across the whole ports tree in the way languages are handl= ed. >=20 > I see no solution being intrinsically better than any other but would ten= d to=20 > favour a consistent approach for all language. We already have one built = in=20 > inconsistencyt -- i.e. english is handled different;ly than any other. >=20 > IMHO one inconsistency is enough!! >=20 This is part of a much larger problem that isn't unique to FreeBSD ports: = the desirable abstractions do not fit into a single hierarchical pattern as represented by directories. I humbly suggest that the directory structure should be kept as simple as possible, hopefully only reflecting one abstraction vector (instead of several as at present: human language, p= rogramming language, framework, application domain, etc.). Then we probably need to develop more useful tools for managing the other abstraction vectors. 'make search', 'pkgsearch', etc. help, but perhaps some form of tagging might be more to the point, with guidelines for porters about what kinds of tags are expected. --=20 Sterling (Chip) Camden | sterling@camdensoftware.com | 2048D/3A978E4F http://camdensoftware.com | http://chipstips.com | http://chipsquips= .com --QTprm0S8XgL7H0Dt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iQEcBAEBAgAGBQJM+oi3AAoJEIpckszW26+ROpsIAIR9buhX3HcWJxvBJL6BxCIa gMLx7ki3cU5xmK+9mndy/DYsGfex8t5q9k4ebayU3dtD7yI+Dnhug6iDH8hyr3gb 6jNU20q1Rtp1ojs9BNXJj5dZUZJSrO+Qi6BR0Xwmvy+Vd0bDAH+XLhclnK13TwLG qN9sGwbRClJGwnoR+A6+ZUBiUnwmOqmkN8+UHtErO1PO2RfyhCffR6yQvboaue6L wstuy+EFs4i4RcQCrn1tyJY34kAp5B+vlOjGlXxma+Gjan3PGOIDoST4yZ1ayh40 6ssINZmxk3bwSKjMqZfOCdUZUfqmHSEFzBOMFQ2lYAlR7sWExnul4n/kVI2IOFA= =57oR -----END PGP SIGNATURE----- --QTprm0S8XgL7H0Dt-- From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 21:10:52 2010 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F4CE106566B for ; Sat, 4 Dec 2010 21:10:52 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id 5EFB58FC17 for ; Sat, 4 Dec 2010 21:10:52 +0000 (UTC) Received: from gate.ipt.ru ([194.62.233.123] helo=bb.ipt.ru) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1POz4f-0001iV-Ad for freebsd-ports@FreeBSD.org; Sat, 04 Dec 2010 23:51:17 +0300 From: Boris Samorodov To: freebsd-ports@FreeBSD.org Date: Sat, 04 Dec 2010 23:51:16 +0300 Message-ID: <17175467@bb.ipt.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: [xsane] scanimage -L coredumps X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 21:10:52 -0000 Hi List, Here is my trouble: ----- (gdb) run Starting program: /usr/local/bin/scanimage (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)...[New LWP 100205] Program received signal SIGSEGV, Segmentation fault. [Switching to LWP 100205] 0x282168d5 in pthread_setcancelstate () from /lib/libthr.so.3 (gdb) bt #0 0x282168d5 in pthread_setcancelstate () from /lib/libthr.so.3 #1 0x2820fcac in open () from /lib/libthr.so.3 #2 0x283d5269 in __stack_chk_fail () from /lib/libssp.so.0 #3 0x00000000 in ?? () #4 0x28083cc0 in ?? () from /libexec/ld-elf.so.1 #5 0x00000000 in ?? () #6 0x00000000 in ?? () #7 0x00000000 in ?? () #8 0x00000000 in ?? () #9 0x283d6530 in ?? () from /lib/libssp.so.0 #10 0x283d651c in ?? () from /lib/libssp.so.0 #11 0xbfbfeae8 in ?? () #12 0xbfbfe518 in ?? () #13 0x283d52d5 in __stack_chk_fail () from /lib/libssp.so.0 #14 0x28091840 in ?? () #15 0xbfbfe558 in ?? () #16 0x283d48f1 in ?? () from /lib/libssp.so.0 #17 0x2809e200 in ?? () #18 0x280832f8 in ?? () from /libexec/ld-elf.so.1 #19 0xbfbfe558 in ?? () #20 0x28057d33 in dlsym () from /libexec/ld-elf.so.1 Previous frame inner to this frame (corrupt stack?) (gdb) % uname -a FreeBSD h30.sp.ipt.ru 8.1-STABLE FreeBSD 8.1-STABLE #5 r215569: Sat Nov 20 19:23:06 MSK 2010 bsam@h30.sp.ipt.ru:/home/bsam/FreeBSD/base/stable/8/obj/home/bsam/FreeBSD/base/stable/8/src/sys/INDUS i386 % pkg_info -Ix sane sane-backends-1.0.21_1 API for access to scanners, digitals camera, frame grabbers xsane-0.996_4 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) ----- Any help is appreciated. -- WBR, bsam From owner-freebsd-ports@FreeBSD.ORG Sat Dec 4 22:36:28 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03FCA106564A for ; Sat, 4 Dec 2010 22:36:28 +0000 (UTC) (envelope-from simon@nitro.dk) Received: from smtp.fullrate.dk (smtp.fullrate.dk [90.185.1.42]) by mx1.freebsd.org (Postfix) with ESMTP id BAC6B8FC16 for ; Sat, 4 Dec 2010 22:36:27 +0000 (UTC) Received: from [192.168.4.26] (4304ds2-vlb.1.fullrate.dk [90.184.171.166]) by smtp.fullrate.dk (Postfix) with ESMTP id 384319CFD9; Sat, 4 Dec 2010 23:19:21 +0100 (CET) Mime-Version: 1.0 (Apple Message framework v1082) Content-Type: text/plain; charset=us-ascii From: "Simon L. B. Nielsen" In-Reply-To: <4CF45E7A.80102@DataIX.net> Date: Sat, 4 Dec 2010 23:19:21 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <577F106B-B752-42D8-9B22-4CF0AAD06FCC@nitro.dk> References: <4CF38D7F.6070206@gmx.de> <4CF3F16E.3020501@DataIX.net> <4CF439F1.6050703@gmx.de> <4CF45E7A.80102@DataIX.net> To: jhell X-Mailer: Apple Mail (2.1082) Cc: Matthias Andree , freebsd-ports@freebsd.org Subject: Re: packages compressed with xz X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2010 22:36:28 -0000 On 30 Nov 2010, at 03:16, jhell wrote: > Agreed. Soon can be quantified by actual need and of which there is = not > much need except for larger packages but adding this would just add > unneeded complication to the system that is already in place. We are running out of diskspace on event the FTP master site - currently = we are at ~1TB. The xz compression gives as significant space saving - = so there is already a need. PS. anyone saying a 1 TB etc. disk is cheap will be ignored. --=20 Simon L. B. Nielsen