From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 03:08:10 2012 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 5BFFB106564A for ; Sun, 30 Sep 2012 03:08:10 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id BBC868FC08 for ; Sun, 30 Sep 2012 03:08:09 +0000 (UTC) Received: (qmail 16200 invoked by uid 89); 30 Sep 2012 03:08:02 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@79.251.9.2) by mail.grem.de with ESMTPA; 30 Sep 2012 03:08:02 -0000 Date: Sun, 30 Sep 2012 05:08:03 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20120930050803.7914caf6@bsd64.grem.de> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Problems submitting patch containing UTF-8 characters 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, 30 Sep 2012 03:08:10 -0000 Hi, I recently ran into a problem submitting a PR containing UTF-8 characters, they ended up garbled, so the maintainer couldn't apply the patch cleanly. http://www.freebsd.org/cgi/query-pr.cgi?pr=171645 The characters included were 0xe4 0xb8 0xad and 0xe5 0x9b 0xbd (two three byte characters). The code affected is about testing utf-8, so the characters are required. And even if not, patching them away would require stating them as part of the patch. The original e-mail was created using porttools and therefore had no character set specification, which usually shouldn't be a problem. The patch was just inline as part of the body. http://www.freebsd.org/cgi/query-pr.cgi?pr=171645&getpatch=1 The character sequence had been recoded to 0xc3 0xa4 0xc2 0xb8 0xc2 0xad 0xc3 0xa5 0xc2 0x9b 0xc2 0xbd It seems like it had been interpreted as latin1 on receipt and then reencoded as utf-8: 0xe4 => 0xc3 0xa4 0xb8 => 0xc2 0xb8 0xad => 0xc2 0xad 0xe5 => 0xc3 0xa5 0x9b => 0xc2 0x9b 0xbd => 0xc2 0xbd Which is obviously not what should happen. The recipient shouldn't make any assumptions about the character set used. The next attempt was sending the patch as a bug-followup through a graphical MUA. The patch was attached and had been encoded as quoted-printable (no specific charset specification): +-configPath =3D u"./config/=E4=B8=AD=E5=9B=BD_client.config" ++configPath =3D u"./config/=E4=B8=AD=E5=9B=BD_client.config".encode("utf-8=") http://www.freebsd.org/cgi/query-pr.cgi?pr=171645&getpatch=2 Unfortunately the results are the same. I did not try forcing a charset by manually modifying the email (not sure if this will work, I'm willing to test, but I don't want to further litter that PR). At this point I figured, that sending the patch in gzipped format might help. Said and done, the patch shows up as base64 in the PR. When copy and pasting and decoding the base64 text, the resulting .gz can be decompressed correctly and the content is what I expected. When clicking the download link though: http://www.freebsd.org/cgi/query-pr.cgi?pr=171645&getpatch=3 The resulting .gz file has the correct file size, but is corrupted. Checking it using the hex editor it looks like it has been reencoded as utf-8 (and then truncated at the expected file size): Hex of the original file (first 16 bytes): 1f 8b 08 08 ad 79 65 50 00 03 70 79 32 37 2d 49 Hex of the file downloaded by using the link: 1f c2 8b 08 08 c2 ad 79 65 50 00 03 70 79 32 37 As you can see, all non 7bit characters have been utf-8 encoded, which is pretty suboptimal in a binary file. 0x8b => 0xc2 0x8b 0xad => 0xc2 0xad ... As a result the truncated and utf-8 encoded gzip file cannot be decompressed. I'm relatively certain that this has worked at some point in the past. Ideas anyone? Thanks, -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 10:16:23 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A839F106564A for ; Sun, 30 Sep 2012 10:16:23 +0000 (UTC) (envelope-from jamie@kode5.net) Received: from kontrol.kode5.net (kontrol.kode5.net [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id 1C33B8FC08 for ; Sun, 30 Sep 2012 10:16:22 +0000 (UTC) Received: from kontrol.kode5.net (localhost [127.0.0.1]) by kontrol.kode5.net (8.14.5/8.14.5) with ESMTP id q8UAGEr5013856 for ; Sun, 30 Sep 2012 11:16:15 +0100 (BST) (envelope-from jamie@kode5.net) Received: (from jamie@localhost) by kontrol.kode5.net (8.14.5/8.14.5/Submit) id q8UAGEqY013855 for freebsd-ports@freebsd.org; Sun, 30 Sep 2012 11:16:14 +0100 (BST) (envelope-from jamie@kode5.net) X-Authentication-Warning: kontrol.kode5.net: jamie set sender to jamie@kode5.net using -f Date: Sun, 30 Sep 2012 11:16:14 +0100 From: Jamie Paul Griffin To: FreeBSD Ports Message-ID: <20120930101614.GA13820@kontrol.kode5.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline x-operating-system: FreeBSD 9.1-PRERELEASE amd64 x-pgp-fingerprint: A4B9 E875 A18C 6E11 F46D B788 BEE6 1251 1D31 DC38 x-pgp-key: 1D31DC38 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at kontrol.kode5.net X-Virus-Status: Clean Subject: Installing non-ports software into /usr/local 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, 30 Sep 2012 10:16:23 -0000 Hi I am having an issue with mutt 1.5.21. I have set up different colour schemes, etc. as people do. Anyway, I reinstalled it 2 days ago using the ports system, because I wanted to link mutt to the ncurses port rather than the system ncurses installation. After soing non of my colours show, only those that are set from within my terminal emulator which is urxvt. Initially, I had a problem during make(1) which related to the iconv library. I have iconv set as an option in my kernel configuration. the error suggested something about using libiconv instead. Anyway, I managed to overcome that and build it and istall it again but without colour. I'm wondering if I could/should build it my self from source and install it into /usr/local to see if that makes any difference. Would doing that cause problems for the ports system? Any comments and advice are welcome. Best wishes, Jamie From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 10:48:24 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD045106564A for ; Sun, 30 Sep 2012 10:48:24 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4D6A78FC08 for ; Sun, 30 Sep 2012 10:48:23 +0000 (UTC) Received: by lage12 with SMTP id e12so1891130lag.13 for ; Sun, 30 Sep 2012 03:48:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=1NDezIOx8XPmcL39eafy7BUV9Ph6bQ1mEcQYShwVAmg=; b=dN8a2V4DAQJQufwsvHeizaRhPYQR8XfwJAgAKfMLr1rrwa9Wu+RZD6cn4L4kynzhAu Ux1O4gVj9f22qoGQEK/j/uMS35dTEgRr6v9Ug+U0qk0fD6UqRuc5sbn9RSOPeVu3Sb4F 4jCOTc4Ul1kZW+JwXWrS4r/LWEC4gET5R0q/F9ePWN904NJeR8bmuSBL9RiaKmHQPZYo zdo4dHb/Ngyyo6V048qsruBNP/Zkx1nXZueyXrUOOD88Ig8WWtHJBNgvZEiiCsiq8H4z KN0xlQi4qSJhg2b8P6G9XmaEj3Nhe6ZYVWyvdxtRWXZnGS8rEAubuL6YcCuiTFVFsT1n oUdQ== Received: by 10.112.26.197 with SMTP id n5mr4331510lbg.18.1349002102515; Sun, 30 Sep 2012 03:48:22 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.112.100.133 with HTTP; Sun, 30 Sep 2012 03:47:52 -0700 (PDT) In-Reply-To: <20120930101614.GA13820@kontrol.kode5.net> References: <20120930101614.GA13820@kontrol.kode5.net> From: Chris Rees Date: Sun, 30 Sep 2012 11:47:52 +0100 X-Google-Sender-Auth: 5B0dbgmZv8lbKVNNRTZ3ohWLVys Message-ID: To: Jamie Paul Griffin , udo.schweigert@siemens.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Ports Subject: Re: Installing non-ports software into /usr/local 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, 30 Sep 2012 10:48:24 -0000 On 30 September 2012 11:16, Jamie Paul Griffin wrote: > Hi > > I am having an issue with mutt 1.5.21. I have set up different colour sch= emes, etc. as people do. Anyway, I reinstalled it 2 days ago using the port= s system, because I wanted to link mutt to the ncurses port rather than the= system ncurses installation. After soing non of my colours show, only thos= e that are set from within my terminal emulator which is urxvt. Initially, = I had a problem during make(1) which related to the iconv library. I have i= conv set as an option in my kernel configuration. the error suggested somet= hing about using libiconv instead. > > Anyway, I managed to overcome that and build it and istall it again but w= ithout colour. I'm wondering if I could/should build it my self from source= and install it into /usr/local to see if that makes any difference. Would = doing that cause problems for the ports system? > > Any comments and advice are welcome. Best wishes, Jamie As long as you don't install it from the port, which would overwrite your version, there would be no trouble with this. If you come up with a solution, please send a PR in which the maintainer will I'm sure be glad to look at :) Chris From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 11:34:33 2012 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 5B525106566B for ; Sun, 30 Sep 2012 11:34:33 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id EA2AE8FC08 for ; Sun, 30 Sep 2012 11:34:31 +0000 (UTC) Received: by yenl8 with SMTP id l8so878016yen.13 for ; Sun, 30 Sep 2012 04:34:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=x5dkL90HmXqgvgoTyUnQXUxrbS/7AI539w21NFodaUE=; b=J3PFZ/M6t5CI3d6g+C2zBWl295BOQnZW9oLlQ57sev6Nq/O1ZlwCsbLqbUNPE7h3DL md/69tD4c7cP2iTuiDWbizcvqQz+Ix3ThSFmJixxRasEDJEFzZrox6lJNsJ1OcDxZsJW 7FXhY/qak7GilIQBaa+6PBkRpVFqpqV5TTV68= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=x5dkL90HmXqgvgoTyUnQXUxrbS/7AI539w21NFodaUE=; b=oIaYmeJZUUNVWrXnRPaR3ed0rVsvK30Fc49qaj7aEPa2OzOse5IjRWk+0xUjiJkxQp s6TpqwvSDTmMdh1wbKr0HFQ9OOZuI0PGnl1k65zodlkNYQnc27A698x3/4Ac0pClpNdu ws/5UCZFguOTrRpgCgFXGCaPgcavbMIjmD4anVD3QxVg3yz95X+EmRQRSK6N/RHTjute rx25QDmCY22MWsmW6hk7g82jSgP9K3rJ3kcMkDoBcts8szVenY/anhGQoE0eVOqFSByN /d8fGAM3R1DWgrwYQAKVT8xA2QwJC8CvVvIs73H0rUcicPtrPs626etU7237e2DPhaPg /H4w== Received: by 10.236.189.68 with SMTP id b44mr12564230yhn.82.1349004864819; Sun, 30 Sep 2012 04:34:24 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id t46sm21379276yhi.3.2012.09.30.04.34.22 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 30 Sep 2012 04:34:23 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XV4K92ttcz2CG5t for ; Sun, 30 Sep 2012 07:34:21 -0400 (EDT) Date: Sun, 30 Sep 2012 07:34:20 -0400 From: Jerry To: freebsd-ports@freebsd.org Message-ID: <20120930073420.24820e22@scorpio> In-Reply-To: <2038073558.11093674.1348957276346.JavaMail.root@k-state.edu> References: <20120929063644.056508e0@scorpio> <2038073558.11093674.1348957276346.JavaMail.root@k-state.edu> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQnJ8U+OfyRq/IpqZ0/anONiVZF+JqFTWtPgtiA7u97wRFpwJUG6ObxNL8aJOBtds8VKuhmy Subject: Re: CFT: x11/nvidia-driver major update to 304.xx series X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Sep 2012 11:34:33 -0000 On Sat, 29 Sep 2012 18:21:16 -0400 (EDT) Lawrence K. Chen, P.Eng. articulated: > I mentioned in my first post that I already tried rebuilding > everything on up. =46rom your original post: Tried rebuilding a bunch of other things, but didn't help. The word "bunch" !=3D "build or run dependencies" in my vocabulary. Nor does it indicate, or at least not to me anyway, that you actually rebuilt all required run or build dependencies. Sorry about the misunderstanding. I'll leave you to figure out the problem yourself. --=20 Jerry =E2=99=94 Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ All the evidence concerning the universe has not yet been collected, so there's still hope. From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 11:43:19 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A19F106566B for ; Sun, 30 Sep 2012 11:43:19 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id A87F08FC08 for ; Sun, 30 Sep 2012 11:43:18 +0000 (UTC) Received: by yenl8 with SMTP id l8so878533yen.13 for ; Sun, 30 Sep 2012 04:43:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=izzg6NFMEnjPfU1UbIljfCFaDCMpWRD5srjs2BeTpFY=; b=a05sh0L3tpn6X7qnPhmBPxicFCNQYOvFhXy/CvbyrpB4+7IMk3umk75JE8jSKyyYP5 vwzwCw/+V9yjHDkYPhGsLq/jackPMTHr4PWUbd3mCM+cRnrhSIBRDppCbcNZGtISj79E xRIxOl6JklSYQ6A05xtG9aDGMDpe9+tkxoO9U= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=izzg6NFMEnjPfU1UbIljfCFaDCMpWRD5srjs2BeTpFY=; b=jzMML8PC5k1CYrrgRbMmFPhg2I0X66f8XHMFqIuOdQPJqDuz1JdMnOSmJGUf8BERnT /ejzQIdL56CmedSnzIRKe/bH+FnvYwx370XtHMPgy6jU4VJJ2v6QxPFC9jiqZnjCg4yK 0Weyy2SJLvyO1jLwmLg4+KYzGV4kyXkYGuXoThloDpQ6RyaK/Xy3hMLh9Vj9bRDRdafv zDSU3q2+ZwqanpcT/M1waKWXDr+fbVcWZRz0DDSAmuCpNjYqKAKtd8jQe0a9iXaOpmWa XTxCtcBs5X/Qtn1jfyoNztOs902qRE7j1qpyLfjyYvU0WavKobmRx/JfPtOEKQSnjmJb q2hA== Received: by 10.236.108.202 with SMTP id q50mr12721158yhg.6.1349005398061; Sun, 30 Sep 2012 04:43:18 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id v8sm21390465yhi.15.2012.09.30.04.43.16 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 30 Sep 2012 04:43:17 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XV4WR0Xx1z2CG5t for ; Sun, 30 Sep 2012 07:43:15 -0400 (EDT) Date: Sun, 30 Sep 2012 07:43:14 -0400 From: Jerry To: freebsd-ports@freebsd.org Message-ID: <20120930074314.013e793a@scorpio> In-Reply-To: References: <5066F61C.5050704@passap.ru> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQliph9U+SqbS5pgyWWpuK1CsFrlpL2YQmnDcdNKwxYashhdsVfIoQ2jEAS2P84Nx6V7iTB2 Subject: Re: huge distfiles policy X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Sep 2012 11:43:19 -0000 On Sat, 29 Sep 2012 15:15:01 -0700 Kevin Oberman articulated: > CDROMs are not getting bigger, but the size of disks just continue to > increase. However, DVD's can easily handle a paltry 1.4GB. All modern systems come with DVD's so perhaps it is time to embrace progress and move forward with our thinking and not chain ourselves to the past. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ TLC announced that "Honey Boo Boo" will have a Halloween special. Their neighbors are planning to give them a scare by dressing up as child protective services. From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 12:55:53 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09257106564A for ; Sun, 30 Sep 2012 12:55:53 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 6D6208FC08 for ; Sun, 30 Sep 2012 12:55:51 +0000 (UTC) Received: (qmail 22814 invoked by uid 89); 30 Sep 2012 12:55:49 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.137.96.220) by mail.grem.de with ESMTPA; 30 Sep 2012 12:55:49 -0000 Date: Sun, 30 Sep 2012 14:55:48 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20120930145548.59b03149@bsd64.grem.de> In-Reply-To: <20120930050803.7914caf6@bsd64.grem.de> References: <20120930050803.7914caf6@bsd64.grem.de> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Problems submitting patch containing UTF-8 characters 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, 30 Sep 2012 12:55:53 -0000 On Sun, 30 Sep 2012 05:08:03 +0200 Michael Gmelin wrote: > Hi, > > I recently ran into a problem submitting a PR containing UTF-8 > characters, they ended up garbled, so the maintainer couldn't apply > the patch cleanly. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=171645 > > The characters included were 0xe4 0xb8 0xad and 0xe5 0x9b 0xbd (two > three byte characters). The code affected is about testing utf-8, so > the characters are required. And even if not, patching them away would > require stating them as part of the patch. > > The original e-mail was created using porttools and therefore had no > character set specification, which usually shouldn't be a problem. The > patch was just inline as part of the body. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=171645&getpatch=1 > > The character sequence had been recoded to > 0xc3 0xa4 0xc2 0xb8 0xc2 0xad 0xc3 0xa5 0xc2 0x9b 0xc2 0xbd > > It seems like it had been interpreted as latin1 on receipt and then > reencoded as utf-8: > 0xe4 => 0xc3 0xa4 > 0xb8 => 0xc2 0xb8 > 0xad => 0xc2 0xad > 0xe5 => 0xc3 0xa5 > 0x9b => 0xc2 0x9b > 0xbd => 0xc2 0xbd > > Which is obviously not what should happen. The recipient shouldn't > make any assumptions about the character set used. > > The next attempt was sending the patch as a bug-followup through a > graphical MUA. The patch was attached and had been encoded as > quoted-printable (no specific charset specification): > > +-configPath =3D u"./config/=E4=B8=AD=E5=9B=BD_client.config" > ++configPath =3D > u"./config/=E4=B8=AD=E5=9B=BD_client.config".encode("utf-8=") > > http://www.freebsd.org/cgi/query-pr.cgi?pr=171645&getpatch=2 > > Unfortunately the results are the same. I did not try forcing a > charset by manually modifying the email (not sure if this will work, > I'm willing to test, but I don't want to further litter that PR). > > At this point I figured, that sending the patch in gzipped format > might help. Said and done, the patch shows up as base64 in the PR. > When copy and pasting and decoding the base64 text, the resulting .gz > can be decompressed correctly and the content is what I expected. When > clicking the download link though: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=171645&getpatch=3 > > The resulting .gz file has the correct file size, but is corrupted. > Checking it using the hex editor it looks like it has been reencoded > as utf-8 (and then truncated at the expected file size): > > Hex of the original file (first 16 bytes): > 1f 8b 08 08 ad 79 65 50 00 03 70 79 32 37 2d 49 > > Hex of the file downloaded by using the link: > 1f c2 8b 08 08 c2 ad 79 65 50 00 03 70 79 32 37 > > As you can see, all non 7bit characters have been utf-8 encoded, which > is pretty suboptimal in a binary file. > > 0x8b => 0xc2 0x8b > 0xad => 0xc2 0xad > ... > > As a result the truncated and utf-8 encoded gzip file cannot be > decompressed. > > I'm relatively certain that this has worked at some point in the past. > > Ideas anyone? > > Thanks, > By the way, the two three byte sequences mean "China", see also http://goo.gl/4muUF -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 14:29:03 2012 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 87871106564A for ; Sun, 30 Sep 2012 14:29:03 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from alpha.inerd.com (alpha.inerd.com [204.109.56.118]) by mx1.freebsd.org (Postfix) with ESMTP id 5D8248FC08 for ; Sun, 30 Sep 2012 14:29:03 +0000 (UTC) Received: from charon.picobyte.net (localhost [127.0.0.1]) by alpha.inerd.com (Postfix) with ESMTP id 268A8147CD9; Sun, 30 Sep 2012 14:19:36 +0000 (UTC) Date: Sun, 30 Sep 2012 15:19:36 +0100 From: Shaun Amott To: Michael Gmelin Message-ID: <20120930141935.GA88537@charon.picobyte.net> References: <20120930050803.7914caf6@bsd64.grem.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20120930050803.7914caf6@bsd64.grem.de> User-Agent: Mutt/1.5.20 (FreeBSD i386) Cc: freebsd-ports@freebsd.org Subject: Re: Problems submitting patch containing UTF-8 characters 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, 30 Sep 2012 14:29:03 -0000 On Sun, Sep 30, 2012 at 05:08:03AM +0200, Michael Gmelin wrote: > I recently ran into a problem submitting a PR containing UTF-8 > characters, they ended up garbled, so the maintainer couldn't apply the > patch cleanly. GNATS, unfortunately, records no information about character encoding. To make matters worse, it actually removes many headers from e-mail replies, meaning query-pr.cgi can usually only work on guesses and assumptions. Headers are however preserved inside MIME parts, and if there are any of these headers, they are used; but in this case your MUA hasn't included encoding information here. Shaun -- Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 14:33:42 2012 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 4F297106564A for ; Sun, 30 Sep 2012 14:33:42 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 632D78FC08 for ; Sun, 30 Sep 2012 14:33:39 +0000 (UTC) Received: (qmail 24087 invoked by uid 89); 30 Sep 2012 14:33:38 -0000 Received: from unknown (HELO ?10.38.147.145?) (mg@grem.de@109.43.0.99) by mail.grem.de with ESMTPA; 30 Sep 2012 14:33:38 -0000 References: <20120930050803.7914caf6@bsd64.grem.de> <20120930141935.GA88537@charon.picobyte.net> From: Michael Gmelin Content-Type: text/plain; charset=us-ascii X-Mailer: iPhone Mail (10A403) In-Reply-To: <20120930141935.GA88537@charon.picobyte.net> Message-Id: <25078838-7464-440D-8977-DC2671AE03F3@grem.de> Date: Sun, 30 Sep 2012 16:33:15 +0200 To: "freebsd-ports@freebsd.org" Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (1.0) Subject: Re: Problems submitting patch containing UTF-8 characters 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, 30 Sep 2012 14:33:42 -0000 On 30 Sep 2012, at 16:19, Shaun Amott wrote: > On Sun, Sep 30, 2012 at 05:08:03AM +0200, Michael Gmelin wrote: >> I recently ran into a problem submitting a PR containing UTF-8 >> characters, they ended up garbled, so the maintainer couldn't apply the >> patch cleanly. >=20 > GNATS, unfortunately, records no information about character encoding. > To make matters worse, it actually removes many headers from e-mail > replies, meaning query-pr.cgi can usually only work on guesses and > assumptions. >=20 > Headers are however preserved inside MIME parts, and if there are any of > these headers, they are used; but in this case your MUA hasn't included > encoding information here. >=20 > Shaun >=20 > --=20 > Shaun Amott // PGP: 0x6B387A9A > "A foolish consistency is the hobgoblin > of little minds." - Ralph Waldo Emerson The question remains though, why is it trying to re-encode characters as UTF8= when it just received what should be 8bit ASCII to it (passing it through t= ransparently should work)? Especially in case of a binary attachment (which i= t shows correctly in base64 encoded form but tries to UTF-8 encode on downlo= ad). To me this looks like a (web server?) configuration issue.= From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 15:31:26 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E5E5E106564A; Sun, 30 Sep 2012 15:31:26 +0000 (UTC) (envelope-from romain@blogreen.org) Received: from marvin.blogreen.org (unknown [IPv6:2001:470:1f12:b9c::2]) by mx1.freebsd.org (Postfix) with ESMTP id 94AF68FC0A; Sun, 30 Sep 2012 15:31:26 +0000 (UTC) Received: by marvin.blogreen.org (Postfix, from userid 1001) id 8D2F52A0D4; Sun, 30 Sep 2012 17:31:25 +0200 (CEST) Date: Sun, 30 Sep 2012 17:31:25 +0200 From: Romain =?iso-8859-1?Q?Tarti=E8re?= To: Baptiste Daroussin Message-ID: <20120930153124.GA4461@blogreen.org> References: <5066F61C.5050704@passap.ru> <20120929221703.GA70616@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120929221703.GA70616@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: hrs@FreeBSD.org, =?utf-8?B?0JHQvtGA0LjRgSDQodCw0LzQvtGA0L7QtNC+0LI=?= , Ports FreeBSD Subject: Re: huge distfiles policy 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, 30 Sep 2012 15:31:27 -0000 Hi! On Sun, Sep 30, 2012 at 12:17:03AM +0200, Baptiste Daroussin wrote: > My second concern was discussed when Dominic Fandrey called for testing this > port: at least 2 people have been working on texlive with different approach: > hrs and romain. > > In particular Romain and I discussed on merging texlive to the ports tree based > on http://code.google.com/p/freebsd-texlive/ he has been contacted some company > to mirror the splitted distfiles for us, and was suppose to resumer his work on > this when back from vacations which should be the case now given that he has > done some commit last week :D > > I CCed both hrs and romain so they can give their opinion and the status of > their work. Yes, after 2 months away, I am back :-) While I was away, - I received access to a jail for hosting versionned distfiles; - I received a mail from hrs@ where he exposes a migration plan to TeX Live and asked for comments / suggestions. I replied to hrs@ and told him I would be happy to help, but have no feedback yet. Regarding the mirror of versionned distfiles, I have everything to set it up I think, and I just have to take some time to hack something that do the right thing and use it in my ports. However, since there are some boring flaws in the updating infrastructure, I postponed this, thinking that an answer from hrs@ would have lead to working on funnier things (with a better infrastructure). While I have no news, I may however setup the repository, it won't hurt I guess. Best regards, Romain From owner-freebsd-ports@FreeBSD.ORG Sun Sep 30 16:31:35 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADDE4106566B for ; Sun, 30 Sep 2012 16:31:35 +0000 (UTC) (envelope-from desshi66@gmail.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7CDAB8FC19 for ; Sun, 30 Sep 2012 16:31:35 +0000 (UTC) Received: by padbi1 with SMTP id bi1so3998537pad.13 for ; Sun, 30 Sep 2012 09:31:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=evUfGcWunAHiiri8FhMy7Y/X8Nwb90+r7RL58b8m3rM=; b=ax2Y/hmdZ00zHECdk2IPmQW1xabHL+ycj/FDyqGqyDAhQFcfmQlmwN2vUhX7s4gzzS WTq3zOTHSDi4MxQfSXxc6RIqeBsB3/EGBk0r1Z0yCwHqfKAMgfhYHEOXhv1vTUbIK4a/ rZn/abTOS+xxlW/qivzy/aBJoDdu26DthaEYocvg7rbUYo10flGcM7eKC7zkSNDDrwJe RO6pvO8s+s04GgemVVcqfTQ/B2pOlngif/w07jG3qw8D+XoYBOtDc3+VnP/NuqqglsGV Dw+cNbCRrnadoaEHNMGzBCCEt7ROlc44ecv86UBqTCgFEyYUGbfhuyRC2YRU3tq83WQo 27Ew== Received: by 10.68.222.226 with SMTP id qp2mr34762945pbc.57.1349022694483; Sun, 30 Sep 2012 09:31:34 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.253.3 with HTTP; Sun, 30 Sep 2012 09:31:14 -0700 (PDT) In-Reply-To: <20120930120040.E125110656B9@hub.freebsd.org> References: <20120930120040.E125110656B9@hub.freebsd.org> From: Boniek Date: Sun, 30 Sep 2012 11:31:14 -0500 Message-ID: To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: freebsd-ports Digest, Vol 488, Issue 9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: desshi@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Sep 2012 16:31:35 -0000 GIMP 2.8 is new version for installer with gratulation that is very easy , first deinstall png 1.4.x dependecy of graphic,kde,firefox,etc.. and muches modules.. next install GIMP 2.8 more png-1.5 and then finish .011001100110. 2012/9/30 > Send freebsd-ports mailing list submissions to > freebsd-ports@freebsd.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > or, via email, send a message with subject or body 'help' to > freebsd-ports-request@freebsd.org > > You can reach the person managing the list at > freebsd-ports-owner@freebsd.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of freebsd-ports digest..." > > > Today's Topics: > > 1. huge distfiles policy (????? ?????????) > 2. graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? (O. Hartmann) > 3. Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > (Heino Tiedemann) > 4. Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > (Ruslan Mahmatkhanov) > 5. Re: huge distfiles policy (Eitan Adler) > 6. Re: Wanted ports razor-qt (Cpet Services) > 7. Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? (O. Hartmann) > 8. Re: Question about postgresql 9 and pg_upgrade (Axel Rau) > 9. Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > (Heino Tiedemann) > 10. Re: huge distfiles policy (Chris Rees) > 11. Re: Question about postgresql 9 and pg_upgrade (Palle Girgensohn) > 12. Re: huge distfiles policy (Kevin Oberman) > 13. Re: huge distfiles policy (Baptiste Daroussin) > 14. Re: CFT: x11/nvidia-driver major update to 304.xx series > (Lawrence K. Chen, P.Eng.) > 15. Problems submitting patch containing UTF-8 characters > (Michael Gmelin) > 16. Installing non-ports software into /usr/local (Jamie Paul Griffin) > 17. Re: Installing non-ports software into /usr/local (Chris Rees) > 18. Re: CFT: x11/nvidia-driver major update to 304.xx series (Jerry) > 19. Re: huge distfiles policy (Jerry) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 29 Sep 2012 17:22:36 +0400 > From: ????? ????????? > Subject: huge distfiles policy > To: Ports FreeBSD > Message-ID: <5066F61C.5050704@passap.ru> > Content-Type: text/plain; charset=3DUTF-8; format=3Dflowed > > Hi All, > > I'm about to commit print/texlive ports (PR/171571). One of it's ports > (print/texlive-texmf) has size approx. 1.4 Gb. > > What is the current policy upon huge ports? Should I restrict someting > to not build at, say, pointyhat? Something else? > > Thanks! > -- > WBR, Boris Samorodov (bsam) > FreeBSD Committer, http://www.FreeBSD.org The Power To Serve > > > ------------------------------ > > Message: 2 > Date: Sat, 29 Sep 2012 16:44:24 +0200 > From: "O. Hartmann" > Subject: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > To: Ports FreeBSD > Message-ID: <50670948.9040401@zedat.fu-berlin.de> > Content-Type: text/plain; charset=3D"iso-8859-15" > > I'm wondering why FreeBSD ports takes so long to update quite oldish > gimp-2.6 to gimp-2.8. Does anyone know what the stoppers are and where > solutions needed? > > Some of the prerequisites for GIMP 2.8 are compiling well (as isolated > packages, not in combination with gimp 2.8), like graphics/gegel (0.2.0) > or x11/bab; 0.1.10 (port has still 0.1.6). > > Oliver > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 488 bytes > Desc: OpenPGP digital signature > Url : > http://lists.freebsd.org/pipermail/freebsd-ports/attachments/20120929/bf4= e7a54/signature-0001.pgp > > ------------------------------ > > Message: 3 > Date: Sat, 29 Sep 2012 17:20:59 +0200 > From: Heino Tiedemann > Subject: Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > To: freebsd-ports@freebsd.org > Message-ID: > Content-Type: text/plain > > "O. Hartmann" wrote: > > > I'm wondering why FreeBSD ports takes so long to update quite oldish > > gimp-2.6 to gimp-2.8. Does anyone know what the stoppers are and where > > solutions needed? > > Mee too. gimp 2.8 is from march(!) 2012 - now it is olmost october und > nothing happened.. > > This - and sometime the old graphics/rawtherapee port - makes FreeBSD > a litle unusable for foto-editing > > > Heino > > > > ------------------------------ > > Message: 4 > Date: Sat, 29 Sep 2012 20:11:55 +0400 > From: Ruslan Mahmatkhanov > Subject: Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > To: rotkap@gmx.de > Cc: "O. Hartmann" , > freebsd-ports@freebsd.org > Message-ID: <50671DCB.8050200@yandex.ru> > Content-Type: text/plain; charset=3DISO-8859-1; format=3Dflowed > > Hi! > > Heino Tiedemann wrote on 29.09.2012 19:20: > > "O. Hartmann" wrote: > > > >> I'm wondering why FreeBSD ports takes so long to update quite oldish > >> gimp-2.6 to gimp-2.8. Does anyone know what the stoppers are and where > >> solutions needed? > > > > Mee too. gimp 2.8 is from march(!) 2012 - now it is olmost october und > > nothing happened.. > > > > This - and sometime the old graphics/rawtherapee port - makes FreeBSD > > a litle unusable for foto-editing > > > > > > Heino > > As far I know, the gimp and gnome update will not be done until FreeBSD > 9.1 will be released (a couple of weeks at minimum). But in a mean time > you can update the required ports manually, using this archive: > > http://people.freebsd.org/~rm/gimp.tgz > > Note: please do not just copy them over the current ports, because there > is some patches, that should be removed first to make things working! > > And. What is wrong with rawtherapee? It's on it's latest version as far > I understand. > > -- > Regards, > Ruslan > > Tinderboxing kills... the drives. > > > ------------------------------ > > Message: 5 > Date: Sat, 29 Sep 2012 12:46:41 -0400 > From: Eitan Adler > Subject: Re: huge distfiles policy > To: ????? ????????? > Cc: Ports FreeBSD > Message-ID: > j6Tw51musYVknB3fUH6b5hr27iHXWJz-UzKsVrHTBA@mail.gmail.com> > Content-Type: text/plain; charset=3DUTF-8 > > On 29 September 2012 09:22, =D0=91=D0=BE=D1=80=D0=B8=D1=81 =D0=A1=D0=B0= =D0=BC=D0=BE=D1=80=D0=BE=D0=B4=D0=BE=D0=B2 wrote: > > Hi All, > > > > I'm about to commit print/texlive ports (PR/171571). One of it's ports > > (print/texlive-texmf) has size approx. 1.4 Gb. > > > > What is the current policy upon huge ports? Should I restrict someting > > to not build at, say, pointyhat? Something else? > > I believe others have set MANUAL_PACKAGE_BUILD=3D huge though I'm not > certain if this is because the distfile is large, or the final package > is large (although in this case both are true) > > -- > Eitan Adler > > > ------------------------------ > > Message: 6 > Date: Sat, 29 Sep 2012 11:47:21 -0500 > From: Cpet Services > Subject: Re: Wanted ports razor-qt > To: Pawel Pekala > Cc: freebsd-ports@freebsd.org > Message-ID: > gD4gSOHRALQK14oQpULvqQ@mail.gmail.com> > Content-Type: text/plain; charset=3DUTF-8 > > Ok, thank you for the heads up. > > On Fri, Sep 28, 2012 at 10:46 AM, Pawel Pekala wrote: > > > Dnia 2012-09-27, o godz. 01:47:23 > > Cpet Services napisa=C5=82(a): > > > > >Anyone working on this, thinking of working on this or has plans to > > >work on this? > > > > I started work on it, but I'm getting razor-desktop segfaults on > > startup, maybe someone else will have better luck fixing this. > > Here's my efforts so far: > > > > http://people.freebsd.org/~pawel/razorqt-20120928.shar > > > > -- > > pozdrawiam / with regards > > Pawe=C5=82 P=C4=99kala > > _______________________________________________ > > 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= " > > > > > > -- > -------------------------------------------------------- > Chris Petrik > FreeBSD Contributor > Reincarnated > cpet on irc > > > ------------------------------ > > Message: 7 > Date: Sat, 29 Sep 2012 18:53:57 +0200 > From: "O. Hartmann" > Subject: Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > To: Ruslan Mahmatkhanov > Cc: freebsd-ports@freebsd.org > Message-ID: <506727A5.5060608@zedat.fu-berlin.de> > Content-Type: text/plain; charset=3D"iso-8859-1" > > Am 09/29/12 18:11, schrieb Ruslan Mahmatkhanov: > > Hi! > > > > Heino Tiedemann wrote on 29.09.2012 19:20: > >> "O. Hartmann" wrote: > >> > >>> I'm wondering why FreeBSD ports takes so long to update quite oldish > >>> gimp-2.6 to gimp-2.8. Does anyone know what the stoppers are and wher= e > >>> solutions needed? > >> > >> Mee too. gimp 2.8 is from march(!) 2012 - now it is olmost october und > >> nothing happened.. > >> > >> This - and sometime the old graphics/rawtherapee port - makes FreeBSD > >> a litle unusable for foto-editing > >> > >> > >> Heino > > > > As far I know, the gimp and gnome update will not be done until FreeBSD > > 9.1 will be released (a couple of weeks at minimum). But in a mean time > > you can update the required ports manually, using this archive: > > > > http://people.freebsd.org/~rm/gimp.tgz > > > > Note: please do not just copy them over the current ports, because ther= e > > is some patches, that should be removed first to make things working! > > > > And. What is wrong with rawtherapee? It's on it's latest version as far > > I understand. > > > > > Thank you very much. > > As I saw at www.gimp.org, there are several ports which need updates. > > Thanks for the link and patches. > > Regards, > Oliver > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 488 bytes > Desc: OpenPGP digital signature > Url : > http://lists.freebsd.org/pipermail/freebsd-ports/attachments/20120929/daf= f2053/signature-0001.pgp > > ------------------------------ > > Message: 8 > Date: Sat, 29 Sep 2012 19:43:07 +0200 > From: Axel Rau > Subject: Re: Question about postgresql 9 and pg_upgrade > To: Palle Girgensohn > Cc: freebsd-ports@freebsd.org, Alexander Pyhalov , Chris > Rees , pgsql@FreeBSD.org > Message-ID: <49D19A07-C83D-4966-B8DE-03D09CA42401@chaos1.de> > Content-Type: text/plain; charset=3Dutf-8 > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > > Am 29.09.2012 um 12:34 schrieb Palle Girgensohn: > > > You should be able to install into a chrooted/jailed environment as per > > > > 1. install new version to a chroot/jail > > > > 2. stop postgres > > > > 3. use pgupgrade and use chrooted installation as the new binary > > installation > > > > 4. upgrade the "real" postgresql to the new major version > > > > 5. start postgres > > > > This is a bit of a hassle with the chroot stuff, but it should work in > > theory. > > > > Or perhaps you could just take a package of the new postgresql version > > and untar is somewhere. For pg_upgrade, all you need is both binaries > > available at the same time on you hard disk. You could build the packag= e > > somewhere else. > > > > Sadly though, the wet dream if installing different versions side by > > side has the draw back that it hard to come up with a scheme that won't > > require current setups to migrate at upgrade, as Chris points out. > > > > As my server itself runs in a jail, this won't work, I think. > > Axel > - --- > PGP-Key:29E99DD6 =E2=98=80 +49 151 2300 9283 =E2=98=80 computing @ chao= s claudius > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG/MacGPG2 v2.0.19 (Darwin) > Comment: GPGTools - http://gpgtools.org > > iQEcBAEBAgAGBQJQZzMyAAoJEMFz9+6bacTRM+oH/19S/o6TGvgkjcEp+aQn+AKb > XvPqIiG8T05Lyb7o50dCp178VTgy4Iz/RqehhDNNy3No5Eb6u0ADXELIJ5f4yDbQ > 2/PuFQw3mkD3GzeajF2KsgvdV3fVpu4qP3U0XnXaCjTVauuwIHwOq4/6eowclRtH > 2gw+6Y+0yivOmAqm8yESdhVe0+aM87+YzH8ySDXJZavGBl7pu2MPvGJSDvf6QvRB > LLnnknsmypHXlEQ9Q4RGRwCwKfZIkN/E5L3NsA1yRGZUChTtZFy44yo+JuIWK2Is > lX5JudQjHrrpkPVr9EuiFONa4z4KMW6LWsSm/hjnViuzcWYEi8PZt78B6uEAJMk=3D > =3Dw8pQ > -----END PGP SIGNATURE----- > > > ------------------------------ > > Message: 9 > Date: Sat, 29 Sep 2012 21:12:53 +0200 > From: Heino Tiedemann > Subject: Re: graphics/gimp: What are the stoppers moving from port's > covered version 2.6 to recent and modern version 2.8? > To: freebsd-ports@freebsd.org > Message-ID: > Content-Type: text/plain > > Ruslan Mahmatkhanov wrote: > > > And. What is wrong with rawtherapee? It's on it's latest version as > > far I understand. > > At the momant it is fine. > > > Heino > > > > ------------------------------ > > Message: 10 > Date: Sat, 29 Sep 2012 21:36:30 +0100 > From: Chris Rees > Subject: Re: huge distfiles policy > To: Eitan Adler > Cc: Boris Samorodov , FreeBSD Mailing List > > Message-ID: > ZTaKXnoOd0P4HkceChOOKFZD2x7Q@mail.gmail.com> > Content-Type: text/plain; charset=3DKOI8-R > > On 29 Sep 2012 17:48, "Eitan Adler" wrote: > > > > On 29 September 2012 09:22, =EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=C3=93 = =EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=EF=BF=BD=C3= =97 wrote: > > > Hi All, > > > > > > I'm about to commit print/texlive ports (PR/171571). One of it's port= s > > > (print/texlive-texmf) has size approx. 1.4 Gb. > > > > > > What is the current policy upon huge ports? Should I restrict sometin= g > > > to not build at, say, pointyhat? Something else? > > > > I believe others have set MANUAL_PACKAGE_BUILD=3D huge though I'm not > > certain if this is because the distfile is large, or the final package > > is large (although in this case both are true) > > If you do, you should also chose NO_CDROM and disable distfile mirroring > too! > > Chris > > > ------------------------------ > > Message: 11 > Date: Sat, 29 Sep 2012 23:50:31 +0200 > From: Palle Girgensohn > Subject: Re: Question about postgresql 9 and pg_upgrade > To: Axel Rau > Cc: "freebsd-ports@freebsd.org" , Palle > Girgensohn , Alexander Pyhalov < > alp@rsu.ru>, Chris > Rees , "pgsql@FreeBSD.org" > > Message-ID: > Content-Type: text/plain; charset=3Dus-ascii > > > > 29 sep 2012 kl. 19:43 skrev Axel Rau : > > > As my server itself runs in a jail, this won't work, I think. > > You could try just unpacking a package tarball as I suggested at the end > of the mail? > > ------------------------------ > > Message: 12 > Date: Sat, 29 Sep 2012 15:15:01 -0700 > From: Kevin Oberman > Subject: Re: huge distfiles policy > To: Chris Rees > Cc: Eitan Adler , Boris Samorodov > , FreeBSD Mailing List < > freebsd-ports@freebsd.org> > Message-ID: > zAKoUOTGuiHGyfxRYn6Q@mail.gmail.com> > Content-Type: text/plain; charset=3DUTF-8 > > On Sat, Sep 29, 2012 at 1:36 PM, Chris Rees wrote: > > On 29 Sep 2012 17:48, "Eitan Adler" wrote: > >> > >> On 29 September 2012 09:22, =D0=91=D0=BE=D1=80=D0=B8=D1=81 =D0=A1=D0= =B0=D0=BC=D0=BE=D1=80=D0=BE=D0=B4=D0=BE=D0=B2 wrote: > >> > Hi All, > >> > > >> > I'm about to commit print/texlive ports (PR/171571). One of it's por= ts > >> > (print/texlive-texmf) has size approx. 1.4 Gb. > >> > > >> > What is the current policy upon huge ports? Should I restrict someti= ng > >> > to not build at, say, pointyhat? Something else? > >> > >> I believe others have set MANUAL_PACKAGE_BUILD=3D huge though I'm not > >> certain if this is because the distfile is large, or the final package > >> is large (although in this case both are true) > > > > If you do, you should also chose NO_CDROM and disable distfile mirrorin= g > > too! > > But, based on the current available storage sizes. what is big enough > for these? And, should they be the same? CDROMs are not getting > bigger, but the size of disks just continue to increase. I don't know > how close to being an issue a 1.4GB distfile is with modern systems. > With multi-terabyte drives, 1.4G is not much space. > -- > R. Kevin Oberman, Network Engineer > E-mail: kob6558@gmail.com > > > ------------------------------ > > Message: 13 > Date: Sun, 30 Sep 2012 00:17:03 +0200 > From: Baptiste Daroussin > Subject: Re: huge distfiles policy > To: ????? ????????? > Cc: hrs@FreeBSD.org, romain@FreeBSD.org, Ports FreeBSD > > Message-ID: <20120929221703.GA70616@ithaqua.etoilebsd.net> > Content-Type: text/plain; charset=3D"utf-8" > > On Sat, Sep 29, 2012 at 05:22:36PM +0400, =D0=91=D0=BE=D1=80=D0=B8=D1=81 = =D0=A1=D0=B0=D0=BC=D0=BE=D1=80=D0=BE=D0=B4=D0=BE=D0=B2 wrote: > > Hi All, > > > > I'm about to commit print/texlive ports (PR/171571). One of it's ports > > (print/texlive-texmf) has size approx. 1.4 Gb. > > > > What is the current policy upon huge ports? Should I restrict someting > > to not build at, say, pointyhat? Something else? > > > > Thanks! > > Hi, > > First I want to say I really want to see texlive in and our old teTex > going out > and I appreciate all the work that are going on in the area recently. > > I have two concerns about this, first one is I would hate to see texlive > has > restricted to avoided to be build as a package because: > > 1/ people would love to just be able to install the package > 2/ lots of ports are currently depending on teTex and if teTex is replace= d > by > texlive which it should that means we will not anymore be able to provide > packages for those packages, I don't have the complete list but I think > this > will impact at least kde and gnome. > > My second concern was discussed when Dominic Fandrey called for testing > this > port: at least 2 people have been working on texlive with different > approach: > hrs and romain. > > In particular Romain and I discussed on merging texlive to the ports tree > based > on http://code.google.com/p/freebsd-texlive/ he has been contacted some > company > to mirror the splitted distfiles for us, and was suppose to resumer his > work on > this when back from vacations which should be the case now given that he > has > done some commit last week :D > > I CCed both hrs and romain so they can give their opinion and the status = of > their work. > > Thanks all for your work on texlive! > > regards, > Bapt > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: not available > Type: application/pgp-signature > Size: 196 bytes > Desc: not available > Url : > http://lists.freebsd.org/pipermail/freebsd-ports/attachments/20120929/d86= 90b62/attachment-0001.pgp > > ------------------------------ > > Message: 14 > Date: Sat, 29 Sep 2012 18:21:16 -0400 (EDT) > From: "Lawrence K. Chen, P.Eng." > Subject: Re: CFT: x11/nvidia-driver major update to 304.xx series > To: freebsd-ports@freebsd.org > Message-ID: > <2038073558.11093674.1348957276346.JavaMail.root@k-state.edu> > Content-Type: text/plain; charset=3Dutf-8 > > > > ----- Original Message ----- > > On Fri, 28 Sep 2012 18:22:29 -0400 (EDT) > > Lawrence K. Chen, P.Eng. articulated: > > > > > Well, I had to a bunch of reboots yesterday....so I tried > > > 304.51....no joy. I then tried 295.75, and that works. > > > > In the past, I have had problems that occurred when I updated a port > > and > > failed to rebuild the ports that were dependent upon that port. It is > > rare, but it does happen. In such instances, I find that > > "portmanager" > > used with the "-p" flag comes in extremely handy. I might suggest > > that > > you first update your ports tree and then run something like: > > "portmanager -u -l -y -p" It will do all of that automatically for > > you > > and provide you with a log file should something not work as > > expected. > > Just a thought. > > > > I mentioned in my first post that I already tried rebuilding everything o= n > up. > > -- > Who: Lawrence K. Chen, P.Eng. - W0LKC - Senior Unix Systems Administrator > For: Enterprise Server Technologies (EST) -- & SafeZone Ally > Snail: Computing and Telecommunications Services (CTS) > Kansas State University, 109 East Stadium, Manhattan, KS 66506-3102 > Phone: (785) 532-4916 - Fax: (785) 532-3515 - Email: lkchen@ksu.edu > Web: http://www-personal.ksu.edu/~lkchen - Where: 11 Hale Library > > > ------------------------------ > > Message: 15 > Date: Sun, 30 Sep 2012 05:08:03 +0200 > From: Michael Gmelin > Subject: Problems submitting patch containing UTF-8 characters > To: freebsd-ports@freebsd.org > Message-ID: <20120930050803.7914caf6@bsd64.grem.de> > Content-Type: text/plain; charset=3DUS-ASCII > > Hi, > > I recently ran into a problem submitting a PR containing UTF-8 > characters, they ended up garbled, so the maintainer couldn't apply the > patch cleanly. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D171645 > > The characters included were 0xe4 0xb8 0xad and 0xe5 0x9b 0xbd (two > three byte characters). The code affected is about testing utf-8, so > the characters are required. And even if not, patching them away would > require stating them as part of the patch. > > The original e-mail was created using porttools and therefore had no > character set specification, which usually shouldn't be a problem. The > patch was just inline as part of the body. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D171645&getpatch=3D1 > > The character sequence had been recoded to > 0xc3 0xa4 0xc2 0xb8 0xc2 0xad 0xc3 0xa5 0xc2 0x9b 0xc2 0xbd > > It seems like it had been interpreted as latin1 on receipt and then > reencoded as utf-8: > 0xe4 =3D> 0xc3 0xa4 > 0xb8 =3D> 0xc2 0xb8 > 0xad =3D> 0xc2 0xad > 0xe5 =3D> 0xc3 0xa5 > 0x9b =3D> 0xc2 0x9b > 0xbd =3D> 0xc2 0xbd > > Which is obviously not what should happen. The recipient shouldn't make > any assumptions about the character set used. > > The next attempt was sending the patch as a bug-followup through a > graphical MUA. The patch was attached and had been encoded as > quoted-printable (no specific charset specification): > > +-configPath =3D3D u"./config/=3DE4=3DB8=3DAD=3DE5=3D9B=3DBD_client.confi= g" > ++configPath =3D3D > u"./config/=3DE4=3DB8=3DAD=3DE5=3D9B=3DBD_client.config".encode("utf-8=3D= ") > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D171645&getpatch=3D2 > > Unfortunately the results are the same. I did not try forcing a charset > by manually modifying the email (not sure if this will work, I'm > willing to test, but I don't want to further litter that PR). > > At this point I figured, that sending the patch in gzipped format might > help. Said and done, the patch shows up as base64 in the PR. When > copy and pasting and decoding the base64 text, the resulting .gz can be > decompressed correctly and the content is what I expected. When > clicking the download link though: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D171645&getpatch=3D3 > > The resulting .gz file has the correct file size, but is corrupted. > Checking it using the hex editor it looks like it has been reencoded as > utf-8 (and then truncated at the expected file size): > > Hex of the original file (first 16 bytes): > 1f 8b 08 08 ad 79 65 50 00 03 70 79 32 37 2d 49 > > Hex of the file downloaded by using the link: > 1f c2 8b 08 08 c2 ad 79 65 50 00 03 70 79 32 37 > > As you can see, all non 7bit characters have been utf-8 encoded, which > is pretty suboptimal in a binary file. > > 0x8b =3D> 0xc2 0x8b > 0xad =3D> 0xc2 0xad > ... > > As a result the truncated and utf-8 encoded gzip file cannot be > decompressed. > > I'm relatively certain that this has worked at some point in the past. > > Ideas anyone? > > Thanks, > > -- > Michael Gmelin > > > ------------------------------ > > Message: 16 > Date: Sun, 30 Sep 2012 11:16:14 +0100 > From: Jamie Paul Griffin > Subject: Installing non-ports software into /usr/local > To: FreeBSD Ports > Message-ID: <20120930101614.GA13820@kontrol.kode5.net> > Content-Type: text/plain; charset=3Dus-ascii > > Hi > > I am having an issue with mutt 1.5.21. I have set up different colour > schemes, etc. as people do. Anyway, I reinstalled it 2 days ago using the > ports system, because I wanted to link mutt to the ncurses port rather th= an > the system ncurses installation. After soing non of my colours show, only > those that are set from within my terminal emulator which is urxvt. > Initially, I had a problem during make(1) which related to the iconv > library. I have iconv set as an option in my kernel configuration. the > error suggested something about using libiconv instead. > > Anyway, I managed to overcome that and build it and istall it again but > without colour. I'm wondering if I could/should build it my self from > source and install it into /usr/local to see if that makes any difference= . > Would doing that cause problems for the ports system? > > Any comments and advice are welcome. Best wishes, Jamie > > > ------------------------------ > > Message: 17 > Date: Sun, 30 Sep 2012 11:47:52 +0100 > From: Chris Rees > Subject: Re: Installing non-ports software into /usr/local > To: Jamie Paul Griffin , udo.schweigert@siemens.com > Cc: FreeBSD Ports > Message-ID: > q6oUxnDA@mail.gmail.com> > Content-Type: text/plain; charset=3DISO-8859-1 > > On 30 September 2012 11:16, Jamie Paul Griffin wrote: > > Hi > > > > I am having an issue with mutt 1.5.21. I have set up different colour > schemes, etc. as people do. Anyway, I reinstalled it 2 days ago using the > ports system, because I wanted to link mutt to the ncurses port rather th= an > the system ncurses installation. After soing non of my colours show, only > those that are set from within my terminal emulator which is urxvt. > Initially, I had a problem during make(1) which related to the iconv > library. I have iconv set as an option in my kernel configuration. the > error suggested something about using libiconv instead. > > > > Anyway, I managed to overcome that and build it and istall it again but > without colour. I'm wondering if I could/should build it my self from > source and install it into /usr/local to see if that makes any difference= . > Would doing that cause problems for the ports system? > > > > Any comments and advice are welcome. Best wishes, Jamie > > As long as you don't install it from the port, which would overwrite > your version, there would be no trouble with this. > > If you come up with a solution, please send a PR in which the > maintainer will I'm sure be glad to look at :) > > Chris > > > ------------------------------ > > Message: 18 > Date: Sun, 30 Sep 2012 07:34:20 -0400 > From: Jerry > Subject: Re: CFT: x11/nvidia-driver major update to 304.xx series > To: freebsd-ports@freebsd.org > Message-ID: <20120930073420.24820e22@scorpio> > Content-Type: text/plain; charset=3DUTF-8 > > On Sat, 29 Sep 2012 18:21:16 -0400 (EDT) > Lawrence K. Chen, P.Eng. articulated: > > > I mentioned in my first post that I already tried rebuilding > > everything on up. > > >From your original post: > > > Tried rebuilding a bunch of other things, but didn't help. > > > The word "bunch" !=3D "build or run dependencies" in my vocabulary. > Nor does it indicate, or at least not to me anyway, that you > actually rebuilt all required run or build dependencies. Sorry about > the misunderstanding. I'll leave you to figure out the problem yourself. > > -- > Jerry =E2=99=94 > > Disclaimer: off-list followups get on-list replies or get ignored. > Please do not ignore the Reply-To header. > __________________________________________________________________ > All the evidence concerning the universe > has not yet been collected, so there's still hope. > > > ------------------------------ > > Message: 19 > Date: Sun, 30 Sep 2012 07:43:14 -0400 > From: Jerry > Subject: Re: huge distfiles policy > To: freebsd-ports@freebsd.org > Message-ID: <20120930074314.013e793a@scorpio> > Content-Type: text/plain; charset=3DUTF-8 > > On Sat, 29 Sep 2012 15:15:01 -0700 > Kevin Oberman articulated: > > > CDROMs are not getting bigger, but the size of disks just continue to > > increase. > > However, DVD's can easily handle a paltry 1.4GB. All modern systems > come with DVD's so perhaps it is time to embrace progress and move > forward with our thinking and not chain ourselves to the past. > > -- > Jerry =E2=99=94 > > Disclaimer: off-list followups get on-list replies or get ignored. > Please do not ignore the Reply-To header. > __________________________________________________________________ > TLC announced that "Honey Boo Boo" will have a Halloween special. Their > neighbors are planning to give them a scare by dressing up as child > protective services. > > > ------------------------------ > > _______________________________________________ > 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" > > End of freebsd-ports Digest, Vol 488, Issue 9 > ********************************************* > From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 04:42:35 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1FB5106566C; Mon, 1 Oct 2012 04:42:35 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from icp-osb-irony-out3.external.iinet.net.au (icp-osb-irony-out3.external.iinet.net.au [203.59.1.219]) by mx1.freebsd.org (Postfix) with ESMTP id D0CDD8FC0A; Mon, 1 Oct 2012 04:42:34 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AtwOACceaVB8qNoM/2dsb2JhbABFhSKIcq8XA4ELgQiCYT8oTRiISLlVizmBCYIIgkBgA5VohVA1iieCeYFR X-IronPort-AV: E=Sophos;i="4.80,514,1344182400"; d="scan'208";a="39402751" Received: from unknown (HELO smtp.phoenix) ([124.168.218.12]) by icp-osb-irony-out3.iinet.net.au with ESMTP; 01 Oct 2012 12:42:26 +0800 Received: by smtp.phoenix (Postfix, from userid 1001) id A8E7384E; Mon, 1 Oct 2012 14:42:26 +1000 (EST) Date: Mon, 1 Oct 2012 14:42:26 +1000 From: andrew clarke To: freebsd-ports@freebsd.org Message-ID: <20121001044226.GA43196@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: madpilot@FreeBSD.org Subject: mail/maildrop-2.6.0's maildirmake 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, 01 Oct 2012 04:42:35 -0000 I just discovered the maildirmake command has been inexplicably renamed maildrop-maildirmake between maildrop-2.5.5 and maildrop-2.6.0, which broke my maildrop rules. Maybe this should go into /usr/ports/UPDATING? Cheers. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 04:48:40 2012 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 B8C72106566B for ; Mon, 1 Oct 2012 04:48:40 +0000 (UTC) (envelope-from meta@vmeta.jp) Received: from glory.vmeta.jp (7c293911.i-revonet.jp [124.41.57.17]) by mx1.freebsd.org (Postfix) with ESMTP id 86B308FC08 for ; Mon, 1 Oct 2012 04:48:40 +0000 (UTC) Received: from icepick.vmeta.jp (z179.124-44-236.ppp.wakwak.ne.jp [124.44.236.179]) by glory.vmeta.jp (Postfix) with ESMTPSA id 59568464; Mon, 1 Oct 2012 13:40:25 +0900 (JST) Date: Mon, 1 Oct 2012 13:40:21 +0900 From: meta To: ports@freebsd.org Message-ID: <20121001044009.GA53482@icepick.vmeta.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: inline X-Operating-System: FreeBSD 9.0-RELEASE amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: How can I know popularity of 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: Mon, 01 Oct 2012 04:48:40 -0000 Is there any ways to know how popular a port is? For example, Debian Popularity Contest tells us usage of packages. Does FreeBSD Ports Collection have similar work to popcon? -- `whois vmeta.jp | nkf -w` meta From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 04:53:33 2012 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 CF8D1106566C for ; Mon, 1 Oct 2012 04:53:33 +0000 (UTC) (envelope-from cpetservice@gmail.com) Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5AB6F8FC0A for ; Mon, 1 Oct 2012 04:53:33 +0000 (UTC) Received: by qady23 with SMTP id y23so1337869qad.13 for ; Sun, 30 Sep 2012 21:53:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=D95Dux6UUZVIRaJpPqivaVLNDOOkRYvtxiDMexdxKpc=; b=gvTatbhP5eryhz1Z0hUBL0TmHbQLMCO41OkLWgYJgJMzLm56vv6LJTqSNzG+Oskp7y Gy17HQB83jkqqYVFzQfDpnTQ814ZZ+YR7VqAJS9oUYT3XPWRqDFB2p12bHNIm8wsJ7ig D5uisUzS05Ss2ZA8hoDbAyWqRpMyvcQhglx+CjqfpjE2oBConbDH8wsgmXbMyCuRQC63 e86QL+COozurDVhbT5Thn9QBNH/abdj1+SMbwI3y1EjEWQtZwcnv2mRnH6Ap5tN0WOi9 cRRBBwN1Skgj3c8cb3MOj0JYdiVfqEWGOz9KaqweVs93Kesa4sw/naLXrZVHOVnzEQCm 7uFg== MIME-Version: 1.0 Received: by 10.229.136.17 with SMTP id p17mr9492716qct.86.1349067212617; Sun, 30 Sep 2012 21:53:32 -0700 (PDT) Received: by 10.49.132.6 with HTTP; Sun, 30 Sep 2012 21:53:32 -0700 (PDT) In-Reply-To: <20121001044009.GA53482@icepick.vmeta.jp> References: <20121001044009.GA53482@icepick.vmeta.jp> Date: Sun, 30 Sep 2012 23:53:32 -0500 Message-ID: From: Cpet Services To: meta Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 04:53:34 -0000 Not that I know of. On Sun, Sep 30, 2012 at 11:40 PM, meta wrote: > Is there any ways to know how popular a port is? For example, Debian > Popularity Contest tells us usage of > packages. Does FreeBSD Ports Collection have similar work to popcon? > > -- > `whois vmeta.jp | nkf -w` > meta > _______________________________________________ > 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" > -- -------------------------------------------------------- Chris Petrik FreeBSD Contributor Reincarnated cpet on irc From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 04:57:44 2012 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 BE64E106564A for ; Mon, 1 Oct 2012 04:57:44 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7CB5A8FC14 for ; Mon, 1 Oct 2012 04:57:44 +0000 (UTC) Received: by obbwc20 with SMTP id wc20so4714806obb.13 for ; Sun, 30 Sep 2012 21:57:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Yahx76k9db+pXAlkPQEiyGTMxkdY5PjqaVz8lewzcyY=; b=SxILCPzcbtNvjVQLx8o6M4wumw9Opg0cbbstcrdlimod27rZ+Lzh2gzD0d9ge6BpHN b2xXK7ckvHve5bPUHZ7NJ7rYLWRi+WwHCxDT/3RDEIAXEOrpH/gd9l/Umb7674u8gd2L tdxz2HpTdCTxztOkxewZ62E3rAC5nCxdN/pxH6/PNJnT/BHPhd/5YOeWRUF5rk3Q7RU5 OoexZRQMwrRlsqFXDScgFN9bRqmB6tS3JepPv+l2e6GZSlbvWdTS4Xp5qrRosjFjOC85 Fjfgs2NDw8CluLDBSuzSE1vQW7h7j52LcwhLnWoT5+PkeefeFPW/wfs3XZiQEDtHilJb +CKA== MIME-Version: 1.0 Received: by 10.182.47.66 with SMTP id b2mr10695863obn.34.1349067463912; Sun, 30 Sep 2012 21:57:43 -0700 (PDT) Received: by 10.76.10.193 with HTTP; Sun, 30 Sep 2012 21:57:43 -0700 (PDT) Received: by 10.76.10.193 with HTTP; Sun, 30 Sep 2012 21:57:43 -0700 (PDT) In-Reply-To: <20121001044009.GA53482@icepick.vmeta.jp> References: <20121001044009.GA53482@icepick.vmeta.jp> Date: Sun, 30 Sep 2012 21:57:43 -0700 Message-ID: From: Freddie Cash To: meta Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 04:57:44 -0000 Bsdstats port does something similar. It's opt-in, so the stats are heavily selection biased (similar to popcon). On Sep 30, 2012 9:49 PM, "meta" wrote: > Is there any ways to know how popular a port is? For example, Debian > Popularity Contest tells us usage of > packages. Does FreeBSD Ports Collection have similar work to popcon? > > -- > `whois vmeta.jp | nkf -w` > meta > _______________________________________________ > 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 Mon Oct 1 05:00:08 2012 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 AFB03106564A for ; Mon, 1 Oct 2012 05:00:08 +0000 (UTC) (envelope-from cpetservice@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 55F448FC08 for ; Mon, 1 Oct 2012 05:00:08 +0000 (UTC) Received: by qcsl39 with SMTP id l39so4562678qcs.13 for ; Sun, 30 Sep 2012 22:00:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=QOHFuJh1tGBK9YmLoNp4S6oQJ68oKonHrAsWJJu2Rcs=; b=EN1V2bWgU0rsJQhW0jcdFyU1jMlOaRtPwtEvtumawvayiEJ622ey56SzAG46mjMZMl hFiME5yrPpK6xKvzxPHYp/ZOdnzXepK8qVfMtDbgBbJdOPWkc/gJO0+7plo7opSgPxP1 sCKgBJD3yy94KXIu93y18+sBclOmb1G742fB1jCwLKMLy8YpbfuNKklP3TPYawOgtgwg 0Niw7lX/ZHpz9kySwAj3tGpia5n6ZuYsNQ5ETDUqEAd7PE9MmDltp9RjchvY+wKh/8OD T3GI/WzitJyf3DllwKdbEoUUSnt+c0H2e3Uo/Gypa+DbOo3H66Z3FKaIBDS3maISOlPS ws4Q== MIME-Version: 1.0 Received: by 10.224.208.5 with SMTP id ga5mr34429607qab.60.1349067607537; Sun, 30 Sep 2012 22:00:07 -0700 (PDT) Received: by 10.49.132.6 with HTTP; Sun, 30 Sep 2012 22:00:07 -0700 (PDT) In-Reply-To: References: <20121001044009.GA53482@icepick.vmeta.jp> Date: Mon, 1 Oct 2012 00:00:07 -0500 Message-ID: From: Cpet Services To: Freddie Cash Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org, meta Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 05:00:08 -0000 Isn't that for OS usage rather ports ? On Sun, Sep 30, 2012 at 11:57 PM, Freddie Cash wrote: > Bsdstats port does something similar. It's opt-in, so the stats are heavily > selection biased (similar to popcon). > On Sep 30, 2012 9:49 PM, "meta" wrote: > > > Is there any ways to know how popular a port is? For example, Debian > > Popularity Contest tells us usage of > > packages. Does FreeBSD Ports Collection have similar work to popcon? > > > > -- > > `whois vmeta.jp | nkf -w` > > meta > > _______________________________________________ > > 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" > > > _______________________________________________ > 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" > -- -------------------------------------------------------- Chris Petrik FreeBSD Contributor Reincarnated cpet on irc From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 05:12:04 2012 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 575291065732 for ; Mon, 1 Oct 2012 05:12:04 +0000 (UTC) (envelope-from cpetservice@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id F01A68FC0A for ; Mon, 1 Oct 2012 05:12:03 +0000 (UTC) Received: by qcsl39 with SMTP id l39so4568268qcs.13 for ; Sun, 30 Sep 2012 22:12:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=gm7aaL5WOQznNu5LSWvAOB0FPnF1GfJw2cEUJKO6u2Q=; b=EEMH4Kmju63kAWxgjCllfVTNGzil9qSkXN/CF1ITm7Ipw8n+9BLhkN+1ipUWBmAdPf 9Nq2iLhoXJKx2CgHTxDB18uvU7nElLPxuw83QTIPIeEgfvhxNoVukOvgQ81X5bC+ilGI 2nxeGQyaNpu+Big702mELrty4vTwhcxQPcyE48xDkyWr3iMHFXO3MYBnh+EKad66iDYJ YD0KemXrYOTgcwmY5l4amQtuzpebdT9rGGEZMmh7gdQKy094IutrNjMHhXdKBWmu9Trx oqabazW41yP3hxNQkRqi270LB8JQLvZ8lgQGQqI4P6YocJUoWklLKZa/q8GJ973ZqlEV SQPA== MIME-Version: 1.0 Received: by 10.229.201.69 with SMTP id ez5mr9543656qcb.114.1349068322903; Sun, 30 Sep 2012 22:12:02 -0700 (PDT) Received: by 10.49.132.6 with HTTP; Sun, 30 Sep 2012 22:12:02 -0700 (PDT) In-Reply-To: References: <20121001044009.GA53482@icepick.vmeta.jp> Date: Mon, 1 Oct 2012 00:12:02 -0500 Message-ID: From: Cpet Services To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 05:12:04 -0000 Well then I stand corrected On Mon, Oct 1, 2012 at 12:00 AM, Cpet Services wrote: > Isn't that for OS usage rather ports ? > > > On Sun, Sep 30, 2012 at 11:57 PM, Freddie Cash wrote: > >> Bsdstats port does something similar. It's opt-in, so the stats are >> heavily >> selection biased (similar to popcon). >> On Sep 30, 2012 9:49 PM, "meta" wrote: >> >> > Is there any ways to know how popular a port is? For example, Debian >> > Popularity Contest tells us usage of >> > packages. Does FreeBSD Ports Collection have similar work to popcon? >> > >> > -- >> > `whois vmeta.jp | nkf -w` >> > meta >> > _______________________________________________ >> > 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 >> " >> > >> _______________________________________________ >> 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" >> > > > > -- > -------------------------------------------------------- > Chris Petrik > FreeBSD Contributor > Reincarnated > cpet on irc > > -- -------------------------------------------------------- Chris Petrik FreeBSD Contributor Reincarnated cpet on irc From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 05:26:32 2012 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 99C0810656B7 for ; Mon, 1 Oct 2012 05:26:32 +0000 (UTC) (envelope-from fjwcash@gmail.com) Received: from mail-oa0-f54.google.com (mail-oa0-f54.google.com [209.85.219.54]) by mx1.freebsd.org (Postfix) with ESMTP id 532388FC0C for ; Mon, 1 Oct 2012 05:26:32 +0000 (UTC) Received: by oagn9 with SMTP id n9so4243969oag.13 for ; Sun, 30 Sep 2012 22:26:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=oqWCPJ1H7dtLjjvvASr1H7UVHNBuE/AxytJYkRIIfzc=; b=DeHz9SZNO4745mbH4QOOl1ltAXdU0jBHBWqrHvEg8EIDfcTUEz4SddqepqcWUQKbk8 ELLgQ3ZSE3IQS0V73ddN/+QTZ/yQ3lYuoq9aQRNPll7jFigtQe3Cph8kuNBxS5ztf5jQ r9UA6M80UMYAGvoRsUBhzrDxTaa3RQunreq2bmbTb11d1I2elu/5bkSSdbARoIxwb868 btk9b9M04scK6eU4gZn4AC8XiRHjs7efddJ/dEC217+3hgX99V13LtoeOdc4MhKmQSep gqsdvH3xBSSmTy+Bgbcp2YJH/A9eGyHToZGjpjW+I2kKnrm3HXyGHIGP8+8oNTStojt+ 6N/w== MIME-Version: 1.0 Received: by 10.60.171.114 with SMTP id at18mr10695871oec.24.1349069186361; Sun, 30 Sep 2012 22:26:26 -0700 (PDT) Received: by 10.76.10.193 with HTTP; Sun, 30 Sep 2012 22:26:25 -0700 (PDT) Received: by 10.76.10.193 with HTTP; Sun, 30 Sep 2012 22:26:25 -0700 (PDT) In-Reply-To: References: <20121001044009.GA53482@icepick.vmeta.jp> Date: Sun, 30 Sep 2012 22:26:25 -0700 Message-ID: From: Freddie Cash To: Cpet Services Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org, meta Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 05:26:32 -0000 It includes an option to submit the list of currently installed ports. On Sep 30, 2012 10:00 PM, "Cpet Services" wrote: > Isn't that for OS usage rather ports ? > > On Sun, Sep 30, 2012 at 11:57 PM, Freddie Cash wrote: > >> Bsdstats port does something similar. It's opt-in, so the stats are >> heavily >> selection biased (similar to popcon). >> On Sep 30, 2012 9:49 PM, "meta" wrote: >> >> > Is there any ways to know how popular a port is? For example, Debian >> > Popularity Contest tells us usage of >> > packages. Does FreeBSD Ports Collection have similar work to popcon? >> > >> > -- >> > `whois vmeta.jp | nkf -w` >> > meta >> > _______________________________________________ >> > 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 >> " >> > >> _______________________________________________ >> 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" >> > > > > -- > -------------------------------------------------------- > Chris Petrik > FreeBSD Contributor > Reincarnated > cpet on irc > > From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 05:28:23 2012 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 396F910656DC for ; Mon, 1 Oct 2012 05:28:23 +0000 (UTC) (envelope-from meta@vmeta.jp) Received: from glory.vmeta.jp (7c293911.i-revonet.jp [124.41.57.17]) by mx1.freebsd.org (Postfix) with ESMTP id F3BA88FC1A for ; Mon, 1 Oct 2012 05:28:22 +0000 (UTC) Received: from icepick.vmeta.jp (z179.124-44-236.ppp.wakwak.ne.jp [124.44.236.179]) by glory.vmeta.jp (Postfix) with ESMTPSA id 2253E952; Mon, 1 Oct 2012 14:28:21 +0900 (JST) Date: Mon, 1 Oct 2012 14:28:17 +0900 From: meta To: Cpet Services Message-ID: <20121001052816.GA97930@icepick.vmeta.jp> References: <20121001044009.GA53482@icepick.vmeta.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 9.0-RELEASE amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org, Freddie Cash Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 05:28:23 -0000 I tried, here we can see ports popularity (ex. www category). http://www.bsdstats.org/ports.php?category=90 But these informations are too old. net-im/rubygem-earthquake (created by me, on June 1st) is not listed. Anyway, bsdstats is not bad to know which port that I maintain is more popular. And it helps me to decide which port to spare more time for. Thank you for your information. On Mon, Oct 01, 2012 at 12:00:07AM -0500, Cpet Services wrote: > Isn't that for OS usage rather ports ? > > On Sun, Sep 30, 2012 at 11:57 PM, Freddie Cash wrote: > > > Bsdstats port does something similar. It's opt-in, so the stats are heavily > > selection biased (similar to popcon). > > On Sep 30, 2012 9:49 PM, "meta" wrote: -- `whois vmeta.jp | nkf -w` meta From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 05:28:39 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD6AE10656EE for ; Mon, 1 Oct 2012 05:28:39 +0000 (UTC) (envelope-from cpetservice@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7F8EB8FC16 for ; Mon, 1 Oct 2012 05:28:39 +0000 (UTC) Received: by qcsl39 with SMTP id l39so4575539qcs.13 for ; Sun, 30 Sep 2012 22:28:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=e7jUjvDaUhKKe3x3WDAk2PGM4zqikuAImLmCxt4lcoA=; b=UVWyEpAHaDnwo26rkLzzPv3xRrPLf2vvF3AWKhT/1rOcZzqliWgt2HkY54QSm0CUvz ssZbIAvhDcTbCpG3a68+CHe+w8y2L3D32jPiP56SqSVOXIiAu/dJYT8JdZVYE5Qaxo3N NKVRX+q9sDZG45+leRlCL6Xw4cSKSKUG0Q8WsrTu4WByUbBm/TIxBnHxpzIENNn4kuOB aWm6dkoeVF/jrceU5/huKLHKK5FY7pAy6MCFlAn30cUmwZx0jwNuuS2nYL0owSdYbkP/ 3aAJQqNxy54ALJdHhb9P0q/iG6S1jgcKU0Og2JMB8cF25OeWs+nvaiD4iN+1dvKChTSq JEBA== MIME-Version: 1.0 Received: by 10.224.199.132 with SMTP id es4mr34329207qab.43.1349069318351; Sun, 30 Sep 2012 22:28:38 -0700 (PDT) Received: by 10.49.132.6 with HTTP; Sun, 30 Sep 2012 22:28:38 -0700 (PDT) In-Reply-To: References: <20121001044009.GA53482@icepick.vmeta.jp> Date: Mon, 1 Oct 2012 00:28:38 -0500 Message-ID: From: Cpet Services To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: How can I know popularity of 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: Mon, 01 Oct 2012 05:28:39 -0000 Yeah PCBSD has it running by default, just never knew it did ports as well until I saw bsdstats.org On Mon, Oct 1, 2012 at 12:26 AM, Freddie Cash wrote: > It includes an option to submit the list of currently installed ports. > On Sep 30, 2012 10:00 PM, "Cpet Services" wrote: > >> Isn't that for OS usage rather ports ? >> >> On Sun, Sep 30, 2012 at 11:57 PM, Freddie Cash wrote: >> >>> Bsdstats port does something similar. It's opt-in, so the stats are >>> heavily >>> selection biased (similar to popcon). >>> On Sep 30, 2012 9:49 PM, "meta" wrote: >>> >>> > Is there any ways to know how popular a port is? For example, Debian >>> > Popularity Contest tells us usage of >>> > packages. Does FreeBSD Ports Collection have similar work to popcon? >>> > >>> > -- >>> > `whois vmeta.jp | nkf -w` >>> > meta >>> > _______________________________________________ >>> > 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" >>> > >>> _______________________________________________ >>> 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" >>> >> >> >> >> -- >> -------------------------------------------------------- >> Chris Petrik >> FreeBSD Contributor >> Reincarnated >> cpet on irc >> >> -- -------------------------------------------------------- Chris Petrik FreeBSD Contributor Reincarnated cpet on irc From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 08:01:14 2012 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 A5E7B106564A for ; Mon, 1 Oct 2012 08:01:14 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8A88FC17 for ; Mon, 1 Oct 2012 08:01:13 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3XVbXm4b3vz2gr; Mon, 1 Oct 2012 10:01:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=madpilot.net; h= user-agent:in-reply-to:content-disposition:content-type :content-type:mime-version:references:message-id:subject:subject :from:from:date:date:received:received; s=mail; t=1349078467; x= 1350892868; bh=ZlTQpw5S7xqyjktW3ogynT4EF6wDS29Oego0afm0Vbg=; b=e N8HdFrWzF0gLZKPI1oSwy7n2bpbTYmLx2byx4k4KHmyY8UUL946qzihrAwgZkUKt s60wjdC7f2U7e3PF/FdYgonwgDet6UJBAHbrnn11aXk4mG0RoxYAadg8noC1VWKx 2Vpf6XA2Ogf9JF7O2Ovyu/orq+ZmZbnhW5hWTD0/Gw= X-Virus-Scanned: amavisd-new at madpilot.net Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id D7mueWcnTX3J; Mon, 1 Oct 2012 10:01:07 +0200 (CEST) Received: by micro.madpilot.net (Postfix, from userid 1000) id 3XVbXg172cz2gq; Mon, 1 Oct 2012 10:01:07 +0200 (CEST) Date: Mon, 1 Oct 2012 10:01:07 +0200 From: Guido Falsi To: andrew clarke Message-ID: <20121001080107.GA39336@micro.madpilot.net> References: <20121001044226.GA43196@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121001044226.GA43196@ozzmosis.com> X-Operating-System: FreeBSD 9.1-PRERELEASE User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@freebsd.org Subject: Re: mail/maildrop-2.6.0's maildirmake 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, 01 Oct 2012 08:01:14 -0000 On Mon, Oct 01, 2012 at 02:42:26PM +1000, andrew clarke wrote: > I just discovered the maildirmake command has been inexplicably renamed > maildrop-maildirmake between maildrop-2.5.5 and maildrop-2.6.0, which > broke my maildrop rules. Maybe this should go into /usr/ports/UPDATING? The file had to be renamed because it was conflicting with other ports, just for example with mail/qmail. This is a problem with pkgng which is going to be deployed as the standard packaging system in future versions of FreeBSD. Pkgng forbids installing packages which put files in the same place. having ports/packages installing same files in same place is anyway bad practice. This is just to explain the reason why I had to rename a few files in that port. I'm going to ask my mentors about adding an entry in UPDATING. Thanks you for the suggestion. -- Guido Falsi From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 09:14:31 2012 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 623A0106566C; Mon, 1 Oct 2012 09:14:31 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward4h.mail.yandex.net (forward4h.mail.yandex.net [IPv6:2a02:6b8:0:f05::4]) by mx1.freebsd.org (Postfix) with ESMTP id D27DC8FC0A; Mon, 1 Oct 2012 09:14:30 +0000 (UTC) Received: from smtp4h.mail.yandex.net (smtp4h.mail.yandex.net [84.201.186.21]) by forward4h.mail.yandex.net (Yandex) with ESMTP id 36F181B20F32; Mon, 1 Oct 2012 13:14:29 +0400 (MSK) Received: from smtp4h.mail.yandex.net (localhost [127.0.0.1]) by smtp4h.mail.yandex.net (Yandex) with ESMTP id A7D8B2C0276; Mon, 1 Oct 2012 13:14:28 +0400 (MSK) Received: from 93.91.2.231.tel.ru (93.91.2.231.tel.ru [93.91.2.231]) by smtp4h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id ERrahRFa-ESr87vLc; Mon, 1 Oct 2012 13:14:28 +0400 Message-ID: <50695EF3.7040707@passap.ru> Date: Mon, 01 Oct 2012 13:14:27 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: =?UTF-8?B?Um9tYWluIFRhcnRpw6hyZQ==?= References: <5066F61C.5050704@passap.ru> <20120929221703.GA70616@ithaqua.etoilebsd.net> <20120930153124.GA4461@blogreen.org> In-Reply-To: <20120930153124.GA4461@blogreen.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Baptiste Daroussin , hrs@FreeBSD.org, Ports FreeBSD Subject: texlive (was: Re: huge distfiles policy) 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, 01 Oct 2012 09:14:31 -0000 30.09.2012 19:31, Romain Tartière пишет: > On Sun, Sep 30, 2012 at 12:17:03AM +0200, Baptiste Daroussin wrote: >> I CCed both hrs and romain so they can give their opinion and the status of >> their work. > > Yes, after 2 months away, I am back :-) OK, guys, what is the best way to proceed: 1) either commit the PR with monolithic texlive and live with it for some time... 2) or postpone the PR and wait until Romain finishes his work? Romain, can you give an estimation of when your ports may be ready to be committed? -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 09:21:23 2012 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 8C0F4106566C; Mon, 1 Oct 2012 09:21:23 +0000 (UTC) (envelope-from romain@blogreen.org) Received: from marvin.blogreen.org (unknown [IPv6:2001:470:1f12:b9c::2]) by mx1.freebsd.org (Postfix) with ESMTP id 387438FC12; Mon, 1 Oct 2012 09:21:23 +0000 (UTC) Received: by marvin.blogreen.org (Postfix, from userid 1001) id 421B32A663; Mon, 1 Oct 2012 11:21:22 +0200 (CEST) Date: Mon, 1 Oct 2012 11:21:22 +0200 From: Romain =?iso-8859-1?Q?Tarti=E8re?= To: Boris Samorodov Message-ID: <20121001092122.GA85288@FreeBSD.org> References: <5066F61C.5050704@passap.ru> <20120929221703.GA70616@ithaqua.etoilebsd.net> <20120930153124.GA4461@blogreen.org> <50695EF3.7040707@passap.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkogqOf2sHV7VnPd" Content-Disposition: inline In-Reply-To: <50695EF3.7040707@passap.ru> X-PGP-Key: http://romain.blogreen.org/pubkey.asc User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Baptiste Daroussin , hrs@FreeBSD.org, Ports FreeBSD Subject: Re: texlive (was: Re: huge distfiles policy) 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, 01 Oct 2012 09:21:23 -0000 --vkogqOf2sHV7VnPd Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! On Mon, Oct 01, 2012 at 01:14:27PM +0400, Boris Samorodov wrote: > 30.09.2012 19:31, Romain Tarti=C3=A8re =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > > On Sun, Sep 30, 2012 at 12:17:03AM +0200, Baptiste Daroussin wrote: >=20 > >> I CCed both hrs and romain so they can give their opinion and the stat= us of > >> their work. > >=20 > > Yes, after 2 months away, I am back :-) >=20 > OK, guys, what is the best way to proceed: > 1) either commit the PR with monolithic texlive and live with it for > some time... > 2) or postpone the PR and wait until Romain finishes his work? >=20 > Romain, can you give an estimation of when your ports may be ready to > be committed? I setup the mirror yesterday: http://texlive-distfiles.blogreen.org/ svn is committing the ~2200 ports in the freebsd-texlive repository right now (a few minutes to go I guess). However, I have not looked at updating ports depending on teTeX to make them work using TeX Live instead=E2=80=A6 If the idea is just to provide TeX Live, I would tell that these ports do the job. For a drop-in replacement of teTeX, more work is required. Romain --=20 Romain Tarti=C3=A8re http://people.FreeBSD.org/~romai= n/ pgp: 8234 9A78 E7C0 B807 0B59 80FF BA4D 1D95 5112 336F (ID: 0x5112336F) (plain text =3Dnon-HTML=3D PGP/GPG encrypted/signed e-mail much appreciated) --vkogqOf2sHV7VnPd Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQGcBAEBAgAGBQJQaWCRAAoJELpNHZVREjNvj0wL/29wc0KmNh24Yum6CqFYfxDA B/LPEFlep1CQBlAvqtNF8e+xcsqL5IkH//2+5RWQgiQbhZRTObYN3MFojsXoZwPu BRfDFd/3YZYYRvnW8GBNsnau/rSViFpQUT9CtBObvhEDrN2Wdh26iCL3XRzDfKGB 6hxuDuXl/95H+1hw65iQEflkYzPC/b7CZP7T+uXJa33ehWT4nOgPb97XdXyey7/I i12xd5QrDe+dC6+AQaPYNHeogITz32R7mXQJYMIc1ft+ARJv5OATPtPXeaCceYGS 5Kj+4jzIyoEWTDHgFHZtLa9TsYUHl1gj9O5QBmU44Us3gy/MjZBSfA0u7Ck9yLPV 2ywLcupG/lG3ZQ77Eso7TiNeb4RwKbnvqFpTbOF7FC6DRbVpTqplzE0nLsEkIT4k XL2xeaQS60g60/hDJe7wjPnNayWakapRhXB7y1xyeb4p71QC9V1glri75iJ+ZW43 mTVuN4ziOFfUmA2Y49VlMeOS+llwGGFxKK+6Ko7vQQ== =o7sw -----END PGP SIGNATURE----- --vkogqOf2sHV7VnPd-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 09:42:58 2012 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 9E42A106566B; Mon, 1 Oct 2012 09:42:58 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id C8F6D8FC0A; Mon, 1 Oct 2012 09:42:57 +0000 (UTC) Received: from alph.allbsd.org (p1137-ipbf1505funabasi.chiba.ocn.ne.jp [118.7.212.137]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id q919gYUu089742 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 1 Oct 2012 18:42:45 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id q919gOuA008859; Mon, 1 Oct 2012 18:42:24 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Mon, 01 Oct 2012 18:42:18 +0900 (JST) Message-Id: <20121001.184218.1800335799523252614.hrs@allbsd.org> To: romain@FreeBSD.org From: Hiroki Sato In-Reply-To: <20120930153124.GA4461@blogreen.org> References: <5066F61C.5050704@passap.ru> <20120929221703.GA70616@ithaqua.etoilebsd.net> <20120930153124.GA4461@blogreen.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Mon_Oct__1_18_42_18_2012_454)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Mon, 01 Oct 2012 18:42:47 +0900 (JST) X-Spam-Status: No, score=-97.7 required=13.0 tests=CONTENT_TYPE_PRESENT, MIMEQENC,ONLY1HOPDIRECT,QENCPTR2,SAMEHELOBY2HOP,USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: bapt@FreeBSD.org, bsam@passap.ru, freebsd-ports@FreeBSD.org Subject: Re: huge distfiles policy 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, 01 Oct 2012 09:42:58 -0000 ----Security_Multipart(Mon_Oct__1_18_42_18_2012_454)-- Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Romain Tarti=E8re wrote in <20120930153124.GA4461@blogreen.org>: ro> Hi! ro> = ro> On Sun, Sep 30, 2012 at 12:17:03AM +0200, Baptiste Daroussin wrote:= ro> > My second concern was discussed when Dominic Fandrey called for t= esting this ro> > port: at least 2 people have been working on texlive with differe= nt approach: ro> > hrs and romain. ro> > = ro> > In particular Romain and I discussed on merging texlive to the po= rts tree based ro> > on http://code.google.com/p/freebsd-texlive/ he has been contacte= d some company ro> > to mirror the splitted distfiles for us, and was suppose to resum= er his work on ro> > this when back from vacations which should be the case now given = that he has ro> > done some commit last week :D ro> > = ro> > I CCed both hrs and romain so they can give their opinion and the= status of ro> > their work. ro> = ro> Yes, after 2 months away, I am back :-) ro> = ro> While I was away, ro> - I received access to a jail for hosting versionned distfiles; ro> - I received a mail from hrs@ where he exposes a migration plan t= o ro> TeX Live and asked for comments / suggestions. ro> = ro> I replied to hrs@ and told him I would be happy to help, but have n= o ro> feedback yet. ro> = ro> Regarding the mirror of versionned distfiles, I have everything to = set ro> it up I think, and I just have to take some time to hack something = that ro> do the right thing and use it in my ports. However, since there ar= e ro> some boring flaws in the updating infrastructure, I postponed this,= ro> thinking that an answer from hrs@ would have lead to working on fun= nier ro> things (with a better infrastructure). While I have no news, I may= ro> however setup the repository, it won't hurt I guess. Sorry, I was swamped with real life issues and could not respond in a timely manner. In short, what I am working on is splitting the texlive distribution into pieces about ~200 ports (tex engines and macro packages) and generating versioned distfiles from a local CTAN mirror. A port just for installing whole part of texlive is difficult to handle in the ports tree because there are many software that have to depend on a part of it but texlive is really huge. I am considering to remove print/teTeX* (since I am the maintainer) and update the dependencies to use the modular texlive ports seamlessly. I have several prototype but I need to fix them to some recent changes in the ports tree before making one public for review. Although I was thinking it could be done in September, it didn't unfortunately. I will continue to work on it and probably make it in public after EuroBSDCon. -- Hiroki ----Security_Multipart(Mon_Oct__1_18_42_18_2012_454)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlBpZXoACgkQTyzT2CeTzy2YGQCcDl43OR7oEjEwHtLJD6n6tMBn BYMAn2aAkITjqC12RcOKTVubhLfPiGJE =iaDa -----END PGP SIGNATURE----- ----Security_Multipart(Mon_Oct__1_18_42_18_2012_454)---- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 09:44:36 2012 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 35FFC106566C; Mon, 1 Oct 2012 09:44:36 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F0C9D8FC0A; Mon, 1 Oct 2012 09:44:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q919iZgl051177; Mon, 1 Oct 2012 09:44:35 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q919iYf7051175; Mon, 1 Oct 2012 09:44:34 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Mon, 1 Oct 2012 11:44:31 +0200 From: Baptiste Daroussin To: Romain =?iso-8859-1?Q?Tarti=E8re?= Message-ID: <20121001094431.GC70616@ithaqua.etoilebsd.net> References: <5066F61C.5050704@passap.ru> <20120929221703.GA70616@ithaqua.etoilebsd.net> <20120930153124.GA4461@blogreen.org> <50695EF3.7040707@passap.ru> <20121001092122.GA85288@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sHrvAb52M6C8blB9" Content-Disposition: inline In-Reply-To: <20121001092122.GA85288@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: hrs@FreeBSD.org, Boris Samorodov , Ports FreeBSD Subject: Re: texlive (was: Re: huge distfiles policy) 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, 01 Oct 2012 09:44:36 -0000 --sHrvAb52M6C8blB9 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 01, 2012 at 11:21:22AM +0200, Romain Tarti=C3=A8re wrote: > Hi! >=20 > On Mon, Oct 01, 2012 at 01:14:27PM +0400, Boris Samorodov wrote: > > 30.09.2012 19:31, Romain Tarti=C3=A8re =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > > > On Sun, Sep 30, 2012 at 12:17:03AM +0200, Baptiste Daroussin wrote: > >=20 > > >> I CCed both hrs and romain so they can give their opinion and the st= atus of > > >> their work. > > >=20 > > > Yes, after 2 months away, I am back :-) > >=20 > > OK, guys, what is the best way to proceed: > > 1) either commit the PR with monolithic texlive and live with it for > > some time... > > 2) or postpone the PR and wait until Romain finishes his work? > >=20 > > Romain, can you give an estimation of when your ports may be ready to > > be committed? >=20 > I setup the mirror yesterday: > http://texlive-distfiles.blogreen.org/ >=20 > svn is committing the ~2200 ports in the freebsd-texlive repository > right now (a few minutes to go I guess). However, I have not looked at > updating ports depending on teTeX to make them work using TeX Live > instead=E2=80=A6 If the idea is just to provide TeX Live, I would tell t= hat > these ports do the job. For a drop-in replacement of teTeX, more work > is required. IMHO what we want is a drop-in replacement. regards, Bapt --sHrvAb52M6C8blB9 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBpZf8ACgkQ8kTtMUmk6ExdtACeK7/MP1pQDvD+TZWe2hiL/dV8 sn8AnjAqf9YNos0b09ybnnVPjEifHVHe =+F16 -----END PGP SIGNATURE----- --sHrvAb52M6C8blB9-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 09:51:27 2012 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 8330E1065674; Mon, 1 Oct 2012 09:51:27 +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 3F8D18FC0C; Mon, 1 Oct 2012 09:51:26 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TIcei-0004Vs-HC; Mon, 01 Oct 2012 10:51:20 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1TIcei-0001c8-DI; Mon, 01 Oct 2012 10:51:16 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q919pEDb087391; Mon, 1 Oct 2012 10:51:15 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q919pDxe087390; Mon, 1 Oct 2012 10:51:13 +0100 (BST) (envelope-from mexas) Date: Mon, 1 Oct 2012 10:51:13 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210010951.q919pDxe087390@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, wxs@freebsd.org X-Spam-Score: -4.6 X-Spam-Level: ---- Cc: Subject: security/sudo *** [pre-install] Signal 11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 09:51:27 -0000 # make install FORCE_PKG_REGISTER=1 ===> Installing for sudo-1.8.6.p3_1 ===> Generating temporary packing list if test -d ./.hg && cd .; then if hg log --style=changelog -b default > ChangeL og.tmp; then mv -f ChangeLog.tmp ChangeLog; else rm -f ChangeLog.tmp; fi; f i for d in compat common plugins/sudoers src include doc; do (cd $d && exec make pre-install) && continue; exit $?; done Checking existing sudoers file for syntax errors. *** [pre-install] Signal 11 Stop in /usr/ports/security/sudo/work/sudo-1.8.6p3/plugins/sudoers. *** [pre-install] Error code 1 Stop in /usr/ports/security/sudo/work/sudo-1.8.6p3. *** [do-install] Error code 1 Stop in /usr/ports/security/sudo. *** [install] Error code 1 Stop in /usr/ports/security/sudo. # This is on r235474 with # pkg -vvv version: 1.0 abi: freebsd:10:ia64:64 db dir: /var/db/pkg cache dir: /var/cache/pkg ports dir: /usr/ports Log into syslog: yes Assume always yes: no Handle rc scripts: no Track shlibs: no Automatic dependency tracking: no Custom keywords directory: none Developer mode: no Repository: ftp://ftp.freebsd.org/pub/pkgng # Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 10:05:45 2012 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 25858106564A; Mon, 1 Oct 2012 10:05:45 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward2h.mail.yandex.net (forward2h.mail.yandex.net [IPv6:2a02:6b8:0:f05::2]) by mx1.freebsd.org (Postfix) with ESMTP id 962168FC12; Mon, 1 Oct 2012 10:05:44 +0000 (UTC) Received: from smtp2h.mail.yandex.net (smtp2h.mail.yandex.net [84.201.187.145]) by forward2h.mail.yandex.net (Yandex) with ESMTP id B858A701178; Mon, 1 Oct 2012 14:05:42 +0400 (MSK) Received: from smtp2h.mail.yandex.net (localhost [127.0.0.1]) by smtp2h.mail.yandex.net (Yandex) with ESMTP id 283061700111; Mon, 1 Oct 2012 14:05:42 +0400 (MSK) Received: from 93.91.2.231.tel.ru (93.91.2.231.tel.ru [93.91.2.231]) by smtp2h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id 5fomoEIC-5foiTbmw; Mon, 1 Oct 2012 14:05:41 +0400 Message-ID: <50696AF4.1090405@passap.ru> Date: Mon, 01 Oct 2012 14:05:40 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Hiroki Sato References: <5066F61C.5050704@passap.ru> <20120929221703.GA70616@ithaqua.etoilebsd.net> <20120930153124.GA4461@blogreen.org> <20121001.184218.1800335799523252614.hrs@allbsd.org> In-Reply-To: <20121001.184218.1800335799523252614.hrs@allbsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: bapt@FreeBSD.org, romain@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: huge distfiles policy 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, 01 Oct 2012 10:05:45 -0000 01.10.2012 13:42, Hiroki Sato пишет: > I am considering to remove print/teTeX* (since I am the maintainer) and > update the dependencies to use the modular texlive ports seamlessly. Hiroki-san, this sounds like the best plan. Thank you! I'll hold on the PR for now. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 10:06:29 2012 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 0A6DD106566C for ; Mon, 1 Oct 2012 10:06:29 +0000 (UTC) (envelope-from jamie@kode5.net) Received: from kontrol.kode5.net (kontrol.kode5.net [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id 4B95F8FC15 for ; Mon, 1 Oct 2012 10:06:28 +0000 (UTC) Received: from kontrol.kode5.net (localhost [127.0.0.1]) by kontrol.kode5.net (8.14.5/8.14.5) with ESMTP id q91A6QJe020907 for ; Mon, 1 Oct 2012 11:06:26 +0100 (BST) (envelope-from jamie@kode5.net) Received: (from jamie@localhost) by kontrol.kode5.net (8.14.5/8.14.5/Submit) id q91A6QBr020906 for freebsd-ports@freebsd.org; Mon, 1 Oct 2012 11:06:26 +0100 (BST) (envelope-from jamie@kode5.net) X-Authentication-Warning: kontrol.kode5.net: jamie set sender to jamie@kode5.net using -f Date: Mon, 1 Oct 2012 11:06:26 +0100 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20121001100626.GA20699@kontrol.kode5.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <20120930101614.GA13820@kontrol.kode5.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: x-operating-system: FreeBSD 9.1-PRERELEASE amd64 x-pgp-fingerprint: A4B9 E875 A18C 6E11 F46D B788 BEE6 1251 1D31 DC38 x-pgp-key: 1D31DC38 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at kontrol.kode5.net X-Virus-Status: Clean Subject: Re: Installing non-ports software into /usr/local 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, 01 Oct 2012 10:06:29 -0000 [ Chris Rees wrote on Sun 30.Sep'12 at 11:47:52 +0100 ] > On 30 September 2012 11:16, Jamie Paul Griffin wrote: > > Hi > > > > I am having an issue with mutt 1.5.21. I have set up different colour schemes, etc. as people do. Anyway, I reinstalled it 2 days ago using the ports system, because I wanted to link mutt to the ncurses port rather than the system ncurses installation. After soing non of my colours show, only those that are set from within my terminal emulator which is urxvt. Initially, I had a problem during make(1) which related to the iconv library. I have iconv set as an option in my kernel configuration. the error suggested something about using libiconv instead. > > > > Anyway, I managed to overcome that and build it and istall it again but without colour. I'm wondering if I could/should build it my self from source and install it into /usr/local to see if that makes any difference. Would doing that cause problems for the ports system? > > > > Any comments and advice are welcome. Best wishes, Jamie > > As long as you don't install it from the port, which would overwrite > your version, there would be no trouble with this. > > If you come up with a solution, please send a PR in which the > maintainer will I'm sure be glad to look at :) > > Chris I have fixed or rather found the issue. Building mutt against the ncurses port was the cause. I pkg_delete'd mutt, ncurses port which also removed urxvt. Then started from scratch in terms of building mutt, this time against the base ncurses library, the re-installed urxvt and ncurses port as its depency and now all is back to normal. This is really for the archives and the mutt maintainer in case he wants to look into it but it's not a problem with the mutt port as such. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 11:06:09 2012 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 775C81065672 for ; Mon, 1 Oct 2012 11:06:09 +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 607D98FC1E for ; Mon, 1 Oct 2012 11:06:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q91B69dk024117 for ; Mon, 1 Oct 2012 11:06:09 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q91B68pr024113 for freebsd-ports@FreeBSD.org; Mon, 1 Oct 2012 11:06:08 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 1 Oct 2012 11:06:08 GMT Message-Id: <201210011106.q91B68pr024113@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, 01 Oct 2012 11:06:09 -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 -------------------------------------------------------------------------------- f ports/172200 [PATCH] update emulators/fceux to 2.1.5 o ports/172192 [PATCH] games/empire: Changed all to ${PORTNAME} and p o ports/172189 milter-regex startup script needs to permit run-as use o ports/172188 [PATCH] games/blue: Changed all to ${PORTNAME} and pkg o ports/172187 [PATCH] games/lianliankan: Makefile changed, OptionsNG o ports/172186 [PATCH] games/bs: Changed all to ${PORTNAME} and pkg-d o ports/172185 vlc build fail with gmake core dump at modules/plugins o ports/172184 Patch for permissions fix of UnrealIRCD o ports/172183 Severe filesystem corruption when running as KVM guest o ports/172182 amavis-p0fanalyzer doesn't start because of error in s f ports/172180 [Update]lang/gprolog:Update to 1.4.1 o ports/172173 [NEW PORT] games/netwalk: Game where the object is to o ports/172168 add comm/libdlo o ports/172167 [NEW PORT] games/domination: Board game that is a bit o ports/172165 [NEW PORT] textproc/the_silver_searcher: A code-search f ports/172147 sysutils/isomd5sum build fails with clang o ports/172143 updated astro/xearth to build with clang with no warni o ports/172142 [NEW PORT] emulators/swine: QT4 Graphical Wine fronten f ports/172141 [PATCH] deskutils/q4wine: update to 0.121, OptionsNG, f ports/172139 www/squid31 o ports/172123 [NEW PORT] games/rescue: Rescue! Max, Action Adventure o ports/172104 [PATCH] fix kdebase3 build with clang (crypto.cpp) o ports/172103 [PATCH] fix kdebase3 build with clang (->insert) o ports/172102 [PATCH] gccmakedep build error with clang-cpp o ports/172101 [PATCH] imake build error with clang-cpp f ports/172093 chinese/fcitx fixes a startup warning f ports/172078 [patch] Fix distfile for multimedia/mplayer-skins f ports/172074 [patch] www/fusionpbx remove dead code from Makefile o ports/172024 japansese/xjtext: Fix build o ports/171951 update port: security/fwknop FireWall KNock OPerator f ports/171950 devel/tnt: include/tnt/tnt_sparse_matrix_csr.h:97:3: e o ports/171945 fusefs-smbnetfs crash since fusefs-libs update to 2.9. f ports/171933 [PATCH] sysutils/mbmon: fix OptionsNG o ports/171932 wrong excutable program installed in ports/biology/mop f ports/171931 [PATCH] net-mgmt/zabbix-server: update to 1.8.15 f ports/171928 [patch update] security/strongswan 4.5.3 -> 5.0.0 o ports/171921 New port: devel/ocltools: o ports/171919 xmms libmpeg123 Undefined symbol "mpg123_synth_1to1_mm f ports/171917 databases/mantis: Database query failed. Error receive o ports/171914 New port: devel/pocl: Portable open source OpenCL 1.2 o ports/171903 Observium port should only provide dependencies f ports/171901 [MAINTAINER REPLACE AND PORT UPDATE] multimedia/ffmpeg o ports/171899 Openoffice 3.4.1 build failure o ports/171896 ports/multimedia/libvdpau on 9.0-REL amd64 fails to co f ports/171893 [BUG] sysutils/ezjail: ezjail_admin update -b (Cannot f ports/171886 [PATCH] multimedia/gpac-mp4box: [SUMMARIZE CHANGES] o ports/171884 [maintainer update] update for graphics/opencolorio o ports/171878 libsphinxclient port is incompatible with sphinxsearch o ports/171872 update mkvtoolnix to 5.8, keep old as mkvtoolnix50 o ports/171870 [NEW PORT] games/visualspell: Challenges players to us o ports/171869 [NEW PORT] games/multiplik12: Educational game for lea o ports/171868 New port: net/remotebox [redports] o ports/171861 [NEW PORT] multimedia/pymp: Lean, flexible frontend to o ports/171855 [NEW PORT] net-mgmt/node-statsd - Simple daemon for ea o ports/171850 Misleading pkg install option in fusefs-kmod f ports/171849 databases/postgis: port switches compiler! GCC -> CLAN f ports/171818 Please add option for Python-integration to sysutils/b o ports/171800 security/metasploit: Update Metasploit to version 4.4. o ports/171792 patch: allow xmille to select starting player randomly f ports/171763 Upgrade mail/davmail to 4.0.0-2016 o ports/171760 New port: cad/sweethome3d o ports/171735 [NEW PORT] editors/py31-loook-devel: Simple Python too o ports/171734 [NEW PORT] editors/py27-loook: Simple Python tool that f ports/171730 emulators/virtualbox-ose: f ports/171723 Update of the sysutils/tree port o ports/171722 [MAINTAINER] graphics/mapnik: update to 2.1.0 f ports/171707 multimedia/mplayer: i386 clang build error f ports/171699 audio/murmur: Change didn't note in Makefile f ports/171677 update for multimedia/clipgrab o ports/171675 [NEW PORT] games/cocos2d: Framework for building 2D ga o ports/171674 [NEW PORT] audio/alure: Utility library to help manage f ports/171605 net-mgmt/netams 3.4.5 compilation error o ports/171603 [NEW PORT] games/py27-dcross: Blocks fall from the top o ports/171602 [NEW PORT] games/py27-cargocarrier: Collect cargo crat f ports/171591 net-mgmt/zabbix2-agent: Segmentation fault with versio o ports/171576 [NEW PORT] games/py27-bombz: Simple 2D puzzle game wit f ports/171575 [patch] sysutils/uhidd: make it work with clang (encod o ports/171559 [NEW PORT] games/airstrike: 2d biplane dogfight game o ports/171552 [NEW PORT] games/traingame: Game about Trains f ports/171523 [PATCH] devel/boost-libs: Allow building using Clang, o ports/171486 [NEW PORT] games/help_hannahs_horse: Pacman with a fas o ports/171431 [NEW PORT] games/asteroid: Modern version of the arcad o ports/171429 [NEW PORT] games/pyspacewar: Two ships duel in a gravi f ports/171396 emulators/virtualbox-ose: dd crashes in Virtualbox on o ports/171392 [NEW PORT] games/py27-super_mario_bros_python: Clone o o ports/171391 [NEW PORT] games/py27-pytowerdefense: Tower Defense Ga f ports/171388 news/hellanzb doesn't work anymore since Fbsd 9.0 o ports/171378 New port: x11-wm/herbstluftwm Manual tiling window man f ports/171338 both databases/mariadb-scripts and databases/mariadb-s o ports/171332 [NEW PORT] games/py27-pythonsudoku: Text and graphical o ports/171323 [NEW PORT] games/hitori: Logic game similar to Sudoku f ports/171276 [PATCH] mail/opendkim: update to 2.6.7 o ports/171237 [NEW PORT] games/schiff: Steer your ship(s) with the k o ports/171236 [NEW PORT] games/schwarzweiss: Tank game for 2 players f ports/171231 audio/clementine-player starts only at the second time o ports/171224 [NEW PORT] games/bouncy: You are a hungry rabbit. Eat o ports/171176 new port: net/winexe f ports/171160 sysutils/loganalyzer depends on php5 s ports/171153 new version available for net-mgmt/coovachilli o ports/171149 new port: textproc/imsettings - a framework manages in o ports/171106 New Port: net/jdownloader - Download manager (java) o ports/171079 graphics/rawtherapee hangs x11 o ports/171019 [new port] science/isis3: USGS ISIS3 planetary mapping o ports/171017 [new port] astro/cspice: New scientific port: NASA/NAI f ports/171005 Updated port sysutils/rubygem-chef o ports/170941 [NEW PORT] games/brickout: A ball-and-paddle game wher o ports/170939 [NEW PORT] games/popstar: Simple puzzle game involving o ports/170918 [NEW PORT] games/entombed: A one- or two-player maze g o ports/170887 [NEW PORT] games/fightorperish: A dungeon-crawling gam o ports/170836 [NEW PORT] games/agendaroids: Vector-based rock-shooti o ports/170835 net/ifstated fails to build because of incorrect lib d o ports/170823 [new port] multimedia/podcastdl: simple podcast client o ports/170819 New port: net-mgmt/UniFi UniFi Wireless Controller f ports/170773 sysutils/bacula-server overlaps with sysutils/backula- f ports/170723 [patch] x11-wm/dwm: add optional Xft support o ports/170695 sysutils/fusefs-ntfs - instant reboot when mv from UFS o ports/170662 [NEW PORT] devel/pymunk: A easy-to-use pythonic 2d phy o ports/170661 [NEW PORT] graphics/py27-pyglet-devel: Cross-platform f ports/170641 x11-toolkits/open-motif: need mkcatdefs utility f ports/170616 gpk-update-viewer f ports/170610 [update]: textproc/ctpp2 up to new version o ports/170569 sysutils/sec does not start automatically at boot time f ports/170542 sysutils/bsdadminscripts does not build correctly in m f ports/170538 x11-wm/enlightenment build breaks f ports/170537 devel/libftdi seems broken on i386 and amd64 f ports/170473 [patch] audio/alsa-plugins: disable ARIFF_OSS by defau o ports/170448 [NEW PORT] devel/allegro5: Allegro 5 is a game program f ports/170381 x11/slim window manager gives dbus errors starting xfc f ports/170366 lang/libobjc2: update to 1.6.1 f ports/170357 net-mgmt/tcptrack Segmentation fault (core dumped) f ports/170344 [UPDATE] net/tcpflow: update to 1.2.8, take maintainer f ports/170339 www/node: segmentation violation in v8::internal::Hand o ports/170336 New port: textproc/confetti Configuration file parser o ports/170242 [PATCH] devel/arduino: fix avr-libc SIG_USART1_RECV is o ports/170241 [PATCH] devel/libftdi: upgrade to 0.20 and fix automak f ports/170186 Update sysutils/modules to version 3.2.9 o ports/170185 sysutils/mgeupsd not correctly works. o ports/170104 error setting source interface in net/mcast-tools, net f ports/170100 astro/orsa: version 0.7.0 in ports hopelessly outdated f ports/170089 chinese/ibus-chewing 1.3.10 can't be compiled with ibu o ports/170016 net/liveMedia: update to 2012.07.18 release o ports/170000 emulators/vmware-tools6: Can not install VMware Tools f ports/169876 devel/flyspray: Strict Standards: Non-static method Fl o ports/169741 [new port] devel/visualparadigm o ports/169736 Patch for broken net-im/libjingle port f ports/169716 net-mgmt/ndpmon several problems with build and instal o ports/169628 sysutils/devcpu-data f ports/169521 astro/weatherspect: Exiting with SIGUse of uninitializ o ports/169519 [net/cvsup] socksify and cvsup cannot be used together o ports/169506 [NEW PORT] devel/pecl-inotify: The inotify extension a o ports/169492 [new port] databases/pecl-sqlite must be restored o ports/169371 port graphics/sane-backends segfaults f ports/169333 [PATCH] sysutils/syslog-ng2: move sample config to EXA o ports/169322 New port: net/armsd: SMFv2/ARMS Service Adapter daemon o ports/169296 New port: textproc/libcrm114 CRM114 C-callable Library f ports/169165 sysutils/fusefs-kmod: calling fchown(2) on sshfs files f ports/169032 Update net-im/qutim port to 0.3.0 f ports/168935 www/firefox-remote shares PORTNAME with www/firefox o ports/168926 Second '59.xxx' out of range 0..59 at security/snort-r o ports/168861 devel/tkcvs: tkdiff no longer runs correctly f ports/168611 conflict: cad/brlcad: Port shares files with other por o ports/168491 [NEW PORT] www/py27-django-mezzanine: An open source C o ports/168490 [NEW PORT] www/py27-django-mezzanine-grappelli: Fork o s ports/168486 [PATCH] www/sams, warnings "strftime() [function.strft f ports/168466 [PATCH] www/sams, web-interface, needs GetHostnameSam. f ports/168407 [patch] lang/gauche: update to 0.9.3.2, unbreak o ports/168404 [NEW PORT] databases/dev-sqlite3: This is a developmen o ports/168328 [REPOCOPY] devel/codeblocks --> devel/codeblocks-devel f ports/168319 graphics/qiviewer: Not displaying image jpeg o ports/168215 [PATCH] print/scribus-devel: update to 1.5.0 svn f ports/168161 [PATCH] sysutils/conky: update to 1.9.0 f ports/168160 ports-mgmt/jailaudit doesn't return a non-0 exit code o ports/168114 [NEW PORT] games/duckmaze: A game about a duck that is s ports/167955 [update] graphics/tinyows: Fix dependency to postgis f ports/167950 databases/memcachedb does not work on 10-CURRENT f ports/167691 security/heimdal: problem compiling kerberos/heimdal o ports/167554 security/openssh-portable has some drawbacks f ports/167352 New port: devel/py-repoze.lru f ports/167090 sysutils/ezjail: Invalid command line option in ezjail f ports/167074 New Port: www/drupal7-ldap o ports/167042 New port: net-p2p/tahoe-lafs f ports/167031 security/heimdal ignore environment after process call f ports/166987 net/nss_ldap: ports/152982 causes nss_ldap to not func o ports/166826 New port: misc/libphidget The driver for Phidgets devi o ports/166812 New port: mail/bounceHammer o ports/166522 lang/f77: Fortran 77 compiler always exits with error f ports/166417 rc script for net/delegate (ports) f ports/166117 add knobs in math/grace to make features selectable an o ports/166006 Problem with mail/postfix and mail/mailman integration f ports/166004 www/squid31 3.1.19 crashes on first request f ports/165672 sysutils/bacula-server doesn't install all symlinks ne o ports/165586 New port german/lx-office-erp, sql-ledger fork with ex f ports/165361 x11-wm/e17-module-mem counts memory incorrectly f ports/164941 [UPDATE] [NEW PORTS] jamvm/classpath w/o jdk o ports/164306 update mail/mailagent to 3.1.77 and utmpx fix f ports/164199 Ports fail to acknowlegde newly created users o ports/164197 smsd(comms/smstools3) doesn't read some configurations o ports/164060 net/ucarp doesn't work on FreeBSD 9.0-PRERELEASE o ports/164055 sysutils/zfs-periodic: Test if scrubbing is in process o ports/163955 input packet for interface are counted twice o ports/163850 New port: cad/linux-bricscad f ports/163126 security/sshguard changed from syslog.conf to daemon b o bin/162681 pkg_add(1): new installer does not add doc packages o ports/162607 little correction for comms/smstools3 o ports/162045 print/ghostview 1.5_2 coredumps on certain files f ports/161690 New port: games/prboom-plus Port of ID Software's Doom o ports/161578 devel/strace is not working f ports/161278 net/dante: getoutaddr(): address [...] selected, but n f ports/161070 infinite loop for graphics/xfig on 9.0-CURRENT s ports/160993 New port: security/sqlcipher f ports/159242 New port: sysutils/fuse-zip FUSE filesystem to mount Z f ports/159177 sysutils/muse on 8.2-STABLE o ports/159003 devel/cross-gcc attempts to use $PRFIX/../../ranlib on o ports/158983 [NEW PORT] devel/pecl-dtrace: PHP DTrace provider o ports/157544 Updates for databases/linux-oracle-instantclient-* a ports/157504 [new port] net-mgmt/zenpack-NetApp: Provides monitorin o ports/157107 conflict between mail/p5-Mail-SPF and mail/libspf2 o ports/156834 New port: games/fairymax-devel latest version of games o ports/155941 net/nepenthes: mwserv library support is not included f ports/155898 Update port devel/libthai f ports/155115 devel/doxygen: dependancy loop o ports/152915 russian/xmms v. 1.2.11_12 don't see cdinfo and tag's i o ports/152306 devel/binutils create binary incompatible kernel modul o ports/151747 new port: emulators/wine-fbsd64: request for (a variat o ports/151280 emulators/vmware-guestd6 port install error in /usr/po o ports/150425 www/squid31: rc.d/squid's squid_fib setting ineffectiv o ports/148996 net/cvsup-mirror doesn't use preassigned UID/GIDs o ports/147788 x11-drivers/xf86-video-radeonhd-devel 1.3.0.20091101_3 o ports/140170 net/liveMedia: install shared libraries and thus fix r o ports/103751 databases/linux-oracle-instantclient-sqlplus: ldconfig 230 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 11:23:24 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0049C106567B for ; Mon, 1 Oct 2012 11:23:23 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 54F748FC28 for ; Mon, 1 Oct 2012 11:23:22 +0000 (UTC) Received: (qmail 96782 invoked by uid 89); 1 Oct 2012 11:23:16 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@79.251.21.134) by mail.grem.de with ESMTPA; 1 Oct 2012 11:23:16 -0000 Date: Mon, 1 Oct 2012 13:23:15 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121001132315.23f90c8b@bsd64.grem.de> In-Reply-To: <25078838-7464-440D-8977-DC2671AE03F3@grem.de> References: <20120930050803.7914caf6@bsd64.grem.de> <20120930141935.GA88537@charon.picobyte.net> <25078838-7464-440D-8977-DC2671AE03F3@grem.de> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Problems submitting patch containing UTF-8 characters 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, 01 Oct 2012 11:23:24 -0000 On Sun, 30 Sep 2012 16:33:15 +0200 Michael Gmelin wrote: > > > On 30 Sep 2012, at 16:19, Shaun Amott wrote: > > > On Sun, Sep 30, 2012 at 05:08:03AM +0200, Michael Gmelin wrote: > >> I recently ran into a problem submitting a PR containing UTF-8 > >> characters, they ended up garbled, so the maintainer couldn't > >> apply the patch cleanly. > > > > GNATS, unfortunately, records no information about character > > encoding. To make matters worse, it actually removes many headers > > from e-mail replies, meaning query-pr.cgi can usually only work on > > guesses and assumptions. > > > > Headers are however preserved inside MIME parts, and if there are > > any of these headers, they are used; but in this case your MUA > > hasn't included encoding information here. > > > > Shaun > > > > -- > > Shaun Amott // PGP: 0x6B387A9A > > "A foolish consistency is the hobgoblin > > of little minds." - Ralph Waldo Emerson > > ... > I tries setting the character encoding of the attachment, which fixes the problem only for viewing the patch on the PR website (so one could copy and paste the patch). The download links will still deliver a corrupted patch though, so basically it is impossible to submit a patch containing UTF-8 characters that can be downloaded from the PR website correctly*. I created a bug describing/demonstrating the issue, maybe a member of portmgr or www could check this. http://www.freebsd.org/cgi/query-pr.cgi?pr=172195 Michael * unless one encodes it into a special ASCII format like base64 and attaches this as text/plain us ascii and of course tells people how to use it - this is neither practical nor desirable since it makes it impossible to discuss a patch by just looking at it on the website. -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 15:30:42 2012 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 F252D106566B for ; Mon, 1 Oct 2012 15:30:41 +0000 (UTC) (envelope-from martin.olsson@sentor.se) Received: from smtp-out.sentor.se (smtp-out.sentor.se [195.178.165.236]) by mx1.freebsd.org (Postfix) with ESMTP id 595E98FC1A for ; Mon, 1 Oct 2012 15:30:41 +0000 (UTC) Received: from NIKKA (static-213-115-204-13.sme.bredbandsbolaget.se [213.115.204.13]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by farmermaggot.shire.sentor.se (Postfix) with ESMTPSA id 25351AA52EA3; Mon, 1 Oct 2012 17:22:17 +0200 (CEST) From: "Martin Olsson" To: Date: Mon, 1 Oct 2012 17:22:17 +0200 Organization: Sentor MSS AB Message-ID: <9A960A2AF5984BBA9999817BB20E6D3E@NIKKA> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Content-Type: multipart/signed; boundary="----=_NextPart_000_0052_01CD9FF9.4E808110"; protocol="application/x-pkcs7-signature"; micalg=SHA1 Thread-Index: Ac2f6Ir3FTl8XCXgR3eRfdmzivir1A== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Cc: ports@FreeBSD.org Subject: FreeBSD Port: barnyard2-1.9_2 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, 01 Oct 2012 15:30:42 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0052_01CD9FF9.4E808110 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi! firnsy@securixlive.com announced a new stable version of barnyard2 the other day. Do you have an estimated date when FreeBSD ports will use this new version? /Martin --- Barnyard2 - v2-1.10 is released G'day all, It's my great pleasure to finally announce the next stable release of barnyard2 v2-1.10 build(310). After almost 20 months of development and continuous testing from the community we are happy to get this one out to the masses (without the beta tag). This development cycle has seen a lot of changes, refinements and fixes. This will be the last version build arround the old database schema. The next release of barnyard2 will come with new database output that only support the new schema, native IPv6 support and FULL unified2 support for all output plugin. I could go on about the changes, but the wait has been long enough. Here's a summary of the more notable changes: * Additions - spo_database. Support of encrypted connections to postgresql is now available. See README.database for the appropriate options. - spo_sguil. Fixed issue with duplication of alerts. - Completely re-written database plugin for performance optimisation against the original DB schema. NOTE: If you have intentions of running this new version we highly recommended you to clean two databases table for better performance: reference and sig_reference, not doing so will not break anything but could slow the startup caching process). - New Bro output plugin (thanks to Seth Hall) - A new syslog plugin (syslog_full) that support local and remote TCP and UDP syslog. * Improvements - Improved support against the latest Unified 2 format. Extended headers are read, however no plugins use the information currently. - Improved core IPv6 support. - Compile under cygwin - And many, many bugfixes. You can download the source in a number of ways: - https://github.com/firnsy/barnyard2/tags (as a zip/tarball) - git://github.com/firnsy/barnyard2.git (via a git clone) I would like to pay a special thanks to Eric Lauzon (the newest member of the core development team) and the many people who have helped along the road: Russell Fulton, Tim Shelton, JJ Cummings. Michael Steele, Brett Edgar, Bill Parker, Miguel Alvarez, Martin Holste, Jason Haar and any others who I may have missed. Regards, - firnsy ------=_NextPart_000_0052_01CD9FF9.4E808110 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIQfjCCBBow ggMCAhEAi1t1VoRUhQsAz684SM6xpDANBgkqhkiG9w0BAQUFADCByjELMAkGA1UEBhMCVVMxFzAV BgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTow OAYDVQQLEzEoYykgMTk5OSBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5 MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAxIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24g QXV0aG9yaXR5IC0gRzMwHhcNOTkxMDAxMDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCByjELMAkGA1UE BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO ZXR3b3JrMTowOAYDVQQLEzEoYykgMTk5OSBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAxIFB1YmxpYyBQcmltYXJ5IENlcnRp ZmljYXRpb24gQXV0aG9yaXR5IC0gRzMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDd hNS5tPmn2PMEeJzePdxsExbZet0kUWbAxyZZDawGCMKU0TMf8IM1H24byN6qbhVOVCfvxG0a7Avj DvBEpVfHQFgeo0cfcexg9m2UyBg57f5CGFbf5ExJEHhOAXY1YxI23Wa8AQQ2o1Vo1aI2CayrISZU Bq0/yhTgrMqtBh2V4vid8eBg/8J/dStMzNr+h5kh6rr+PlTX0ll42zxuz6ATABq4J6HkvmeWyqDF s5zdyXWe6zCaX6PN2a54GT8j6VzbKb2tVcgbVIxj9uim6sc3ElyjKR4C2dsfO7TXD1ZHgRUESq+D J9HFWIjB3faqp6MY2miqbRFR4b9la5+WdtE9AgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAKtmjdez useatuZV0AXxnzGNWqrZqkYmD3Htpa1TVmIBRypE6f4/dAsTm7n0TRuy0V+yttKIXLOfzcvUp9lg lYQ6+ME3HWHK57DF5ZHaVKasMYGul97NCKy4wJeAf25ypOdpE5VlH8STPP15jwTUPk/q957OzWd8 T2UC/5GFVHPH/zb3hi3s0F5P/xGfcgbWuBrxTA0mZeJEgB7Hn+Pd6Ara7KUggGlooU9+4WvPB0H6 g468ON2wLhGxa7JCzJq8+UgieUoZD7IcPiB02WrDvvIoeBNWeU9tUOobsLVXsTdmWCPz3A/fCofE 74YF1TgUYJmjS94GlnEs8tu2H6TvP+4wggVqMIIEUqADAgECAhAYpsoXYQliPBqd7U27ac1qMA0G CSqGSIb3DQEBBQUAMIHdMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAd BgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNVBAsTMlRlcm1zIG9mIHVzZSBhdCBo dHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTA5MR4wHAYDVQQLExVQZXJzb25hIE5vdCBW YWxpZGF0ZWQxNzA1BgNVBAMTLlZlcmlTaWduIENsYXNzIDEgSW5kaXZpZHVhbCBTdWJzY3JpYmVy IENBIC0gRzMwHhcNMTExMDI0MDAwMDAwWhcNMTIxMDI2MjM1OTU5WjCCARcxFzAVBgNVBAoTDlZl cmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMUYwRAYDVQQLEz13 d3cudmVyaXNpZ24uY29tL3JlcG9zaXRvcnkvUlBBIEluY29ycC4gYnkgUmVmLixMSUFCLkxURChj KTk4MR4wHAYDVQQLExVQZXJzb25hIE5vdCBWYWxpZGF0ZWQxMzAxBgNVBAsTKkRpZ2l0YWwgSUQg Q2xhc3MgMSAtIE5ldHNjYXBlIEZ1bGwgU2VydmljZTEWMBQGA1UEAxQNTWFydGluIE9sc3NvbjEm MCQGCSqGSIb3DQEJARYXbWFydGluLm9sc3NvbkBzZW50b3Iuc2UwggEiMA0GCSqGSIb3DQEBAQUA A4IBDwAwggEKAoIBAQDcyyofxSzMtl3xVKqFNpWNg14ndz/V+Ke9voCs0injxY7fLzVafqZ3+DxU +voBvMMLJ+pWKf581JrqOI203c2mxd/32o5XhW3hBf+w9G5ymLVpCIoadGHfjNH+CVnfQF4PwdLj /5A44Tz+uapH6dbvPZPRpTe0hAH8E/tNUqa/3ZpLFVxYacWWEFvBadphzEln8lrjTYJdJp2aiAZM Mk7EzHOSfhDDzSIJpBpiLvj9sCHGER2/aIU80+ChkmeQ1fgFSEvzhEpmfkEe/723nl0Anmj1eWpq WlKv2280VaD6aU2C0husIk+KZLPPfLx4qp7+SA92Mf+yvjwqOTTjxSupAgMBAAGjgegwgeUwCQYD VR0TBAIwADBEBgNVHSAEPTA7MDkGC2CGSAGG+EUBBxcBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8v d3d3LnZlcmlzaWduLmNvbS9ycGEwCwYDVR0PBAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMEBggr BgEFBQcDAjAUBgpghkgBhvhFAQYHBAYWBE5vbmUwUAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2lu ZGMxZGlnaXRhbGlkLWczLWNybC52ZXJpc2lnbi5jb20vSW5kQzFEaWdpdGFsSUQtRzMuY3JsMA0G CSqGSIb3DQEBBQUAA4IBAQCdhcYRqHLTds42X+hQ9FnSIttYeZgSj+3kqTK9bl0x+gJbijA5uYQ+ c9M8Nr2SXPtCccNcwI49TPvpze07Q88bASqbMxyf9pHRXe5iVgwLbGb+RDsTk+24IJKSteLUIWV4 eBWMLkAqiNWt+Vrhk9eZH89jsmbf9xb1/9GTNNPzvcK1f+ukVXerZhvRWT+hpY6Zp2PGZ76xSuJF Nv9cNbWDVkaY2zl0OyQnI8dFl5vKi2M02NUP4guHhKexLx4FJyueL3Aw8S67X9YgQxQeZviJv4M+ CP3Wy3UmdqLbq5n/WfEZDwlxHeyyXSaAxa3MODqi16aUh86xxKDBDijx/ARDMIIG7jCCBdagAwIB AgIQcRVmBUrkkSFN6bxE+azT3DANBgkqhkiG9w0BAQUFADCByjELMAkGA1UEBhMCVVMxFzAVBgNV BAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYD VQQLEzEoYykgMTk5OSBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUw QwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAxIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 aG9yaXR5IC0gRzMwHhcNMDkwNTAxMDAwMDAwWhcNMTkwNDMwMjM1OTU5WjCB3TELMAkGA1UEBhMC VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3 b3JrMTswOQYDVQQLEzJUZXJtcyBvZiB1c2UgYXQgaHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL3Jw YSAoYykwOTEeMBwGA1UECxMVUGVyc29uYSBOb3QgVmFsaWRhdGVkMTcwNQYDVQQDEy5WZXJpU2ln biBDbGFzcyAxIEluZGl2aWR1YWwgU3Vic2NyaWJlciBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEA7cRH3yooHXwGa7vXITLJbBOP6bGNQU4099oL42r6ZYggCxET6ZvgSU6L b9UB0F8NR5GKWkx0Pj/GkQm7TDSejW6hglFi92l2WJYHr54UGAdPWr2f0jGyVBlzRmoZQhHsEnMh jfXcMM3l2VYKMcU2bSkUl70t2olHGYjYSwQ967Y8Zx50ABMN0Ibak2f4MwOuGjxraXj2wCyO4YM/ d/mZ//6fUlrCtIcK2GypR8FUKWVDPkrAlh/Brfd3r2yxBF6+wbaULZeQLSfSux7pg2qE9sSyriMG ZSalJ1grByK0b6ZiSBp38tVQJ5op05b7KPW6JHZi44xZ6/tu1ULEvkHH9QIDAQABo4ICuTCCArUw NAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC52ZXJpc2lnbi5jb20wEgYD VR0TAQH/BAgwBgEB/wIBADBwBgNVHSAEaTBnMGUGC2CGSAGG+EUBBxcBMFYwKAYIKwYBBQUHAgEW HGh0dHBzOi8vd3d3LnZlcmlzaWduLmNvbS9jcHMwKgYIKwYBBQUHAgIwHhocaHR0cHM6Ly93d3cu dmVyaXNpZ24uY29tL3JwYTA0BgNVHR8ELTArMCmgJ6AlhiNodHRwOi8vY3JsLnZlcmlzaWduLmNv bS9wY2ExLWczLmNybDAOBgNVHQ8BAf8EBAMCAQYwbgYIKwYBBQUHAQwEYjBgoV6gXDBaMFgwVhYJ aW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUS2u5KJYGDLvQUjibKaxLB4shBRgwJhYkaHR0cDovL2xv Z28udmVyaXNpZ24uY29tL3ZzbG9nbzEuZ2lmMC4GA1UdEQQnMCWkIzAhMR8wHQYDVQQDExZQcml2 YXRlTGFiZWw0LTIwNDgtMTE4MB0GA1UdDgQWBBR5R2EIQf04BKJL57XM9UP2SSsR+DCB8QYDVR0j BIHpMIHmoYHQpIHNMIHKMQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAd BgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNz IDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHM4IRAItbdVaEVIUL AM+vOEjOsaQwDQYJKoZIhvcNAQEFBQADggEBADlNz0GZgbWpBbVSOOk5hIls5DSoWufYbAlMJBq6 WaSHO3Mh8ZOBz79oY1pn/jWFK6HDXaNKwjoZ3TDWzE3v8dKBl8pUWkO/N4t6jhmND0OojPKvYLMV irOVnDzgnrMnmKQ1chfl/Cpdh9OKDcLRRSr4wPSsKpM61a4ScAjr+zvid+zoK2Q1ds262uDRyxTW cVibvtU+fbbZ6CTFJGZMXZEfdrMXPn8NxiGJL7M3uKH/XLJtSd5lUkL7DojS7Uodv0vj+Mxy+kgO ZY5JyNb4mZg7t5Q+MXEGh/psWVMu198r7V9jAKwV7QO4VRaMxmgD5yKocwuxvKDaUljdCg5/wYIx ggT0MIIE8AIBATCB8jCB3TELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8w HQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTswOQYDVQQLEzJUZXJtcyBvZiB1c2UgYXQg aHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL3JwYSAoYykwOTEeMBwGA1UECxMVUGVyc29uYSBOb3Qg VmFsaWRhdGVkMTcwNQYDVQQDEy5WZXJpU2lnbiBDbGFzcyAxIEluZGl2aWR1YWwgU3Vic2NyaWJl ciBDQSAtIEczAhAYpsoXYQliPBqd7U27ac1qMAkGBSsOAwIaBQCgggLWMBgGCSqGSIb3DQEJAzEL BgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTEyMTAwMTE1MjIxN1owIwYJKoZIhvcNAQkEMRYE FPZV1XLtxjSgyt8t2cy4bpKk1F4rMGcGCSqGSIb3DQEJDzFaMFgwCgYIKoZIhvcNAwcwDgYIKoZI hvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqGSIb3DQMCAgEoMAcGBSsOAwIa MAoGCCqGSIb3DQIFMIIBAwYJKwYBBAGCNxAEMYH1MIHyMIHdMQswCQYDVQQGEwJVUzEXMBUGA1UE ChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdvcmsxOzA5BgNV BAsTMlRlcm1zIG9mIHVzZSBhdCBodHRwczovL3d3dy52ZXJpc2lnbi5jb20vcnBhIChjKTA5MR4w HAYDVQQLExVQZXJzb25hIE5vdCBWYWxpZGF0ZWQxNzA1BgNVBAMTLlZlcmlTaWduIENsYXNzIDEg SW5kaXZpZHVhbCBTdWJzY3JpYmVyIENBIC0gRzMCEBimyhdhCWI8Gp3tTbtpzWowggEFBgsqhkiG 9w0BCRACCzGB9aCB8jCB3TELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8w HQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTswOQYDVQQLEzJUZXJtcyBvZiB1c2UgYXQg aHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL3JwYSAoYykwOTEeMBwGA1UECxMVUGVyc29uYSBOb3Qg VmFsaWRhdGVkMTcwNQYDVQQDEy5WZXJpU2lnbiBDbGFzcyAxIEluZGl2aWR1YWwgU3Vic2NyaWJl ciBDQSAtIEczAhAYpsoXYQliPBqd7U27ac1qMA0GCSqGSIb3DQEBAQUABIIBAGMItAPMMkmcCgCC x1+S+zEiCs+6BE+ohqXthvTJbKv3NkqBwTOu3BKlH6YcPyuPGhxvAkuq4krY1Phf/J0UsIbkccKv LY1p8ei0WazqI8Bu/owTh79CkDQQyQG3pc9zQDwYDePd7Z3+l0v8x76psKSjYOkHx6qhvIxuxOeX CIx1Kkcyc+B8tqfcQUENkWs/3RpjD89DJtjAaartTWVgotwCvZKwk2OnOy3ueXYz7v+kZhG+mGkY T7M7mZw8LgnWg/hdClbmQYtUGqO0MHXBFGP5FPC3tpaGr+ZQivzP6qYUCE6qo3UhAHKekT9AOJlA f32p5JaYEpXVBv7Lts/d5toAAAAAAAA= ------=_NextPart_000_0052_01CD9FF9.4E808110-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 16:14:01 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35CCC1065670 for ; Mon, 1 Oct 2012 16:14:01 +0000 (UTC) (envelope-from meta@vmeta.jp) Received: from glory.vmeta.jp (7c293911.i-revonet.jp [124.41.57.17]) by mx1.freebsd.org (Postfix) with ESMTP id F334D8FC14 for ; Mon, 1 Oct 2012 16:13:59 +0000 (UTC) Received: from icepick.vmeta.jp (z179.124-44-236.ppp.wakwak.ne.jp [124.44.236.179]) by glory.vmeta.jp (Postfix) with ESMTPSA id B51324CB; Tue, 2 Oct 2012 01:13:57 +0900 (JST) Date: Tue, 2 Oct 2012 01:13:54 +0900 From: meta To: ports@freebsd.org Message-ID: <20121001161354.GA30842@icepick.vmeta.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Disposition: inline X-Operating-System: FreeBSD 9.0-RELEASE amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: New port: net/tigervnc call for testers (not PRed yet) 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, 01 Oct 2012 16:14:01 -0000 Hello VNC users, I created a new port net/tigervnc on redports.org. It is a new implementation of VNC and quite better than former VNCs. Currently, my net/tigervnc port has following promlems and I'm still working for making TigerVNC perfectly works. Anyway, I would like you to test if TigerVNC servers work (ex. Xvnc, vncserver, x0vncserver). To try my port, please checkout my redports repository. svn co http://svn.redports.org/meta/net/tigervnc/ Any advice is very welcome. Please help me to make TigerVNC port better! Current problems that I'm working on: - Cannot build vncviewer - Cannot build with GnuTLS - Not OptionsNG'fied yet Why TigerVNC is better than former VNCs. - Under active development - Based on newer xserver than former VNCs (v1.7.7, as same as x11-server/xorg-server) - Supports XRandR, evdev and other extensions - Better encodings save bandwidth and processor time - Fedora Project replaces RealVNC by TigerVNC More informations, please see: http://fedoraproject.org/wiki/Features/TigerVNC Regards, -- `whois vmeta.jp | nkf -w` meta From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 18:33:27 2012 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 1E6C81065670 for ; Mon, 1 Oct 2012 18:33:27 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id B02478FC0C for ; Mon, 1 Oct 2012 18:33:26 +0000 (UTC) Received: by yenl8 with SMTP id l8so1159275yen.13 for ; Mon, 01 Oct 2012 11:33:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:reply-to:organization:x-mailer:face :mime-version:content-type:content-transfer-encoding; bh=efbA/X0SLXPIfzRCryFY4IhmOrCbO9V67HbWj0FBA+I=; b=ZPedUEiKb0tkztpUV7qi3oWN8JC5X99/NCRGg4BZUr8/s1aDdcS1PZ8EaVZYRgepSi 4b8Y6c9KwdrRWO+C/mQj93fjC++YdWan8K6sITl6Ufq4sHR6PyUyuuPkVvIKHjGMGzKu O8xImnvwloqw0imdcF7pWKFRiZnkd32U2N8b0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:reply-to:organization:x-mailer:face :mime-version:content-type:content-transfer-encoding :x-gm-message-state; bh=efbA/X0SLXPIfzRCryFY4IhmOrCbO9V67HbWj0FBA+I=; b=ItZqd/qhctg0ou2I+ftNmTNeGuyaOlNFgDW4j0BrIVzvUEZJuWv7Vb2F9T9hc9cblO +i0OwgbQvqh0yxVkQMTsvqsP0OTqTXMVJpq5/J6DUWg7c0DFQwmTPoci5+BcPwKtphtP 7V6bWxcoSybF/Tv92e1MzwwosUoWk+gdjLoZ/o2w/IonPZUx1g/U9+UvCX6WPoZe4jwV 3Gg9uMXr5AZm4BKA+E+24rX1cWbXPqVaHCrEot13AIZ2C5OYyFGnIyBH29HvyTnPsvRy 9t/DKDD0jEhQ7tb5GnxpmWiHPMvnKjZn/q/rCMau/AN6enMQXEeTqQZY1uVkmT3T6uRm kqHg== Received: by 10.236.9.36 with SMTP id 24mr16321924yhs.63.1349116405808; Mon, 01 Oct 2012 11:33:25 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id l16sm15417090anm.6.2012.10.01.11.33.23 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 01 Oct 2012 11:33:24 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XVsZB1Ptqz2CG4L; Mon, 1 Oct 2012 14:33:22 -0400 (EDT) Date: Mon, 1 Oct 2012 14:33:21 -0400 From: Jerry To: freebsd-ports@freebsd.org, emulation@FreeBSD.org Message-ID: <20121001143321.461de2b2@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQlWQJuz+qZJCPj9RUx73lwdpYRSrtca1ZIcpXWDOfRtDRIpMFvqTk8Y0npP3Z02Z4uijigg Cc: Subject: flashplugin 11.2r202.238 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 18:33:27 -0000 I just finished installing "linux-f10-flashplugin-11.2r202.238". For some inexplicable reason, it is no longer working. I followed the directions in "UPDATING" but without success. I even cleared out the entries in the "~/.mozilla/plugins" directory and reran the command without results. In fact, now nothing is listed in the directory and flash still doesn't work. Every time I reach a page that requires flash, I am greeted with a message telling me I need to download and install it. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 19:03:29 2012 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 A9929106564A for ; Mon, 1 Oct 2012 19:03:29 +0000 (UTC) (envelope-from noidmvp@gmail.com) Received: from mail-oa0-f54.google.com (mail-oa0-f54.google.com [209.85.219.54]) by mx1.freebsd.org (Postfix) with ESMTP id 68E618FC0A for ; Mon, 1 Oct 2012 19:03:28 +0000 (UTC) Received: by oagn9 with SMTP id n9so5226829oag.13 for ; Mon, 01 Oct 2012 12:03:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=ocsMbCi+pQqyuvdGHotd+aUzkQ8vOanQKIXkUwjPNRk=; b=WiD/5GlZCNqNAZ9zDCvji4O8yBHwPtkukahqH+0doRpE3sjz32qppGyU4asMXgJ9/A jsj722MU2gmbvHzuTnQ2aCmBpnGygfNAiuYMH0OcvRPvkhgdt3m4uN0QfVwSAs+M410o Wr7fUl/E6d/vXmJFeZXhJ1WCAwyTxj9AhUU8ejvU41gsQnnKtkGDX6eVi6cz9p6vdpsW CwtSQDc0BrH19nIiNC8toEtG6KzD82M08nlwIV/TEcHiqVVQa+SoV220Ur1stvDTsWxY d+/Rzl/U9DdckEylO2tdP1DLfLlJu7GiPIFCKeTZcNaYEo3OSRGZdfWzmzGN6Ts0stA9 LpVw== MIME-Version: 1.0 Received: by 10.182.52.105 with SMTP id s9mr12550882obo.25.1349118207678; Mon, 01 Oct 2012 12:03:27 -0700 (PDT) Received: by 10.76.151.138 with HTTP; Mon, 1 Oct 2012 12:03:27 -0700 (PDT) In-Reply-To: <20121001143321.461de2b2@scorpio> References: <20121001143321.461de2b2@scorpio> Date: Mon, 1 Oct 2012 16:03:27 -0300 Message-ID: From: marcos alves To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: flashplugin 11.2r202.238 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, 01 Oct 2012 19:03:29 -0000 If you have the flashpluggin.so just do nspluginwrapper -v -a -i and you should be fine. 2012/10/1 Jerry > I just finished installing "linux-f10-flashplugin-11.2r202.238". For > some inexplicable reason, it is no longer working. I followed the > directions in "UPDATING" but without success. I even cleared out the > entries in the "~/.mozilla/plugins" directory and reran the command > without results. In fact, now nothing is listed in the directory and > flash still doesn't work. Every time I reach a page that requires flash, > I am greeted with a message telling me I need to download and install > it. > > -- > Jerry =E2=99=94 > > Disclaimer: off-list followups get on-list replies or get ignored. > Please do not ignore the Reply-To header. > __________________________________________________________________ > _______________________________________________ > 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 Mon Oct 1 19:06:59 2012 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 CE7E8106566C for ; Mon, 1 Oct 2012 19:06:59 +0000 (UTC) (envelope-from noidmvp@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8A3E68FC08 for ; Mon, 1 Oct 2012 19:06:59 +0000 (UTC) Received: by obbwc20 with SMTP id wc20so5698777obb.13 for ; Mon, 01 Oct 2012 12:06:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=pHf8UHTVxsGTt302wQKTtX1y1geoVUib63SdICvDhFU=; b=b+JJ/gAHWMEI5xCD5VC9Dh31L4fisnCeHGjBsoagsHgU11wScuw2+2Fv9FNHTDx2ZE LMal6vM5yeCVNOQil/mZhpM+f2C16u1aZMB0PZEZd7b05Q2nxz++x2KRiDtF6eKFgOJm N/2fKgpIsq+GzvUscsaHCRmPNUakFyReCLgmiwuzQkwWShNXJmxYqVDG9NRAwkRC+32S Q0eY62Cox4Q0Kw+SNRuPRUsf3jpssl0wCdF8e6czpWCbLoFB/xBimQp8TnlEK6nuuyYm oi/AvKp+9AXsLxQZOFZFiQvaDk4vVGSxGD881aaHlNSg1jQQsMXDG5lta+GLZrnFgvgY PilQ== MIME-Version: 1.0 Received: by 10.182.47.66 with SMTP id b2mr12272930obn.34.1349118413637; Mon, 01 Oct 2012 12:06:53 -0700 (PDT) Received: by 10.76.151.138 with HTTP; Mon, 1 Oct 2012 12:06:53 -0700 (PDT) In-Reply-To: References: <20121001143321.461de2b2@scorpio> Date: Mon, 1 Oct 2012 16:06:53 -0300 Message-ID: From: marcos alves To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: flashplugin 11.2r202.238 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, 01 Oct 2012 19:07:00 -0000 i meant libflashplayer.so 2012/10/1 marcos alves > If you have the flashpluggin.so just do nspluginwrapper -v -a -i > and you should be fine. > > > 2012/10/1 Jerry > >> I just finished installing "linux-f10-flashplugin-11.2r202.238". For >> some inexplicable reason, it is no longer working. I followed the >> directions in "UPDATING" but without success. I even cleared out the >> entries in the "~/.mozilla/plugins" directory and reran the command >> without results. In fact, now nothing is listed in the directory and >> flash still doesn't work. Every time I reach a page that requires flash, >> I am greeted with a message telling me I need to download and install >> it. >> >> -- >> Jerry =E2=99=94 >> >> Disclaimer: off-list followups get on-list replies or get ignored. >> Please do not ignore the Reply-To header. >> __________________________________________________________________ >> _______________________________________________ >> 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 Mon Oct 1 19:52:32 2012 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 B8244106564A for ; Mon, 1 Oct 2012 19:52:32 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 538E58FC14 for ; Mon, 1 Oct 2012 19:52:31 +0000 (UTC) Received: by ghrr20 with SMTP id r20so1554186ghr.13 for ; Mon, 01 Oct 2012 12:52:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=hc7duVekSBA3CWj5695tnTzf1wBd/WpkPbniESesdrk=; b=FH2tqsm95Rr8Eff7h6vjnKjKpEYIUa+Hf3nyMNX3bd5oicJi+P7M4zi7gjUuiWxfgz Ldl024eeDioh+S3Rxt2Bxr+OwF720W07Q+MZ6GA2futBdfExwoxfN1jOaHV1exA/5RJa U6n43DPz5EtDVqBIrZmdeGApsXmsh9QNILoWQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=hc7duVekSBA3CWj5695tnTzf1wBd/WpkPbniESesdrk=; b=FcAJppssNMHyV1gJrPyPSiIvuFxT8IZBCt68BH4C9jm6hIReqeIMe2/mSM2Sv0YKAb V9lt+stvtOp8hHxLmVQAXBejgiZaU3jxOVvgLRv4G89W8nEmtGykOj2hXvZ5t+Ys/+6y GlW5D8PH+dEzfxMS75C9pc6Z4V+OGyNFx1ry2nCS4hVh50p88vn6/KYBJ7tZkoSNhlfP 7PPMXjAZIq9GcDrka0IgXcqUWWNzOA4VC58xFkgEw1j8cs15lhAoEUcT3D5pND3kJ/nF mQknhgLDqgG64lJIN8cykaFNKf0kd9x1JAKVvtlf1zZXvjTCzVh4MjvuQb6JekUqomag sAHQ== Received: by 10.236.118.17 with SMTP id k17mr16302666yhh.69.1349121145054; Mon, 01 Oct 2012 12:52:25 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id l5sm18655193anq.7.2012.10.01.12.52.23 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 01 Oct 2012 12:52:24 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XVvKK6NZyz2CG4L for ; Mon, 1 Oct 2012 15:52:21 -0400 (EDT) Date: Mon, 1 Oct 2012 15:52:21 -0400 From: Jerry To: freebsd-ports@freebsd.org Message-ID: <20121001155221.22e50d53@scorpio> In-Reply-To: References: <20121001143321.461de2b2@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQmfTGlGAW4y7+n6nipJAiHfnTh0+0q5NGJQeBbqFiXzIs6EW8Y64KKfoAYglqlquBc3Xg6L Subject: Re: flashplugin 11.2r202.238 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 19:52:32 -0000 On Mon, 1 Oct 2012 16:06:53 -0300 marcos alves articulated: > 2012/10/1 marcos alves > > 2012/10/1 Jerry > > > >> I just finished installing "linux-f10-flashplugin-11.2r202.238". > >> For some inexplicable reason, it is no longer working. I followed > >> the directions in "UPDATING" but without success. I even cleared > >> out the entries in the "~/.mozilla/plugins" directory and reran > >> the command without results. In fact, now nothing is listed in the > >> directory and flash still doesn't work. Every time I reach a page > >> that requires flash, I am greeted with a message telling me I need > >> to download and install it. > > > > If you have the flashpluggin.so just do nspluginwrapper -v -a -i > > and you should be fine. > > i meant libflashplayer.so The problem was the link was broken. I finally ran: ln -s -f /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so /usr/local/lib/browser_plugins/ I had to use the "-f" flag otherwise it said the link existed. However, for whatever reason, it was not working correct. I recreated it, then ran: "nspluginwrapper -v -a -i" and all is well. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 20:29:59 2012 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 F0615106566B for ; Mon, 1 Oct 2012 20:29:58 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id B993614D993 for ; Mon, 1 Oct 2012 20:29:58 +0000 (UTC) Message-ID: <5069FD46.4090609@FreeBSD.org> Date: Mon, 01 Oct 2012 13:29:58 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20121001 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20121001143321.461de2b2@scorpio> <20121001155221.22e50d53@scorpio> In-Reply-To: <20121001155221.22e50d53@scorpio> X-Enigmail-Version: 1.4.4 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: flashplugin 11.2r202.238 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, 01 Oct 2012 20:29:59 -0000 I got tired of all that symlink nonsense a long time ago, and made this function to do the update: [ -e "${HOME}/.mozilla/plugins/npwrapper.libflashplayer.so" ] && unlink ${HOME}/.mozilla/plugins/npwrapper.libflashplayer.so; nspluginwrapper -i /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so hth, Doug From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 20:59:08 2012 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 18BF6106566C for ; Mon, 1 Oct 2012 20:59:08 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yh0-f54.google.com (mail-yh0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id A7D788FC0A for ; Mon, 1 Oct 2012 20:59:07 +0000 (UTC) Received: by yhfs35 with SMTP id s35so409381yhf.13 for ; Mon, 01 Oct 2012 13:59:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=Z4va0MvCKQOnOsqMu8lIbvr9a4rII2RdKKugkBTP2Vw=; b=LrfAVZLFyzuep0j76XoYxxlVfLmJhoMlQDhpnsVBiZOqYvGvUVsvHYnRMmEWN0Tq3N 8mehITI66uO4tmI6e/FYszGgxkIFPPlEcbK5WB0eOEHZKrdO7I4/UBplD51ZOHpsVp3b Nh3EcSlX8BH9kZbaKoAJQWQGNUwn8qZyCChto= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=Z4va0MvCKQOnOsqMu8lIbvr9a4rII2RdKKugkBTP2Vw=; b=NJuEH85+GUEDoEwtQwYVbVjPGAzMkXltDq8fr6f4oO5xCaojllHr7HWpsyz9geHzin FUXizFQVMMOZbnxWISXqeKeqcPdrB0r9758085CWt/axEMC3vQ7TNWMt75B/WiOLfTJO dyoDzU9pV3yylZoTrkLD6wWA0FBv0//PUZQIevesDvOPg5Su5XNUK3BmChz3kWX4RTxW 2a+v0820jmcc8rPvwaxpHaEWOOUJ4xGN/riR3XaZ3shGLPX9j27lmWWglsiAQQcuCyZj D56fVW099K3MV5DIw4pKiflGVcQp6YnO0cTX9Q89kAtomJ3LyE719DBHGiy/GFEKilD3 F+CA== Received: by 10.236.82.169 with SMTP id o29mr16414962yhe.116.1349125141159; Mon, 01 Oct 2012 13:59:01 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id t16sm18827304anj.21.2012.10.01.13.58.59 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 01 Oct 2012 13:59:00 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XVwp969g2z2CG4M for ; Mon, 1 Oct 2012 16:58:57 -0400 (EDT) Date: Mon, 1 Oct 2012 16:58:57 -0400 From: Jerry To: freebsd-ports@freebsd.org Message-ID: <20121001165857.49956612@scorpio> In-Reply-To: <5069FD46.4090609@FreeBSD.org> References: <20121001143321.461de2b2@scorpio> <20121001155221.22e50d53@scorpio> <5069FD46.4090609@FreeBSD.org> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQnyjko0osCG76uYSXqxTAXeuNR9ZgvvXBjbwGSZSDBX1E5qVh5DadF6GIInY7w00qGrPZoX Subject: Re: flashplugin 11.2r202.238 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 20:59:08 -0000 On Mon, 01 Oct 2012 13:29:58 -0700 Doug Barton articulated: > I got tired of all that symlink nonsense a long time ago, and made > this function to do the update: > > [ -e "${HOME}/.mozilla/plugins/npwrapper.libflashplayer.so" ] && > unlink ${HOME}/.mozilla/plugins/npwrapper.libflashplayer.so; > nspluginwrapper -i > /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so Good idea Doug. What really burns my ass is that in this day and age we are still being forced to use this silly bullshit for programs like "flash" and others. I know that this will piss off some people; however, when someone asks, "Why do you use Microsoft instead of open-source software", you can point to crap like this being an excellent reason. IMHO, the only reason for crap like this is because it is easier to ignore the problem than fix it. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 1 23:04:24 2012 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 244B8106564A for ; Mon, 1 Oct 2012 23:04:24 +0000 (UTC) (envelope-from prvs=614dfc7c5=pauls@utdallas.edu) Received: from ip-relay-002.utdallas.edu (ip-relay-002.utdallas.edu [129.110.20.112]) by mx1.freebsd.org (Postfix) with ESMTP id E15E68FC14 for ; Mon, 1 Oct 2012 23:04:23 +0000 (UTC) X-Group: RELAYLIST X-IronPort-AV: E=Sophos;i="4.80,520,1344229200"; d="p7s'?scan'208";a="99285484" Received: from unknown (HELO utdex26.campus.ad.utdallas.edu) ([10.180.14.53]) by ip-relay-002.utdallas.edu with ESMTP/TLS/AES128-SHA; 01 Oct 2012 18:02:57 -0500 Received: from UTDEX23.campus.ad.utdallas.edu ([169.254.2.120]) by utdex26.campus.ad.utdallas.edu ([10.180.14.53]) with mapi id 14.02.0309.002; Mon, 1 Oct 2012 18:02:57 -0500 From: "Schmehl, Paul" To: Martin Olsson Thread-Topic: FreeBSD Port: barnyard2-1.9_2 Thread-Index: Ac2f6Ir3FTl8XCXgR3eRfdmzivir1AAQFrwA Date: Mon, 1 Oct 2012 23:02:55 +0000 Message-ID: In-Reply-To: <9A960A2AF5984BBA9999817BB20E6D3E@NIKKA> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: user-agent: Microsoft-MacOutlook/14.2.4.120824 x-originating-ip: [10.100.40.40] Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha256; boundary="B_3431959378_3240028" MIME-Version: 1.0 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "ports@FreeBSD.org" Subject: Re: FreeBSD Port: barnyard2-1.9_2 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, 01 Oct 2012 23:04:24 -0000 --B_3431959378_3240028 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit I hope to get to it tomorrow. Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas On 10/1/12 10:22 AM, "Martin Olsson" wrote: >Hi! > >firnsy@securixlive.com announced a new stable version of barnyard2 the >other >day. >Do you have an estimated date when FreeBSD ports will use this new >version? > >/Martin > > > > > >--- >Barnyard2 - v2-1.10 is released > >G'day all, > >It's my great pleasure to finally announce the next stable release of >barnyard2 v2-1.10 build(310). > >After almost 20 months of development and continuous testing from the >community we are happy to get this one out to the masses (without the >beta tag). > >This development cycle has seen a lot of changes, refinements and >fixes. This will be the last version build arround the old database >schema. > >The next release of barnyard2 will come with new database output that >only support the new schema, native IPv6 support and FULL unified2 >support for all output plugin. > >I could go on about the changes, but the wait has been long enough. >Here's a summary of the more notable changes: > >* Additions > - spo_database. Support of encrypted connections to postgresql > is now available. See README.database for the appropriate options. > > - spo_sguil. Fixed issue with duplication of alerts. > > - Completely re-written database plugin for performance > optimisation against the original DB schema. > > NOTE: If you have intentions of running this new version we > highly recommended you to clean two databases table for better > performance: reference and sig_reference, not doing so will not > break anything but could slow the startup caching process). > > - New Bro output plugin (thanks to Seth Hall) > > - A new syslog plugin (syslog_full) that support local and remote > TCP and UDP syslog. > >* Improvements > - Improved support against the latest Unified 2 format. Extended > headers are read, however no plugins use the information currently. > > - Improved core IPv6 support. > > - Compile under cygwin > > - And many, many bugfixes. > >You can download the source in a number of ways: > - https://github.com/firnsy/barnyard2/tags (as a zip/tarball) > - git://github.com/firnsy/barnyard2.git (via a git clone) > >I would like to pay a special thanks to Eric Lauzon (the newest member >of the core development team) and the many people who have helped along >the road: Russell Fulton, Tim Shelton, JJ Cummings. Michael Steele, >Brett Edgar, Bill Parker, Miguel Alvarez, Martin Holste, Jason Haar and >any others who I may have missed. > >Regards, >- firnsy --B_3431959378_3240028-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 07:56:50 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB6A2106564A; Tue, 2 Oct 2012 07:56:50 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id A66F28FC0A; Tue, 2 Oct 2012 07:56:50 +0000 (UTC) Received: by pbbrp8 with SMTP id rp8so9845054pbb.13 for ; Tue, 02 Oct 2012 00:56:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=oJ2IpKHItOXiwgZCpGD94NqvGk+yZedOzVElmdovC78=; b=xcqFVpMBy6BdedD6YJ6pngsH0Swf/9zN64S9TSyZg1MI5mCoNGolm0yw7V/zmMOAiy 71xG5kveSRYYS03+M3p8bu7QDjXWrZ6jOtZ0uzKtKtVhueVXftiQLfdNWHT4WaCT/t9m 2AsUfOfZceZuT2qBBaMpeFnKcovh3A7fUSxMELLpULVt+saogu3JWRILKKWaw7UuHAEg lQVC+d1sKreI0E3wDB6PfavhjY/qY2IdOWK/LfGEV0rsrYF7CuzmbMXx8Cat7qw39pF5 8KBheVSQtFYyebnrcboZg3FsVXBULPmX/MK3H3ij0AW9A6TcDN7AzJ2/MqXc4HghPqtL 0M9A== Received: by 10.68.242.231 with SMTP id wt7mr2162600pbc.99.1349164610133; Tue, 02 Oct 2012 00:56:50 -0700 (PDT) Received: from [192.168.1.132] (mau.donbass.com. [92.242.127.250]) by mx.google.com with ESMTPS id s10sm347603paz.11.2012.10.02.00.56.47 (version=SSLv3 cipher=OTHER); Tue, 02 Oct 2012 00:56:49 -0700 (PDT) Message-ID: <506A9E3E.1020209@gmail.com> Date: Tue, 02 Oct 2012 10:56:46 +0300 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120924 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20121001143321.461de2b2@scorpio> In-Reply-To: <20121001143321.461de2b2@scorpio> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: emulation@FreeBSD.org, Jerry Subject: Re: flashplugin 11.2r202.238 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, 02 Oct 2012 07:56:51 -0000 01.10.2012 21:33, Jerry wrote: > I just finished installing "linux-f10-flashplugin-11.2r202.238". For > some inexplicable reason, it is no longer working. I followed the > directions in "UPDATING" but without success. I even cleared out the > entries in the "~/.mozilla/plugins" directory and reran the command > without results. In fact, now nothing is listed in the directory and > flash still doesn't work. Every time I reach a page that requires flash, > I am greeted with a message telling me I need to download and install > it. Could you please rerun nspluginwrapper -v -a -i? Is there anything in the system log? -- Sphinx of black quartz judge my vow. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 08:08:39 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B24A1065675 for ; Tue, 2 Oct 2012 08:08:39 +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 BC3988FC1A for ; Tue, 2 Oct 2012 08:08:38 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TIxWt-0006TT-5t for freebsd-ports@freebsd.org; Tue, 02 Oct 2012 09:08:37 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1TIxWt-0006tt-22 for freebsd-ports@freebsd.org; Tue, 02 Oct 2012 09:08:35 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q9288Y86023976 for ; Tue, 2 Oct 2012 09:08:34 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q9288Y2J023975 for freebsd-ports@freebsd.org; Tue, 2 Oct 2012 09:08:34 +0100 (BST) (envelope-from mexas) Date: Tue, 2 Oct 2012 09:08:34 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org X-Spam-Score: -4.6 X-Spam-Level: ---- Subject: removing non-existent ports from /var/db/pkg ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 08:08:39 -0000 I have on one system: # ls /var/db/pkg apr-1.4.6.1.4.1_1 help2man-1.40.10 pkgconf-0.8.4 auditfile help2man-1.40.11 pkgconf-0.8.5 autoconf-2.69 help2man-1.40.12 pkgconf-0.8.6 automake-1.12.2 libconfuse-2.7 pkgconf-0.8.7_2 automake-1.12.3 libxml2-2.7.8_5 pkgconf-0.8.8 automake-1.12.4 local.sqlite pkgconf-0.8.9 ganglia-monitor-core-3.1.7_4 mpfr-3.1.1 python27-2.7.3_3 gcc-4.7.2.20120721 neon29-0.29.6_4 rsync-3.0.9_2 gcc-4.7.2.20120728 pcre-8.31_1 sqlite3-3.7.14 gcc-4.7.2.20120804 pkg-1.0 subversion-1.7.5 gcc-4.7.2.20120825 pkg-1.0.r4 subversion-1.7.6 gcc-4.7.2.20120908 pkg-1.0.r4_1 sudo-1.8.5.p3 gcc-4.7.3.20120929 pkg-1.0.r5_1 sudo-1.8.6.p3_1 gmake-3.82_1 pkg-1.0.r6_1 # pkg info -xo gcc-4.7 gcc-4.7.3.20120929: lang/gcc47 # I wonder why I have old versions of several ports, which no longer exist, e.g. gcc47. I update with portmaster. Does the normal update procedure remove the old version entry from /var/db/pkg if the update has been successful? Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 09:21:49 2012 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 95B15106566C; Tue, 2 Oct 2012 09:21:49 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id 3E8188FC08; Tue, 2 Oct 2012 09:21:49 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirj.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TIyf9-0007cu-7C; Tue, 02 Oct 2012 10:21:48 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1TIyf9-00035L-1d; Tue, 02 Oct 2012 10:21:11 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q929LAeH024239; Tue, 2 Oct 2012 10:21:10 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q929LAWT024238; Tue, 2 Oct 2012 10:21:10 +0100 (BST) (envelope-from mexas) Date: Tue, 2 Oct 2012 10:21:10 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210020921.q929LAWT024238@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, wxs@freebsd.org X-Spam-Score: -4.7 X-Spam-Level: ---- Cc: Subject: Re: security/sudo *** [pre-install] Signal 11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 09:21:49 -0000 From mexas Mon Oct 1 10:51:13 2012 To: freebsd-ports@freebsd.org, wxs@FreeBSD.org Subject: security/sudo *** [pre-install] Signal 11 Reply-To: mexas@bristol.ac.uk # make install FORCE_PKG_REGISTER=1 ===> Installing for sudo-1.8.6.p3_1 ===> Generating temporary packing list if test -d ./.hg && cd .; then if hg log --style=changelog -b default > ChangeL og.tmp; then mv -f ChangeLog.tmp ChangeLog; else rm -f ChangeLog.tmp; fi; f i for d in compat common plugins/sudoers src include doc; do (cd $d && exec make pre-install) && continue; exit $?; done Checking existing sudoers file for syntax errors. *** [pre-install] Signal 11 Note: this is on ia64 r235474. I deleted the existing /usr/local/etc/sudoers, and the update was then successful. However, I'm getting: # visudo Segmentation fault (core dumped) # and nothing from the gdb: # gdb /usr/local/sbin/visudo visudo.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "ia64-marcel-freebsd"... Core was generated by `visudo'. Program terminated with signal 11, Segmentation fault. #0 0x0000000000000000 in ?? () (gdb) thread apply all bt Thread 1 (process 100111): #0 0x0000000000000000 in ?? () #1 0x2500000000036ae0 in ?? () Previous frame identical to this frame (corrupt stack?) (gdb) I build WITH_DEBUG= How can I debug this further? All tests fail when running make check under /usr/ports/security/sudo/work/sudo-1.8.6p3: Script started on Tue Oct 2 10:16:25 2012 make check for d in compat common plugins/sudoers src include doc; do (cd $d && exec make check) && continue; exit $?; done check_addr: 9 tests run, 0 errors, 100% success rate Segmentation fault (core dumped) Segmentation fault (core dumped) Segmentation fault (core dumped) check_symbols: 7 tests run, 0 errors, 100% success rate Segmentation fault (core dumped) 0a1,175 > # word wrap at 60 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 > ; PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 61 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 > ; PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 62 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 63 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 64 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 65 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 66 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 67 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool > list users > # word wrap at 68 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool > list users > # word wrap at 69 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool > list users > # word wrap at 70 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool > list users > # word wrap at 71 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool > list users > # word wrap at 72 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list > users > # word wrap at 73 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list > users > # word wrap at 74 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list > users > # word wrap at 75 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list > users > # word wrap at 76 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list > users > # word wrap at 77 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list > users > # word wrap at 78 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list users > # word wrap at 79 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list users > # word wrap at 80 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; > PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list users > # word wrap at 120 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; PWD=/home/tu2sp3-a ; USER=root ; > COMMAND=/opt/quest/bin/vastool list users > # word wrap at 140 characters > Jul 11 11:30:17 : tu2sp3-a : command not allowed ; TTY=pts/1 ; PWD=/home/tu2sp3-a ; USER=root ; COMMAND=/opt/quest/bin/vastool list users > # word wrap at 60 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 61 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 62 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 63 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 64 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 65 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 66 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 67 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 68 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 69 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; > TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 70 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT > ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 71 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT > ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 72 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 73 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 74 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 75 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 76 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 77 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 78 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 79 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; > PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 80 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; PWD=/usr/src/local/millert/hg/sudo/build > ; USER=root ; TSID=0004KT ; COMMAND=/bin/rm /root/.bash_profile > # word wrap at 120 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; > COMMAND=/bin/rm /root/.bash_profile > # word wrap at 140 characters > Jun 26 18:00:06 : millert : TTY=ttypm ; PWD=/usr/src/local/millert/hg/sudo/build ; USER=root ; TSID=0004KT ; COMMAND=/bin/rm > /root/.bash_profile Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test1.out sudoers/test1: FAIL 0a1,6 > Parses OK. > > > > user1 ALL = /usr/bin/su - : ALL = /usr/bin/id > user2 ALL = NOPASSWD: NOEXEC: /usr/bin/vi : ALL = PASSWD: EXEC: /usr/bin/echo sudoers/test1 (toke): FAIL 0a1,6 > Parses OK. > > > > user1 ALL = /usr/bin/su - : ALL = /usr/bin/id > user2 ALL = NOPASSWD: NOEXEC: /usr/bin/vi : ALL = PASSWD: EXEC: /usr/bin/echo Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test2.out sudoers/test2: FAIL 0a1,42 > Parses OK. > > Defaults@somehost set_home > Defaults@quoted" set_home > Defaults:you set_home > Defaults:us" set_home > Defaults:%them set_home > Defaults:%: non UNIX 0 c set_home > Defaults:+net set_home > Defaults>someone set_home > Defaults>some one set_home > > Runas_Alias RA1 = foo > Runas_Alias RA2 = foo" > Runas_Alias RA3 = foo:bar > Runas_Alias RA4 = foo:bar" > User_Alias UA1 = foo > User_Alias UA10 = %:C/non"UNIX"0 c > User_Alias UA11 = %:C/non_UNIX_0 c > User_Alias UA12 = %:C/non\'UNIX_3 c > User_Alias UA2 = foo.bar > User_Alias UA3 = foo" > User_Alias UA4 = foo:bar > User_Alias UA5 = foo:bar" > User_Alias UA6 = %baz > User_Alias UA7 = %baz.biz > User_Alias UA8 = %:C/non UNIX 0 c > User_Alias UA9 = %:C/non\'UNIX\'1 c > > foo hosta = (root) ALL > foo.bar hostb = (root) ALL > foo" hostc = (root) ALL > foo:bar hostd = (root) ALL > foo:bar" hoste = (root) ALL > %baz hosta = (root) ALL > %baz.biz hostb = (root) ALL > %:C/non UNIX 0 c hostc = (root) ALL > %:C/non\'UNIX\'1 c hostd = (root) ALL > %:C/non"UNIX"0 c hoste = (root) ALL > %:C/non_UNIX_0 c hostf = (root) ALL > %:C/non\'UNIX_3 c hostg = (root) ALL > +netgr hosth = (root) ALL sudoers/test2 (toke): FAIL 0a1,42 > Parses OK. > > Defaults@somehost set_home > Defaults@quoted" set_home > Defaults:you set_home > Defaults:us" set_home > Defaults:%them set_home > Defaults:%: non UNIX 0 c set_home > Defaults:+net set_home > Defaults>someone set_home > Defaults>some one set_home > > Runas_Alias RA1 = foo > Runas_Alias RA2 = foo" > Runas_Alias RA3 = foo:bar > Runas_Alias RA4 = foo:bar" > User_Alias UA1 = foo > User_Alias UA10 = %:C/non"UNIX"0 c > User_Alias UA11 = %:C/non_UNIX_0 c > User_Alias UA12 = %:C/non\'UNIX_3 c > User_Alias UA2 = foo.bar > User_Alias UA3 = foo" > User_Alias UA4 = foo:bar > User_Alias UA5 = foo:bar" > User_Alias UA6 = %baz > User_Alias UA7 = %baz.biz > User_Alias UA8 = %:C/non UNIX 0 c > User_Alias UA9 = %:C/non\'UNIX\'1 c > > foo hosta = (root) ALL > foo.bar hostb = (root) ALL > foo" hostc = (root) ALL > foo:bar hostd = (root) ALL > foo:bar" hoste = (root) ALL > %baz hosta = (root) ALL > %baz.biz hostb = (root) ALL > %:C/non UNIX 0 c hostc = (root) ALL > %:C/non\'UNIX\'1 c hostd = (root) ALL > %:C/non"UNIX"0 c hoste = (root) ALL > %:C/non_UNIX_0 c hostf = (root) ALL > %:C/non\'UNIX_3 c hostg = (root) ALL > +netgr hosth = (root) ALL Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test3.out sudoers/test3: FAIL 0a1,9 > Parses OK. > > Defaults:FOO env_reset > Defaults:foo,bar env_reset > Defaults:foo, bar env_reset > Defaults:foo,bar env_reset > > User_Alias FOO = foo, bar > sudoers/test3 (toke): FAIL 0a1,9 > Parses OK. > > Defaults:FOO env_reset > Defaults:foo,bar env_reset > Defaults:foo, bar env_reset > Defaults:foo,bar env_reset > > User_Alias FOO = foo, bar > Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test4.out sudoers/test4: FAIL 0a1,6 > Parse error in sudoers near line 7. > > > User_Alias BAR = bar > User_Alias FOO = foo > sudoers/test4 (toke): FAIL 0a1,6 > Parse error in sudoers near line 7. > > > User_Alias BAR = bar > User_Alias FOO = foo > Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test5.out sudoers/test5: FAIL 0a1,4 > Parse error in sudoers near line 2. > > > sudoers/test5 (toke): FAIL 0a1,4 > Parse error in sudoers near line 2. > > > Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test6.out sudoers/test6: FAIL 0a1,14 > Parses OK. > > Defaults:#123 set_home > Defaults>#123 set_home > Defaults:#123 set_home > Defaults>#123 set_home > > > #0 ALL = ALL > #0 ALL = (#0 : #0) ALL > #0 ALL = ALL > #0 ALL = (#0 : #0) ALL > %#0 ALL = ALL > %#0 ALL = ALL sudoers/test6 (toke): FAIL 0a1,14 > Parses OK. > > Defaults:#123 set_home > Defaults>#123 set_home > Defaults:#123 set_home > Defaults>#123 set_home > > > #0 ALL = ALL > #0 ALL = (#0 : #0) ALL > #0 ALL = ALL > #0 ALL = (#0 : #0) ALL > %#0 ALL = ALL > %#0 ALL = ALL Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test7.out sudoers/test7: FAIL 0a1,4 > Parse error in sudoers near line 2. > > > sudoers/test7 (toke): FAIL 0a1,4 > Parse error in sudoers near line 2. > > > Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test8.out sudoers/test8: FAIL 0a1,7 > Parse error in sudoers near line 8. > > > User_Alias UA1 = xy > User_Alias UA2 = xy > User_Alias UA3 = x"y > sudoers/test8 (toke): FAIL 0a1,7 > Parse error in sudoers near line 8. > > > User_Alias UA1 = xy > User_Alias UA2 = xy > User_Alias UA3 = x"y > sudoers: 0/16 tests passed; 16/16 tests failed testsudoers/test1: FAIL 1,2c1,8 < testsudoers: unknown user: root < Segmentation fault (core dumped) --- > Parses OK. > > Entries for user root: > > ALL = ALL > host matched > > Command unmatched testsudoers: 0/1 tests passed; 1/1 tests failed cmp: ./regress/visudo/*.out.ok: No such file or directory visudo/*: FAIL diff: ./regress/visudo/*.out.ok: No such file or directory cannot open ./regress/visudo/*.sh: No such file or directory visudo: 0/1 tests passed; 1/1 tests failed *** [check] Error code 180 (ignored) Script done on Tue Oct 2 10:16:29 2012 By the way, why not include the check target in the main Makefile of this port? Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 09:33:18 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D79011065689 for ; Tue, 2 Oct 2012 09:33:18 +0000 (UTC) (envelope-from matthew@freebsd.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 483078FC15 for ; Tue, 2 Oct 2012 09:33:18 +0000 (UTC) Received: from rufus.webfusion.com (mail.heartinternet.co.uk [79.170.40.31]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q929WvHD022808 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Tue, 2 Oct 2012 10:33:14 +0100 (BST) (envelope-from matthew@freebsd.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q929WvHD022808 Authentication-Results: smtp.infracaninophile.co.uk/q929WvHD022808; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host mail.heartinternet.co.uk [79.170.40.31] claimed to be rufus.webfusion.com Message-ID: <506AB4C8.6020208@freebsd.org> Date: Tue, 02 Oct 2012 10:32:56 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> In-Reply-To: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.6 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Subject: Re: removing non-existent ports from /var/db/pkg ? 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, 02 Oct 2012 09:33:19 -0000 On 02/10/2012 09:08, Anton Shterenlikht wrote: > I have on one system: > > # ls /var/db/pkg > apr-1.4.6.1.4.1_1 help2man-1.40.10 pkgconf-0.8.4 > auditfile help2man-1.40.11 pkgconf-0.8.5 > autoconf-2.69 help2man-1.40.12 pkgconf-0.8.6 > automake-1.12.2 libconfuse-2.7 pkgconf-0.8.7_2 > automake-1.12.3 libxml2-2.7.8_5 pkgconf-0.8.8 > automake-1.12.4 local.sqlite pkgconf-0.8.9 > ganglia-monitor-core-3.1.7_4 mpfr-3.1.1 python27-2.7.3_3 > gcc-4.7.2.20120721 neon29-0.29.6_4 rsync-3.0.9_2 > gcc-4.7.2.20120728 pcre-8.31_1 sqlite3-3.7.14 > gcc-4.7.2.20120804 pkg-1.0 subversion-1.7.5 > gcc-4.7.2.20120825 pkg-1.0.r4 subversion-1.7.6 > gcc-4.7.2.20120908 pkg-1.0.r4_1 sudo-1.8.5.p3 > gcc-4.7.3.20120929 pkg-1.0.r5_1 sudo-1.8.6.p3_1 > gmake-3.82_1 pkg-1.0.r6_1 > # pkg info -xo gcc-4.7 > gcc-4.7.3.20120929: lang/gcc47 > # > > I wonder why I have old versions of several ports, > which no longer exist, e.g. gcc47. > > I update with portmaster. > Does the normal update procedure > remove the old version entry > from /var/db/pkg if the update > has been successful? This is an unfortunate effect of using pkgng to handle packages and portmaster+patches to build them. The old pkg_tools were the owners of that whole /var/db/pkg/ sub-directory structure, and used to take care of deleting old entries once ports were updated or removed. portmaster stores some of its meta-data in those directories but it doesn't itself remove any that are out of date. pkg only uses the data in local.sqlite -- so there's nothing left willing to clean up the mess. This is something that should probably be added to the portmaster patch when used with pkgng. Cheers, Matthew From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 09:50:36 2012 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 D9C95106564A for ; Tue, 2 Oct 2012 09:50:36 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp2.insight.synacor.com [208.47.185.24]) by mx1.freebsd.org (Postfix) with ESMTP id 973FC8FC0A for ; Tue, 2 Oct 2012 09:50:35 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.1 cv=23jd6d0TMshKZg6MPjgxXM8Eanz+y4KLUxg3jSpzfIM= c=1 sm=0 a=My6P8YespNQA:10 a=jLN7EqiLvroA:10 a=6I5d2MoRAAAA:8 a=VfLn69hImZf7UHhvmjIA:9 a=AcdsImxJPJ9Yo6Ye3TGm+Q==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp01.insight.synacor.com header.from=mueller23@insightbb.com; sender-id=softfail Authentication-Results: smtp01.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Received-SPF: softfail (smtp01.insight.synacor.com: transitional domain insightbb.com does not designate 74.134.34.76 as permitted sender) Received: from [74.134.34.76] ([74.134.34.76:38732] helo=localhost) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.2.40 r(29895/29896)) with ESMTP id C0/A0-17648-AE8BA605; Tue, 02 Oct 2012 05:50:35 -0400 Date: Tue, 02 Oct 2012 05:50:34 -0400 Message-ID: From: "Thomas Mueller" To: freebsd-ports@freebsd.org In-Reply-To: <506AB464.2040800@ose.nl> Subject: Re: Problem upgrading misc/help2man: missing language files 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, 02 Oct 2012 09:50:37 -0000 from Bas Smeelen : > Below it looks like the creation of the backup package fails, which get's > deleted by default after the new port is installed. > I Just update ports on a CURRENT server with csup from cvsup4.nl.FreeBSD.org > and the help2man version is still 1.40.12 > I will go ahead and update from cvsup9.freebsd.org > . > . > . > No help2man-1.40.13 yet. > Maybe csup the portstree again and retry portmaster misc/help2man? > Did portmaster end with lines like > Upgrade of help2man-1.40.11 to help2man-1.40.12 > But then help2man-1.40.12 to help2man-1.40.13 instead of the above? > The it should be OK. No, I was trying to upgradr from 1.40.12 to 1.40.13 I used "portsnap fetch update", and I saw the new version 1.40.13 Perhaps I could use "portmaster -B misc/help2man" to prevent creating another backup. Maybe my installation of 1.40.12 was corrupted, or maybe it was a matter of not having NLS option for 1.40.12 This raises the question of how one rebuilds and reinstalls a corrupted port installation when backing up would not be desired. Tom From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 10:33:14 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F2E0106566B for ; Tue, 2 Oct 2012 10:33:14 +0000 (UTC) (envelope-from jamie@kode5.net) Received: from kontrol.kode5.net (kontrol.kode5.net [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id 8C9128FC14 for ; Tue, 2 Oct 2012 10:33:13 +0000 (UTC) Received: from kontrol.kode5.net (localhost [127.0.0.1]) by kontrol.kode5.net (8.14.5/8.14.5) with ESMTP id q92AXBUO082795 for ; Tue, 2 Oct 2012 11:33:11 +0100 (BST) (envelope-from jamie@kode5.net) Received: (from jamie@localhost) by kontrol.kode5.net (8.14.5/8.14.5/Submit) id q92AXBve082794 for freebsd-ports@freebsd.org; Tue, 2 Oct 2012 11:33:11 +0100 (BST) (envelope-from jamie@kode5.net) X-Authentication-Warning: kontrol.kode5.net: jamie set sender to jamie@kode5.net using -f Date: Tue, 2 Oct 2012 11:33:11 +0100 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20121002103310.GA3931@kontrol.kode5.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> <506AB4C8.6020208@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <506AB4C8.6020208@freebsd.org> x-operating-system: FreeBSD 9.1-PRERELEASE amd64 x-pgp-fingerprint: A4B9 E875 A18C 6E11 F46D B788 BEE6 1251 1D31 DC38 x-pgp-key: 1D31DC38 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at kontrol.kode5.net X-Virus-Status: Clean Subject: Re: removing non-existent ports from /var/db/pkg ? 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, 02 Oct 2012 10:33:14 -0000 [ Matthew Seaman wrote on Tue 2.Oct'12 at 10:32:56 +0100 ] > On 02/10/2012 09:08, Anton Shterenlikht wrote: > > I have on one system: > > > > # ls /var/db/pkg > > apr-1.4.6.1.4.1_1 help2man-1.40.10 pkgconf-0.8.4 > > auditfile help2man-1.40.11 pkgconf-0.8.5 > > autoconf-2.69 help2man-1.40.12 pkgconf-0.8.6 > > automake-1.12.2 libconfuse-2.7 pkgconf-0.8.7_2 > > automake-1.12.3 libxml2-2.7.8_5 pkgconf-0.8.8 > > automake-1.12.4 local.sqlite pkgconf-0.8.9 > > ganglia-monitor-core-3.1.7_4 mpfr-3.1.1 python27-2.7.3_3 > > gcc-4.7.2.20120721 neon29-0.29.6_4 rsync-3.0.9_2 > > gcc-4.7.2.20120728 pcre-8.31_1 sqlite3-3.7.14 > > gcc-4.7.2.20120804 pkg-1.0 subversion-1.7.5 > > gcc-4.7.2.20120825 pkg-1.0.r4 subversion-1.7.6 > > gcc-4.7.2.20120908 pkg-1.0.r4_1 sudo-1.8.5.p3 > > gcc-4.7.3.20120929 pkg-1.0.r5_1 sudo-1.8.6.p3_1 > > gmake-3.82_1 pkg-1.0.r6_1 > > # pkg info -xo gcc-4.7 > > gcc-4.7.3.20120929: lang/gcc47 > > # > > > > I wonder why I have old versions of several ports, > > which no longer exist, e.g. gcc47. > > > > I update with portmaster. > > Does the normal update procedure > > remove the old version entry > > from /var/db/pkg if the update > > has been successful? > > This is an unfortunate effect of using pkgng to handle packages and > portmaster+patches to build them. The old pkg_tools were the owners of > that whole /var/db/pkg/ sub-directory structure, and used to take care > of deleting old entries once ports were updated or removed. portmaster > stores some of its meta-data in those directories but it doesn't itself > remove any that are out of date. pkg only uses the data in local.sqlite > -- so there's nothing left willing to clean up the mess. > > This is something that should probably be added to the portmaster patch > when used with pkgng. Hi Matthew and Anton, so in the meantime what is the best way to clear this old stuff out? I do like to clear out code and files that are redundant, where possible. What would you suggest? Cheers, Jamie From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 11:13:10 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F502106564A for ; Tue, 2 Oct 2012 11:13:10 +0000 (UTC) (envelope-from matthew@freebsd.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 0100F8FC12 for ; Tue, 2 Oct 2012 11:13:09 +0000 (UTC) Received: from rufus.webfusion.com (mail.heartinternet.co.uk [79.170.40.31]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q92BD535024528 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Tue, 2 Oct 2012 12:13:06 +0100 (BST) (envelope-from matthew@freebsd.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q92BD535024528 Authentication-Results: smtp.infracaninophile.co.uk/q92BD535024528; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host mail.heartinternet.co.uk [79.170.40.31] claimed to be rufus.webfusion.com Message-ID: <506ACC41.5000100@freebsd.org> Date: Tue, 02 Oct 2012 12:13:05 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> <506AB4C8.6020208@freebsd.org> <20121002103310.GA3931@kontrol.kode5.net> In-Reply-To: <20121002103310.GA3931@kontrol.kode5.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.6 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Subject: Re: removing non-existent ports from /var/db/pkg ? 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, 02 Oct 2012 11:13:10 -0000 On 02/10/2012 11:33, Jamie Paul Griffin wrote: > Hi Matthew and Anton, so in the meantime what is the best way to > clear this old stuff out? I do like to clear out code and files that > are redundant, where possible. What would you suggest? At the moment, the only way to clear up is to manually remove the outdated subdirectories from /var/db/ports. You can work out what is out of date by comparing the list of sub-dirs to the list of installed ports obtained by pkg info -aq Should only take a few minutes to write a small script to do that. Be careful not to trash local.sqlite, repo.sqlite or auditfile -- in fact, anything in /var/db/pkg which is not a directory should be preserved. Note: even if you do delete subdirs that are actually still in use, this shouldn't be a huge disaster. The only data still in those directories will be portmaster's cache of distfile info (which it can cope without: it uses it to efficiently identify old distfiles that can themselves be tidied up) and flag files like +IGNOREME which you will want to regenerate before you next do a ports update. Cheers, Matthew From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 11:30:36 2012 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 68F0C1065670; Tue, 2 Oct 2012 11:30:36 +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 2474A8FC12; Tue, 2 Oct 2012 11:30:34 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TJ0gG-0004Nb-38; Tue, 02 Oct 2012 12:30:28 +0100 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.72) (envelope-from ) id 1TJ0gF-0002wd-ED; Tue, 02 Oct 2012 12:30:27 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q92BUQDn024599; Tue, 2 Oct 2012 12:30:26 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q92BUQv4024598; Tue, 2 Oct 2012 12:30:26 +0100 (BST) (envelope-from mexas) Date: Tue, 2 Oct 2012 12:30:26 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210021130.q92BUQv4024598@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, wxs@freebsd.org Cc: Subject: sudo-1.8.6.p3_1 is broken on ia64 -current. What svn revision do I need to get back to sudo-1.8.5.p3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 11:30:36 -0000 I updated from sudo-1.8.5.p3 to sudo-1.8.6.p3_1 on ia64 r235474. The new version segfaults all the time. I'm in a hurry to get a working sudo back, because it's required for the portscluster builds. Please advise what svn revision I need to go back to get to sudo-1.8.5p3. Thanks Anton From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 11:35:06 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9298106566B for ; Tue, 2 Oct 2012 11:35:06 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 0D4208FC18 for ; Tue, 2 Oct 2012 11:35:05 +0000 (UTC) Received: (qmail 21789 invoked by uid 89); 2 Oct 2012 11:34:57 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.190.102.230) by mail.grem.de with ESMTPA; 2 Oct 2012 11:34:57 -0000 Date: Tue, 2 Oct 2012 13:34:55 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121002133455.16dec762@bsd64.grem.de> In-Reply-To: <201210021130.q92BUQv4024598@mech-cluster241.men.bris.ac.uk> References: <201210021130.q92BUQv4024598@mech-cluster241.men.bris.ac.uk> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: mexas@bristol.ac.uk Subject: Re: sudo-1.8.6.p3_1 is broken on ia64 -current. What svn revision do I need to get back to sudo-1.8.5.p3 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, 02 Oct 2012 11:35:06 -0000 On Tue, 2 Oct 2012 12:30:26 +0100 (BST) Anton Shterenlikht wrote: > > I updated from sudo-1.8.5.p3 to sudo-1.8.6.p3_1 > on ia64 r235474. The new version segfaults all > the time. I'm in a hurry to get a working sudo > back, because it's required for the portscluster > builds. Please advise what svn revision I need > to go back to get to sudo-1.8.5p3. > > Thanks > > Anton > _______________________________________________ > 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" Rev 302692 See also http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/sudo/Makefile -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 11:38:53 2012 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 AB3511065670 for ; Tue, 2 Oct 2012 11:38:53 +0000 (UTC) (envelope-from jamie@kode5.net) Received: from kontrol.kode5.net (kontrol.kode5.net [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id 124868FC12 for ; Tue, 2 Oct 2012 11:38:52 +0000 (UTC) Received: from kontrol.kode5.net (localhost [127.0.0.1]) by kontrol.kode5.net (8.14.5/8.14.5) with ESMTP id q92BcoEg021436 for ; Tue, 2 Oct 2012 12:38:50 +0100 (BST) (envelope-from jamie@kode5.net) Received: (from jamie@localhost) by kontrol.kode5.net (8.14.5/8.14.5/Submit) id q92BconD021435 for freebsd-ports@freebsd.org; Tue, 2 Oct 2012 12:38:50 +0100 (BST) (envelope-from jamie@kode5.net) X-Authentication-Warning: kontrol.kode5.net: jamie set sender to jamie@kode5.net using -f Date: Tue, 2 Oct 2012 12:38:50 +0100 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20121002113850.GA82914@kontrol.kode5.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> <506AB4C8.6020208@freebsd.org> <20121002103310.GA3931@kontrol.kode5.net> <506ACC41.5000100@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <506ACC41.5000100@freebsd.org> x-operating-system: FreeBSD 9.1-PRERELEASE amd64 x-pgp-fingerprint: A4B9 E875 A18C 6E11 F46D B788 BEE6 1251 1D31 DC38 x-pgp-key: 1D31DC38 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at kontrol.kode5.net X-Virus-Status: Clean Subject: Re: removing non-existent ports from /var/db/pkg ? 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, 02 Oct 2012 11:38:53 -0000 [ Matthew Seaman wrote on Tue 2.Oct'12 at 12:13:05 +0100 ] > At the moment, the only way to clear up is to manually remove the > outdated subdirectories from /var/db/ports. You can work out what is > out of date by comparing the list of sub-dirs to the list of installed > ports obtained by > > pkg info -aq > > Should only take a few minutes to write a small script to do that. > > Be careful not to trash local.sqlite, repo.sqlite or auditfile -- in > fact, anything in /var/db/pkg which is not a directory should be preserved. > > Note: even if you do delete subdirs that are actually still in use, this > shouldn't be a huge disaster. The only data still in those directories > will be portmaster's cache of distfile info (which it can cope without: > it uses it to efficiently identify old distfiles that can themselves be > tidied up) and flag files like +IGNOREME which you will want to > regenerate before you next do a ports update. Ok, thanks for clarifying that for us. Very much appreciated. Best wishes, Jamie From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 14:10:28 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D775A106566C; Tue, 2 Oct 2012 14:10:28 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirj.bris.ac.uk (dirj.bris.ac.uk [137.222.10.78]) by mx1.freebsd.org (Postfix) with ESMTP id 935AB8FC12; Tue, 2 Oct 2012 14:10:27 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirj.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TJ3A1-00060y-NP; Tue, 02 Oct 2012 15:10:26 +0100 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.72) (envelope-from ) id 1TJ3A0-0007Mp-Po; Tue, 02 Oct 2012 15:09:21 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q92E9KVS024986; Tue, 2 Oct 2012 15:09:20 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q92E9KGs024985; Tue, 2 Oct 2012 15:09:20 +0100 (BST) (envelope-from mexas) Date: Tue, 2 Oct 2012 15:09:20 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210021409.q92E9KGs024985@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, mexas@bristol.ac.uk, wxs@freebsd.org Cc: Subject: Re: security/sudo *** [pre-install] Signal 11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 14:10:28 -0000 From mexas Tue Oct 2 10:21:10 2012 From mexas Mon Oct 1 10:51:13 2012 # make install FORCE_PKG_REGISTER=1 ===> Installing for sudo-1.8.6.p3_1 ===> Generating temporary packing list if test -d ./.hg && cd .; then if hg log --style=changelog -b default > ChangeL og.tmp; then mv -f ChangeLog.tmp ChangeLog; else rm -f ChangeLog.tmp; fi; f i for d in compat common plugins/sudoers src include doc; do (cd $d && exec make pre-install) && continue; exit $?; done Checking existing sudoers file for syntax errors. *** [pre-install] Signal 11 Note: this is on ia64 r235474. I deleted the existing /usr/local/etc/sudoers, and the update was then successful. [skip] > Segmentation fault (core dumped) cmp: EOF on regress/sudoers/test8.out sudoers/test8: FAIL 0a1,7 > Parse error in sudoers near line 8. > > > User_Alias UA1 = xy > User_Alias UA2 = xy > User_Alias UA3 = x"y > sudoers/test8 (toke): FAIL 0a1,7 > Parse error in sudoers near line 8. > > > User_Alias UA1 = xy > User_Alias UA2 = xy > User_Alias UA3 = x"y > sudoers: 0/16 tests passed; 16/16 tests failed I downgraded to 1.8.5p3. Now the segfaults have gone away, and sudo is generally usable, but all tests still fail: http://seis.bris.ac.uk/~mexas/sudo-185p3-check.log Anton From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 16:24:36 2012 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 22F2C1065670 for ; Tue, 2 Oct 2012 16:24:36 +0000 (UTC) (envelope-from prvs=61524dd80=pschmehl_lists@tx.rr.com) Received: from ip-001.utdallas.edu (ip-001.utdallas.edu [129.110.20.107]) by mx1.freebsd.org (Postfix) with ESMTP id D3D838FC0C for ; Tue, 2 Oct 2012 16:24:35 +0000 (UTC) X-Group: None X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqAPAE4Ua1CBbgogTmdsb2JhbABFg36qOZA6AQEjgyoCgQpZGogYl2WGUIoukGCOP4I+YAOIWKBB X-IronPort-AV: E=Sophos;i="4.80,524,1344229200"; d="scan'208";a="105225151" Received: from zxtm01.utdallas.edu (HELO [129.110.200.11]) ([129.110.10.32]) by ip-001.utdallas.edu with ESMTP/TLS/DHE-RSA-AES256-SHA; 02 Oct 2012 11:23:25 -0500 Date: Tue, 02 Oct 2012 11:23:23 -0500 From: Paul Schmehl To: FreeBSD Ports List Message-ID: <6DE237A2D4133FBAED25FC26@localhost> X-Mailer: Mulberry/4.1.0a1 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline; size=533 Subject: How to check out ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 16:24:36 -0000 Are we supposed to be using cvs or svn to check out ports now? If cvs, I'm getting prompted for a password which fails. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 16:34:50 2012 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 E9B83106564A for ; Tue, 2 Oct 2012 16:34:50 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (m209-73.dsl.rawbw.com [198.144.209.73]) by mx1.freebsd.org (Postfix) with ESMTP id BF2978FC14 for ; Tue, 2 Oct 2012 16:34:50 +0000 (UTC) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.5/8.14.5) with ESMTP id q92GYo00021509; Tue, 2 Oct 2012 09:34:50 -0700 (PDT) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.5/8.14.5/Submit) id q92GYohI021508; Tue, 2 Oct 2012 09:34:50 -0700 (PDT) (envelope-from david) Date: Tue, 2 Oct 2012 09:34:50 -0700 From: David Wolfskill To: Paul Schmehl Message-ID: <20121002163450.GR3939@albert.catwhisker.org> References: <6DE237A2D4133FBAED25FC26@localhost> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="eBTWNsZZiigckDWV" Content-Disposition: inline In-Reply-To: <6DE237A2D4133FBAED25FC26@localhost> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: FreeBSD Ports List Subject: Re: How to check out 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, 02 Oct 2012 16:34:51 -0000 --eBTWNsZZiigckDWV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 02, 2012 at 11:23:23AM -0500, Paul Schmehl wrote: > Are we supposed to be using cvs or svn to check out ports now? If cvs, I= 'm=20 > getting prompted for a password which fails. That depends on the nature of the repository you are using. What I do is maintain local private mirrors of the FreeBSD src, doc, and ports SVN repositories, and check out what I want to use via svn using those repositories. This does not require a password. It is unlikely that most folks will want (let alone need) to maintain such mirrors, but I find it easy and useful for what I do. Note that there has been an "end of the line" posted re: the current CVS exporter for ports: there is a date in the not-too-distant future when only SVN will be supported by the FreeBSD project (again, for ports). (The doc repo never had a CVS exporter after its conversion from CVS to SVN. AFAIK, there are no current plans to turn off the CVS exporter for the src repo -- but doc & src are off-topic for this list.) Peace, david --=20 David H. Wolfskill david@catwhisker.org Depriving a girl or boy of an opportunity for education is evil. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --eBTWNsZZiigckDWV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBrF6kACgkQmprOCmdXAD3hRgCgiTE7LU3HzJbLrzj6/H7e2wKH wO0An1yRmKmQQVr77kU+ATHAoximRhCX =eQc3 -----END PGP SIGNATURE----- --eBTWNsZZiigckDWV-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 16:50:30 2012 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 55BF5106566B for ; Tue, 2 Oct 2012 16:50:30 +0000 (UTC) (envelope-from stephen@missouri.edu) Received: from wilberforce.math.missouri.edu (wilberforce.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id 04FAD8FC15 for ; Tue, 2 Oct 2012 16:50:28 +0000 (UTC) Received: from [128.206.184.213] (wilberforce.math.missouri.edu [128.206.184.213]) by wilberforce.math.missouri.edu (8.14.5/8.14.5) with ESMTP id q92GfmwC031091 for ; Tue, 2 Oct 2012 11:41:49 -0500 (CDT) (envelope-from stephen@missouri.edu) Message-ID: <506B194C.2070202@missouri.edu> Date: Tue, 02 Oct 2012 11:41:48 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120929 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <6DE237A2D4133FBAED25FC26@localhost> In-Reply-To: <6DE237A2D4133FBAED25FC26@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: How to check out 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, 02 Oct 2012 16:50:30 -0000 On 10/02/12 11:23, Paul Schmehl wrote: > Are we supposed to be using cvs or svn to check out ports now? If cvs, > I'm getting prompted for a password which fails. > I think you are supposed to use *csup* or svn. But use svn - it is easy, and csup is going to be phased out very soon. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 17:25:14 2012 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 1406B106566C for ; Tue, 2 Oct 2012 17:25:14 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id D94578FC14 for ; Tue, 2 Oct 2012 17:25:12 +0000 (UTC) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.48]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id BB429A71C4B for ; Tue, 2 Oct 2012 13:00:53 -0400 (EDT) Received: (qmail 24852 invoked from network); 2 Oct 2012 17:00:53 -0000 Received: by simscan 1.4.0 ppid: 7365, pid: 9075, t: 0.1455s scanners: clamav: 0.88.2/m:52/d:10739 Received: from unknown (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 2 Oct 2012 17:00:53 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 4545033C24; Tue, 2 Oct 2012 13:00:52 -0400 (EDT) From: Lowell Gilbert To: Paul Schmehl References: <6DE237A2D4133FBAED25FC26@localhost> Date: Tue, 02 Oct 2012 13:00:52 -0400 In-Reply-To: <6DE237A2D4133FBAED25FC26@localhost> (Paul Schmehl's message of "Tue, 02 Oct 2012 11:23:23 -0500") Message-ID: <44626syfjv.fsf@be-well.ilk.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: FreeBSD Ports List Subject: Re: How to check out 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, 02 Oct 2012 17:25:14 -0000 Paul Schmehl writes: > Are we supposed to be using cvs or svn to check out ports now? If > cvs, I'm getting prompted for a password which fails. If you rarely need more than the latest version of the ports tree, then portsnap(8) is worth strong consideration. If you have an existing setup that's working (such as csup/cvsup/anonymous cvs), you can stick with that until the svn-to-cvs export stops. Otherwise, use svn. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 17:29:04 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09183106568F for ; Tue, 2 Oct 2012 17:29:04 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 5276C8FC08 for ; Tue, 2 Oct 2012 17:29:03 +0000 (UTC) Received: by wgi16 with SMTP id 16so1109881wgi.31 for ; Tue, 02 Oct 2012 10:29:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=sFn5l09W633i8NJGxDkC7GTVPRGhV7gq/cjEKsnDHBI=; b=q0dzntAnIz40u7z+zfsEgupeLqdilnBro/33r7poPMVF04QZj/dH5TEJOIPTqcRR5d 3bybd6gDGcoNzeDjWbBQBEIJWMQhrBPyTkwqlYeTqfXmD9Z8y7h8IE9JZqkYlMWnZKSM Iq/CTKQksQA0sbXGqxhuuil/6MJQRMSrCAtMZMQtSMGaCO+gkWMy6jAIX4pvUj57i9Si +BZtu6mmnwAIDqPkBpxa5qFabXCYdxhiyM8gHJRywcheq2K32eoNQnwdei1CxN8wuCt7 rf4qPLPytJ/tWG6VhVh1iFCmT8NqfvNpb7v7Y7QaZfOYOZu6dEYkEhNRrdJkqFCg6iRI PaiQ== MIME-Version: 1.0 Received: by 10.180.8.41 with SMTP id o9mr23401586wia.3.1349198942045; Tue, 02 Oct 2012 10:29:02 -0700 (PDT) Received: by 10.223.66.194 with HTTP; Tue, 2 Oct 2012 10:29:01 -0700 (PDT) In-Reply-To: <506B194C.2070202@missouri.edu> References: <6DE237A2D4133FBAED25FC26@localhost> <506B194C.2070202@missouri.edu> Date: Tue, 2 Oct 2012 10:29:01 -0700 Message-ID: From: Kevin Oberman To: Stephen Montgomery-Smith Content-Type: text/plain; charset=UTF-8 Cc: freebsd-ports@freebsd.org Subject: Re: How to check out 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, 02 Oct 2012 17:29:04 -0000 On Tue, Oct 2, 2012 at 9:41 AM, Stephen Montgomery-Smith wrote: > On 10/02/12 11:23, Paul Schmehl wrote: >> >> Are we supposed to be using cvs or svn to check out ports now? If cvs, >> I'm getting prompted for a password which fails. >> > > > I think you are supposed to use *csup* or svn. But use svn - it is easy, > and csup is going to be phased out very soon. I suggest that use of csup (or cvsup) is at least unofficially deprecated as the EOL for the capability to use it is just a few months away. I think the you are supposed to use svn or portsnap. -- R. Kevin Oberman, Network Engineer E-mail: kob6558@gmail.com From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 17:33:50 2012 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 0A041106566C for ; Tue, 2 Oct 2012 17:33:50 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id CA7908FC1E for ; Tue, 2 Oct 2012 17:33:49 +0000 (UTC) Received: by padbi1 with SMTP id bi1so6202954pad.13 for ; Tue, 02 Oct 2012 10:33:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=zd57bfBqTT7R1q2fRQfStqEy7EjmmXqQdB/2TE1Terc=; b=uTmaJCmKATltZjCu1UuJ40ffnwK+viGH3m9CzPvja89lqSH9LyEPhOJ8eEz4Seazt3 HJeYv7YbdJ2gAQn+oBVgFi6yj1KKJa+Xh2/JemkCX8sBOAXJXFMxWk6TFRbJ4g2D1SBz RcJSNKWA1cvEV0SPLlgN1cABYpDpf6JlTnA9U= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=zd57bfBqTT7R1q2fRQfStqEy7EjmmXqQdB/2TE1Terc=; b=mZ90dlcTMA/bsngZQzoQkLf7SO3Xf5SKlYJ0M4Rl6Hi4OhsymZlMu0mnmkJIWgw7ro Kx2pJ4mpM3VkXtjQcvxvJxfrtANjbmOn67bHZr/UiVEEu0To2K54e3p1OYcTFlWBVxNO r4JQlkQikdx2kcwu6YnVdcuvl7l7PwN3d/IvwY1cnxZDqQhk3zMCFEoQxRDM7CeIWM06 cWvYyLMuGYQ/s++SuH+c7HzZ7u3tPx7RHl7pFMRkZ4XSDoqc2Djp5O2vwlZI3tmcpiO5 V3w6Orrv0DEkwUBZyTEt2o4fowpIZtL8K4AGm6PdaPdZjKBpIeXpuI6V1+jf+yawctQz 31mw== Received: by 10.68.200.72 with SMTP id jq8mr6125783pbc.38.1349199229221; Tue, 02 Oct 2012 10:33:49 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.190.164 with HTTP; Tue, 2 Oct 2012 10:33:18 -0700 (PDT) In-Reply-To: <6DE237A2D4133FBAED25FC26@localhost> References: <6DE237A2D4133FBAED25FC26@localhost> From: Eitan Adler Date: Tue, 2 Oct 2012 13:33:18 -0400 Message-ID: To: Paul Schmehl Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQnMD8ONc84BM3e/kCA/kU2t712f92qtV+Q2iJJv6uUdtqZyhsym8Vj5Qy7IL+zI1OjFa736 Cc: Stephen Montgomery-Smith , dhw@freebsd.org, FreeBSD Ports List Subject: Re: How to check out 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, 02 Oct 2012 17:33:50 -0000 On 2 October 2012 12:23, Paul Schmehl wrote: > Are we supposed to be using cvs or svn to check out ports now? If cvs, I'm > getting prompted for a password which fails. There are a lot of answers to this question, and things are in the midst of changing. The as close to official answer as possible is: - use portsnap for most use cases - use svn directly if you need custom patches to the ports tree - use CTM if you prefer getting patches by email (this is a rarer use case) - I'm not certain about the status if ports-mtm/portshaker - but it should be using one of the first two methods. everything else: cvsup, csup, CVS is *going away* and is considered a *legacy* method. If you don't already use them, don't start. please keep in mind that this is all in flux at the moment and even the handbook may be *wrong.* The ports and documentation team are working hard to get this all sorted out, but it is a time of change. :) -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 17:48:03 2012 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 D6F92106566C for ; Tue, 2 Oct 2012 17:48:03 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 39C968FC0C for ; Tue, 2 Oct 2012 17:48:03 +0000 (UTC) Received: from seedling.local (host86-181-76-173.range86-181.btcentralplus.com [86.181.76.173]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q92HlwLe031143 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Tue, 2 Oct 2012 18:47:59 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q92HlwLe031143 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1349200079; bh=K2bYF5XPY8DPtvnDXBhWXo+bon1WbypjfO1j9UM6K3s=; h=Date:From:To:Subject:References:In-Reply-To; z=Date:=20Tue,=2002=20Oct=202012=2018:47:50=20+0100|From:=20Matthew =20Seaman=20|To:=20freebsd-ports@ freebsd.org|Subject:=20Re:=20removing=20non-existent=20ports=20fro m=20/var/db/pkg=20?|References:=20<201210020808.q9288Y2J023975@mec h-cluster241.men.bris.ac.uk>=20<506AB4C8.6020208@freebsd.org>=20<2 0121002103310.GA3931@kontrol.kode5.net>=20<506ACC41.5000100@freebs d.org>=20<20121002113850.GA82914@kontrol.kode5.net>|In-Reply-To:=2 0<20121002113850.GA82914@kontrol.kode5.net>; b=xOMY9WZYy5P5D8wctLYUtSm3ob6FgSqHBslIywue54bYxgzNoMMd9vNTNTH/x5AfD QTTf25UVQGKMZPrvlbHm/oiAh9kfaPnVQmodCszQN9UwHR38Ofgd7hueiehImilm1u B8OEh5178mp0AJEE9en/1aE6aI3rLCL2lpNFQxSw= X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host host86-181-76-173.range86-181.btcentralplus.com [86.181.76.173] claimed to be seedling.local Message-ID: <506B28C6.5060602@infracaninophile.co.uk> Date: Tue, 02 Oct 2012 18:47:50 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <201210020808.q9288Y2J023975@mech-cluster241.men.bris.ac.uk> <506AB4C8.6020208@freebsd.org> <20121002103310.GA3931@kontrol.kode5.net> <506ACC41.5000100@freebsd.org> <20121002113850.GA82914@kontrol.kode5.net> In-Reply-To: <20121002113850.GA82914@kontrol.kode5.net> X-Enigmail-Version: 1.4.4 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig38E274C04BE819BD46410EF5" X-Virus-Scanned: clamav-milter 0.97.6 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=0.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, RCVD_IN_PBL, RCVD_IN_RP_RNBL, RCVD_IN_SORBS_DUL, RDNS_DYNAMIC,SPF_FAIL autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Subject: Re: removing non-existent ports from /var/db/pkg ? 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, 02 Oct 2012 17:48:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig38E274C04BE819BD46410EF5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 02/10/2012 12:38, Jamie Paul Griffin wrote: > [ Matthew Seaman wrote on Tue 2.Oct'12 at 12:13:05 +0100 ] >=20 > =20 >> At the moment, the only way to clear up is to manually remove the >> outdated subdirectories from /var/db/ports. You can work out what is >> out of date by comparing the list of sub-dirs to the list of installed= >> ports obtained by >> >> pkg info -aq >> >> Should only take a few minutes to write a small script to do that. >> >> Be careful not to trash local.sqlite, repo.sqlite or auditfile -- in >> fact, anything in /var/db/pkg which is not a directory should be prese= rved. >> >> Note: even if you do delete subdirs that are actually still in use, th= is >> shouldn't be a huge disaster. The only data still in those directorie= s >> will be portmaster's cache of distfile info (which it can cope without= : >> it uses it to efficiently identify old distfiles that can themselves b= e >> tidied up) and flag files like +IGNOREME which you will want to >> regenerate before you next do a ports update. >=20 > Ok, thanks for clarifying that for us. Very much appreciated.=20 I just committed this: http://git.io/G2qIIg Which makes the patch compatible with portmaster-3.14 and also now makes portmaster remove superfluous subdirectories of $PKG_DBDIR when removing any packages. This should keep $PKG_DBDIR reasonably tidy going forwards, but it won't clean up all of the existing problem subdirs. For that you'll need a one-off job to clean up as described above. 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 --------------enig38E274C04BE819BD46410EF5 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://www.enigmail.net/ iEYEARECAAYFAlBrKM4ACgkQ8Mjk52CukIyN6gCeMdsn3f+xCrOSe1X/DkVFyvmx Yn0AoIlWhAmxPDzityJx/EEgGzpNgNBC =q2Ok -----END PGP SIGNATURE----- --------------enig38E274C04BE819BD46410EF5-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 18:37:35 2012 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 3037C1065672 for ; Tue, 2 Oct 2012 18:37:35 +0000 (UTC) (envelope-from prvs=61524dd80=pschmehl_lists@tx.rr.com) Received: from ip-001.utdallas.edu (ip-001.utdallas.edu [129.110.20.107]) by mx1.freebsd.org (Postfix) with ESMTP id F25928FC0C for ; Tue, 2 Oct 2012 18:37:30 +0000 (UTC) X-Group: None X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AisFAHIza1CBbgogTmdsb2JhbABFrj2QOgEBI4JrAQEEATgCPwULCw4iFkMUBhOHfwaoSJBbiyODHII+YAOIWKBB X-IronPort-AV: E=Sophos;i="4.80,524,1344229200"; d="scan'208";a="105233944" Received: from zxtm01.utdallas.edu (HELO [129.110.200.11]) ([129.110.10.32]) by ip-001.utdallas.edu with ESMTP/TLS/DHE-RSA-AES256-SHA; 02 Oct 2012 13:37:28 -0500 Date: Tue, 02 Oct 2012 13:37:26 -0500 From: Paul Schmehl To: Lowell Gilbert Message-ID: <17F1F6096650E45134B198CD@localhost> In-Reply-To: <44626syfjv.fsf@be-well.ilk.org> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> X-Mailer: Mulberry/4.1.0a1 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline; size=1381 Cc: FreeBSD Ports List Subject: Re: How to check out ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 18:37:35 -0000 --On October 2, 2012 1:00:52 PM -0400 Lowell Gilbert wrote: > Paul Schmehl writes: > >> Are we supposed to be using cvs or svn to check out ports now? If >> cvs, I'm getting prompted for a password which fails. > > If you rarely need more than the latest version of the ports tree, then > portsnap(8) is worth strong consideration. If you have an existing setup > that's working (such as csup/cvsup/anonymous cvs), you can stick with > that until the svn-to-cvs export stops. Otherwise, use svn. > I obviously wasn't very clear. I'm a port maintainer. I need to update one of my ports. I used to do this by checking out the port into a purpose-created directory in which I would use cvs to make changes and test. After everything checked out, I would submit the diff. Now cvs isn't working, so how, as a port maintainer, do I check out a single port so I can update it and submit it in a PR? -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 18:45:22 2012 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 D0272106564A for ; Tue, 2 Oct 2012 18:45:22 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-da0-f54.google.com (mail-da0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9BA1E8FC14 for ; Tue, 2 Oct 2012 18:45:22 +0000 (UTC) Received: by dadz9 with SMTP id z9so2292685dad.13 for ; Tue, 02 Oct 2012 11:45:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=iwpec2atmC7/9QORAoci8hSivIZRJOeAydMbt1Z0IQE=; b=icOyHsPRVHbmmPgx5mMDt7/x8Jzy8FxO50Q5pkhkSI0vq+YZlGGhFC43Ao5T6zGkWF nXKQNTjdVyjQNSC28aZO2bLnSZQd6aC9OuxFwZrbAyAvcLjQh0Gclc9+yzpGFJDA4y15 juqUJd+peA9pO6c2KGBM/8KEmqcOUVtReFKcI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=iwpec2atmC7/9QORAoci8hSivIZRJOeAydMbt1Z0IQE=; b=lx4M9iKX2Yt5WCgplWf/VcOlzDCeeUl9/QliYgvJMAe+LqWv72uwDWCHy7jdnFVNh4 4sjF7fn1s6U2nkAx0JkdLEe1tTFWXQ+IUBBnv1GChf9KP8CGTm9pM9mcW6L3e8sE3ppO Dzcqq60y3TFGngWTD59iEWJiyIFgEaMw0dw2fdOonZCcVTin/3fKfZhn19PFy37AEJ4A GodGId43hdFIxunpnUbncjQVUvkLYJiamLtVDdiASU/Mn4v0RdMu6GetKH8PX7DibkfD Ub5bKyxRGPNbEtjdqsrI9r12qbKZAu+rMVA9pD0ulb4db85+DRSLOHY1Ege45RSTJchS humg== Received: by 10.68.200.72 with SMTP id jq8mr6615827pbc.38.1349203516633; Tue, 02 Oct 2012 11:45:16 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.190.164 with HTTP; Tue, 2 Oct 2012 11:44:46 -0700 (PDT) In-Reply-To: <17F1F6096650E45134B198CD@localhost> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> From: Eitan Adler Date: Tue, 2 Oct 2012 14:44:46 -0400 Message-ID: To: Paul Schmehl Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQkAJY9wjxgGsG+NwaA6D3cM0Oy5VBVzOv91lx8hBqihzqz+u9ZwkdZ0Q9G7VRSy2XBTAUO5 Cc: Lowell Gilbert , FreeBSD Ports List Subject: Re: How to check out 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, 02 Oct 2012 18:45:22 -0000 On 2 October 2012 14:37, Paul Schmehl wrote: > I obviously wasn't very clear. I'm a port maintainer. I need to update one > of my ports. I used to do this by checking out the port into a > purpose-created directory in which I would use cvs to make changes and test. > After everything checked out, I would submit the diff. We need to be better about announcing these changes as not to frustrate maintainers. :) > Now cvs isn't working, so how, as a port maintainer, do I check out a single > port so I can update it and submit it in a PR? You should do things the same way you did before, but instead you should use svn to checkout out your port. Note that 'module names' no longer work so you must use the full name: e..g., svn checkout svn://svn.freebsd.org/ports/head/editors/nano It may help to keep a folder of "ports-I-maintain" with the ports you maintain checked out. Before you update them do "svn update *" and to generate a diff do "svn diff foldername" -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 19:14:30 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2378F1065670 for ; Tue, 2 Oct 2012 19:14:30 +0000 (UTC) (envelope-from prvs=61524dd80=pschmehl_lists@tx.rr.com) Received: from ip-001.utdallas.edu (ip-001.utdallas.edu [129.110.20.107]) by mx1.freebsd.org (Postfix) with ESMTP id E196B8FC16 for ; Tue, 2 Oct 2012 19:14:29 +0000 (UTC) X-Group: None X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AiwFACc8a1CBbgogTmdsb2JhbAA0Ea49kDoBASOCawEBAQMBAQI1Aj8FCwsOChkBARMoGxQGE4d/BguoHYFMAoZOiD2GB4UcgycEgi9gA4hYimSVXQ X-IronPort-AV: E=Sophos;i="4.80,524,1344229200"; d="scan'208";a="105235804" Received: from zxtm01.utdallas.edu (HELO [129.110.200.11]) ([129.110.10.32]) by ip-001.utdallas.edu with ESMTP/TLS/DHE-RSA-AES256-SHA; 02 Oct 2012 14:14:27 -0500 Date: Tue, 02 Oct 2012 14:14:26 -0500 From: Paul Schmehl To: Eitan Adler Message-ID: <85CE784EEB463CD1C26E6C06@localhost> In-Reply-To: References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> X-Mailer: Mulberry/4.1.0a1 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline; size=1995 Cc: Lowell Gilbert , FreeBSD Ports List Subject: Re: How to check out ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 19:14:30 -0000 --On October 2, 2012 2:44:46 PM -0400 Eitan Adler wrote: > On 2 October 2012 14:37, Paul Schmehl wrote: >> I obviously wasn't very clear. I'm a port maintainer. I need to update >> one of my ports. I used to do this by checking out the port into a >> purpose-created directory in which I would use cvs to make changes and >> test. After everything checked out, I would submit the diff. > > We need to be better about announcing these changes as not to > frustrate maintainers. :) > >> Now cvs isn't working, so how, as a port maintainer, do I check out a >> single port so I can update it and submit it in a PR? > > You should do things the same way you did before, but instead you > should use svn to checkout out your port. Note that 'module names' no > longer work so you must use the full name: > e..g., svn checkout svn://svn.freebsd.org/ports/head/editors/nano > > It may help to keep a folder of "ports-I-maintain" with the ports you > maintain checked out. Before you update them do "svn update *" and to > generate a diff do "svn diff foldername" I got on the wiki and figured out how to check ou the port using svn, but now I'm stuck again. This port has moved to github, and I don't have a clue how to download it in the Makefile. There's no mention of github in /usr/ports/Mk, so I assume the method hasn't even been written yet. The source is here: , but I don't see a tarball, and I don't know enough about ports to know if it's even possible to fetch it from github. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 19:27:57 2012 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 9415D106566B; Tue, 2 Oct 2012 19:27:57 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail06.adl6.internode.on.net (ipmail06.adl6.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:6:6]) by mx1.freebsd.org (Postfix) with ESMTP id CBC208FC17; Tue, 2 Oct 2012 19:27:56 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ak4JAGg/a1DLevdH/2dsb2JhbABFvU0DgheCThFBPBMBAhgDAgECAUsNAQcBAYgAuHiLf4VeA4hWnT6Cdw Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail06.adl6.internode.on.net with ESMTP; 03 Oct 2012 04:57:55 +0930 Message-ID: <506B3E9A.1000905@ShaneWare.Biz> Date: Wed, 03 Oct 2012 04:50:58 +0930 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120918 Thunderbird/15.0.1 MIME-Version: 1.0 To: FreeBSD-ports Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: gerald@freebsd.org Subject: Possible regression in i386 build with gcc 4.6 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, 02 Oct 2012 19:27:57 -0000 I found a situation where gcc v4.2 compiles a i386 working binary and v4.6 doesn't. (Currently 4.7 and 4.8 fail to build this code) I have verified that this happens with 8.2/8.3/9.0 i386 systems. x86_64 versions build without issue as does clang i386/x86_64. It appears that the x86_64 target of gcc offers gcc atomics while the i386 target doesn't - and this appears to be a freebsd specific setup, the i386 targets then fall back to using tbb atomics. Is this some subtle bug I'm missing? can it be alleviated with compiler flags/more universal code? I have tried to cut this down to just the call that triggers a segmentation fault but the one call itself isn't enough. The issue can be found in graphics/openimageio. The easiest way I know to cause the segmentation fault is with the image viewer that is part of the port (it is a Qt app) it seg faults during startup. There is no need to open any images just starting iv with an empty window is fine. The makefile is setup to USE_GCC=4.6+ for i386/8.2 - this is a leftover from earlier versions that will be removed next update. cd /usr/ports/graphics/openimageio make ./work/.build/iv/iv The error appears to stem from line 193 of src/libutil/ustring.cpp atomic_exchange_and_add (&ustring_stats_constructed, 1); Commenting this line prevents the crash but isn't a valid fix. the relevant function it calls is -- src/include/thread.h:283 which uses the atomic class template from tbb for the i386 build. inline long long atomic_exchange_and_add (volatile long long *at, long long x) { #ifdef USE_GCC_ATOMICS return __sync_fetch_and_add (at, x); #elif USE_TBB atomic *a = (atomic *)at; return a->fetch_and_add (x); #elif defined(__APPLE__) #endif } From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 21:28:18 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37B811065688 for ; Tue, 2 Oct 2012 21:28:18 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 8B5E08FC18 for ; Tue, 2 Oct 2012 21:28:15 +0000 (UTC) Received: (qmail 29198 invoked by uid 89); 2 Oct 2012 21:28:14 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.137.85.137) by mail.grem.de with ESMTPA; 2 Oct 2012 21:28:14 -0000 Date: Tue, 2 Oct 2012 23:28:12 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121002232812.442d2c20@bsd64.grem.de> In-Reply-To: <85CE784EEB463CD1C26E6C06@localhost> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Paul Schmehl Subject: Re: How to check out 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, 02 Oct 2012 21:28:18 -0000 On Tue, 02 Oct 2012 14:14:26 -0500 Paul Schmehl wrote: > --On October 2, 2012 2:44:46 PM -0400 Eitan Adler > wrote: > > On 2 October 2012 14:37, Paul Schmehl > > wrote: > >> I obviously wasn't very clear. I'm a port maintainer. I need to > >> update one of my ports. I used to do this by checking out the > >> port into a purpose-created directory in which I would use cvs to > >> make changes and test. After everything checked out, I would > >> submit the diff. > > > > We need to be better about announcing these changes as not to > > frustrate maintainers. :) > > > >> Now cvs isn't working, so how, as a port maintainer, do I check > >> out a single port so I can update it and submit it in a PR? > > > > You should do things the same way you did before, but instead you > > should use svn to checkout out your port. Note that 'module names' > > no longer work so you must use the full name: > > e..g., svn checkout svn://svn.freebsd.org/ports/head/editors/nano > > > > It may help to keep a folder of "ports-I-maintain" with the ports > > you maintain checked out. Before you update them do "svn update *" > > and to generate a diff do "svn diff foldername" > I got on the wiki and figured out how to check ou the port using svn, > but now I'm stuck again. This port has moved to github, and I don't > have a clue how to download it in the Makefile. There's no mention > of github in /usr/ports/Mk, so I assume the method hasn't even been > written yet. The source is here: > , but I don't see a tarball, > and I don't know enough about ports to know if it's even possible to > fetch it from github. Hi Paul, What about using the ZIP https://github.com/firnsy/barnyard2/zipball/master (this will give you the current master branch in a ZIP file) or a tarball https://github.com/firnsy/barnyard2/tarball/master If you want to keep things more stable (since the master branch might change frequently and break your build), limit yourself to a specific version. Fortunately this software is using tags for versioning, so it's easy to get zips from github, e.g.: https://github.com/firnsy/barnyard2/zipball/v2-1.10 or if you prefer a tarball (which is usually nicer to have) https://github.com/firnsy/barnyard2/tarball/v2-1.10 Github provides tarballs (and zipballs) for all branches and tags. See also: https://github.com/blog/12-tarball-downloads Hope that helps -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Tue Oct 2 21:28:26 2012 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 7F8151065724 for ; Tue, 2 Oct 2012 21:28:26 +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 3C3EE8FC14 for ; Tue, 2 Oct 2012 21:28:26 +0000 (UTC) Received: from irix.bris.ac.uk ([137.222.10.39] helo=ncs.bris.ac.uk) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TJA0s-0005fc-2F; Tue, 02 Oct 2012 22:28:25 +0100 Received: from mech-cluster241.men.bris.ac.uk ([137.222.187.241]) by ncs.bris.ac.uk with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.72) (envelope-from ) id 1TJA0r-0007bo-S1; Tue, 02 Oct 2012 22:28:21 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q92LSLEY086276; Tue, 2 Oct 2012 22:28:21 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q92LSLkj086275; Tue, 2 Oct 2012 22:28:21 +0100 (BST) (envelope-from mexas) Date: Tue, 2 Oct 2012 22:28:21 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210022128.q92LSLkj086275@mech-cluster241.men.bris.ac.uk> To: freebsd-ports@freebsd.org, m.seaman@infracaninophile.co.uk In-Reply-To: <506B28C6.5060602@infracaninophile.co.uk> X-Spam-Score: -4.6 X-Spam-Level: ---- Cc: Subject: Re: removing non-existent ports from /var/db/pkg ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 21:28:26 -0000 From: Matthew Seaman On 02/10/2012 12:38, Jamie Paul Griffin wrote: > [ Matthew Seaman wrote on Tue 2.Oct'12 at 12:13:05 +0100 ] >=20 > =20 >> At the moment, the only way to clear up is to manually remove the >> outdated subdirectories from /var/db/ports. You can work out what is >> out of date by comparing the list of sub-dirs to the list of installed= >> ports obtained by >> >> pkg info -aq >> >> Should only take a few minutes to write a small script to do that. >> >> Be careful not to trash local.sqlite, repo.sqlite or auditfile -- in >> fact, anything in /var/db/pkg which is not a directory should be prese= rved. >> >> Note: even if you do delete subdirs that are actually still in use, th= is >> shouldn't be a huge disaster. The only data still in those directorie= s >> will be portmaster's cache of distfile info (which it can cope without= : >> it uses it to efficiently identify old distfiles that can themselves b= e >> tidied up) and flag files like +IGNOREME which you will want to >> regenerate before you next do a ports update. >=20 > Ok, thanks for clarifying that for us. Very much appreciated.=20 I just committed this: http://git.io/G2qIIg Which makes the patch compatible with portmaster-3.14 and also now makes portmaster remove superfluous subdirectories of $PKG_DBDIR when removing any packages. This should keep $PKG_DBDIR reasonably tidy going forwards, but it won't clean up all of the existing problem subdirs. For that you'll need a one-off job to clean up as described above. Thanks, the patch applied fine. Will see what happens with $PKG_DBDIR next time I update something. Anton From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 02:55:34 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5EE31065670 for ; Wed, 3 Oct 2012 02:55:34 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.120]) by mx1.freebsd.org (Postfix) with ESMTP id 951108FC0C for ; Wed, 3 Oct 2012 02:55:34 +0000 (UTC) X-Authority-Analysis: v=2.0 cv=IuCcgcDg c=1 sm=0 a=+L5dYfeubEW4PLvjDgtIXQ==:17 a=WAZfUmVf-EkA:10 a=05ChyHeVI94A:10 a=kj9zAlcOel0A:10 a=ayC55rCoAAAA:8 a=C1tAZTZuCUMA:10 a=uyavkMrdAAAA:8 a=6I5d2MoRAAAA:8 a=NEAV23lmAAAA:8 a=94AN9kpc0Yiv96URgXcA:9 a=CjuIK1q_8ugA:10 a=bPFmGhFUX2MA:10 a=JGX6LFFZUg8A:10 a=+L5dYfeubEW4PLvjDgtIXQ==:117 X-Cloudmark-Score: 0 X-Originating-IP: 76.184.157.127 Received: from [76.184.157.127] ([76.184.157.127:55632] helo=[10.0.0.7]) by cdptpa-oedge03.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTP id 16/F1-17657-8E8AB605; Wed, 03 Oct 2012 02:54:33 +0000 Date: Tue, 02 Oct 2012 21:54:31 -0500 From: Paul Schmehl To: Michael Gmelin , freebsd-ports@freebsd.org Message-ID: <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> In-Reply-To: <20121002232812.442d2c20@bsd64.grem.de> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> <20121002232812.442d2c20@bsd64.grem.de> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: How to check out ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Oct 2012 02:55:34 -0000 --On October 2, 2012 11:28:12 PM +0200 Michael Gmelin wrote: > > > On Tue, 02 Oct 2012 14:14:26 -0500 > Paul Schmehl wrote: > >> --On October 2, 2012 2:44:46 PM -0400 Eitan Adler >> wrote: >> > On 2 October 2012 14:37, Paul Schmehl >> > wrote: >> >> I obviously wasn't very clear. I'm a port maintainer. I need to >> >> update one of my ports. I used to do this by checking out the >> >> port into a purpose-created directory in which I would use cvs to >> >> make changes and test. After everything checked out, I would >> >> submit the diff. >> > >> > We need to be better about announcing these changes as not to >> > frustrate maintainers. :) >> > >> >> Now cvs isn't working, so how, as a port maintainer, do I check >> >> out a single port so I can update it and submit it in a PR? >> > >> > You should do things the same way you did before, but instead you >> > should use svn to checkout out your port. Note that 'module names' >> > no longer work so you must use the full name: >> > e..g., svn checkout svn://svn.freebsd.org/ports/head/editors/nano >> > >> > It may help to keep a folder of "ports-I-maintain" with the ports >> > you maintain checked out. Before you update them do "svn update *" >> > and to generate a diff do "svn diff foldername" >> I got on the wiki and figured out how to check ou the port using svn, >> but now I'm stuck again. This port has moved to github, and I don't >> have a clue how to download it in the Makefile. There's no mention >> of github in /usr/ports/Mk, so I assume the method hasn't even been >> written yet. The source is here: >> , but I don't see a tarball, >> and I don't know enough about ports to know if it's even possible to >> fetch it from github. > > Hi Paul, > > What about using the ZIP > > https://github.com/firnsy/barnyard2/zipball/master > > (this will give you the current master branch in a ZIP file) > > or a tarball > > https://github.com/firnsy/barnyard2/tarball/master > > If you want to keep things more stable (since the master branch might > change frequently and break your build), limit yourself to a specific > version. Fortunately this software is using tags for versioning, so > it's easy to get zips from github, e.g.: > > https://github.com/firnsy/barnyard2/zipball/v2-1.10 > > or if you prefer a tarball (which is usually nicer to have) > > https://github.com/firnsy/barnyard2/tarball/v2-1.10 > > Github provides tarballs (and zipballs) for all branches and tags. > > See also: > > https://github.com/blog/12-tarball-downloads > > Hope that helps How do I handle this? firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz Is the string at the end (g2f5d496) auto-generated? If so, that's another problem. I guess something like this? Sheesh. What a PITA. PORTNAME= barnyard2-v2 PORTVERSION= 1.10 PKGNAMEPREFIX= firnsy- PKGNAMESUFFIX= -0-g2f5d496 Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 03:31:20 2012 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 7926B106566C for ; Wed, 3 Oct 2012 03:31:20 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3CE628FC0A for ; Wed, 3 Oct 2012 03:31:20 +0000 (UTC) Received: by pbbrp8 with SMTP id rp8so10876045pbb.13 for ; Tue, 02 Oct 2012 20:31:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=TnKtZtTtXM8MYWL2vS3FU74xuiWNKlSEsjmdJ1AAl9Y=; b=TlcTVt400fomZugDqoQJmRu7KHdHs7zSLglu32r663ugSkE+9IWFCaSM7a70AbD1PR Wl+bPksd6hi4N+DtALFFaoJvDGf6COveedk1fvTdDMjZOej5QAC3byK9nqfs36LSE2lk 2X2s3x4gF18ecCj+yXDBRqQvJAt4fPq4f0W2I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=TnKtZtTtXM8MYWL2vS3FU74xuiWNKlSEsjmdJ1AAl9Y=; b=MkbpXiv7gCPG7vYyOl/RLA749cOc11IRzqhHGD3Eq7Ml3GfVOj8TLz/nqZTWnnro3z rAp/qN/tkSyDoTTlTP3iKY/tdGUVGW95XL65UO5mbyiFxxturV4xILDECA6oijJVL+Eu ke/ZUyDyLSqPzzPJTfo4jSYh9SEbjZcloXtOYEBeNw7MZgIUcZXiViyjAO71omiV/nxU Ne7GY5CVououiuTUb/E6mk8Vuh/otJaFr4YO2BRCRxtY6a18HRmW1tuC5ognuldxc1U1 x/k5Sgm0f/qiZZZxW31WAsibkX1st08t1ETLb3a4Ux6oDesg9Qh9Ct5SUY6CiyZ8imT5 UISA== Received: by 10.68.200.231 with SMTP id jv7mr9316004pbc.140.1349235079681; Tue, 02 Oct 2012 20:31:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.190.164 with HTTP; Tue, 2 Oct 2012 20:30:49 -0700 (PDT) In-Reply-To: <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> <20121002232812.442d2c20@bsd64.grem.de> <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> From: Eitan Adler Date: Tue, 2 Oct 2012 23:30:49 -0400 Message-ID: To: Paul Schmehl Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQk9Uh/ruL6XetDDtRI7bGvOLnebMdLrbp8gm6tE6FK/D21+8lvcGjLi9VJLwlY6RBI4iEZX Cc: freebsd-ports@freebsd.org, Michael Gmelin Subject: Re: How to check out 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, 03 Oct 2012 03:31:20 -0000 On 2 October 2012 22:54, Paul Schmehl wrote: > --On October 2, 2012 11:28:12 PM +0200 Michael Gmelin > wrote: > >> >> >> On Tue, 02 Oct 2012 14:14:26 -0500 >> Paul Schmehl wrote: >> >>> --On October 2, 2012 2:44:46 PM -0400 Eitan Adler >>> wrote: >>> > On 2 October 2012 14:37, Paul Schmehl >>> > wrote: >>> >> I obviously wasn't very clear. I'm a port maintainer. I need to >>> >> update one of my ports. I used to do this by checking out the >>> >> port into a purpose-created directory in which I would use cvs to >>> >> make changes and test. After everything checked out, I would >>> >> submit the diff. >>> > >>> > We need to be better about announcing these changes as not to >>> > frustrate maintainers. :) >>> > >>> >> Now cvs isn't working, so how, as a port maintainer, do I check >>> >> out a single port so I can update it and submit it in a PR? >>> > >>> > You should do things the same way you did before, but instead you >>> > should use svn to checkout out your port. Note that 'module names' >>> > no longer work so you must use the full name: >>> > e..g., svn checkout svn://svn.freebsd.org/ports/head/editors/nano >>> > >>> > It may help to keep a folder of "ports-I-maintain" with the ports >>> > you maintain checked out. Before you update them do "svn update *" >>> > and to generate a diff do "svn diff foldername" >>> I got on the wiki and figured out how to check ou the port using svn, >>> but now I'm stuck again. This port has moved to github, and I don't >>> have a clue how to download it in the Makefile. There's no mention >>> of github in /usr/ports/Mk, so I assume the method hasn't even been >>> written yet. The source is here: >>> , but I don't see a tarball, >>> and I don't know enough about ports to know if it's even possible to >>> fetch it from github. >> >> >> Hi Paul, >> >> What about using the ZIP >> >> https://github.com/firnsy/barnyard2/zipball/master >> >> (this will give you the current master branch in a ZIP file) >> >> or a tarball >> >> https://github.com/firnsy/barnyard2/tarball/master >> >> If you want to keep things more stable (since the master branch might >> change frequently and break your build), limit yourself to a specific >> version. Fortunately this software is using tags for versioning, so >> it's easy to get zips from github, e.g.: >> >> https://github.com/firnsy/barnyard2/zipball/v2-1.10 >> >> or if you prefer a tarball (which is usually nicer to have) >> >> https://github.com/firnsy/barnyard2/tarball/v2-1.10 >> >> Github provides tarballs (and zipballs) for all branches and tags. >> >> See also: >> >> https://github.com/blog/12-tarball-downloads >> >> Hope that helps > > > How do I handle this? > > firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz > > Is the string at the end (g2f5d496) auto-generated? If so, that's another > problem. Looks like the git hash: use GH_ACCOUNT GH_PROJECT and GH_COMMIT (see bsd.sites.mk for details) -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 03:35:52 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBE07106564A for ; Wed, 3 Oct 2012 03:35:52 +0000 (UTC) (envelope-from mcdouga9@egr.msu.edu) Received: from mail.egr.msu.edu (boomhauer.egr.msu.edu [35.9.37.167]) by mx1.freebsd.org (Postfix) with ESMTP id 8CEC88FC08 for ; Wed, 3 Oct 2012 03:35:51 +0000 (UTC) Received: from boomhauer (localhost [127.0.0.1]) by mail.egr.msu.edu (Postfix) with ESMTP id D69858505B; Tue, 2 Oct 2012 23:27:35 -0400 (EDT) X-Virus-Scanned: amavisd-new at egr.msu.edu Received: from mail.egr.msu.edu ([127.0.0.1]) by boomhauer (boomhauer.egr.msu.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RYFz49vxQInz; Tue, 2 Oct 2012 23:27:35 -0400 (EDT) Received: from EGR authenticated sender Message-ID: <506BB0A8.3090202@egr.msu.edu> Date: Tue, 02 Oct 2012 23:27:36 -0400 From: Adam McDougall User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org, pschmehl_lists@tx.rr.com References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> <20121002232812.442d2c20@bsd64.grem.de> <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> In-Reply-To: <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: How to check out 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, 03 Oct 2012 03:35:52 -0000 On 10/2/2012 10:54 PM, Paul Schmehl wrote: > > How do I handle this? > > firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz > > Is the string at the end (g2f5d496) auto-generated? If so, that's > another problem. > > I guess something like this? Sheesh. What a PITA. > > PORTNAME= barnyard2-v2 > PORTVERSION= 1.10 > PKGNAMEPREFIX= firnsy- > PKGNAMESUFFIX= -0-g2f5d496 > > > Paul Schmehl, Senior Infosec Analyst > See /usr/ports/deskutils/growl-for-linux/Makefile for an example, bsd.sites.mk has support for github. It was the first example I could find with grep. I believe its a new ports feature. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 07:48:40 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43560106566C; Wed, 3 Oct 2012 07:48:40 +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 F3E808FC19; Wed, 3 Oct 2012 07:48:39 +0000 (UTC) Received: from ncsc.bris.ac.uk ([137.222.10.41]) by dirg.bris.ac.uk with esmtp (Exim 4.72) (envelope-from ) id 1TJJh8-0002FZ-UM; Wed, 03 Oct 2012 08:48:38 +0100 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.72) (envelope-from ) id 1TJJh8-0000eG-Fu; Wed, 03 Oct 2012 08:48:38 +0100 Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5) with ESMTP id q937mchr094211; Wed, 3 Oct 2012 08:48:38 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.5/8.14.5/Submit) id q937mcku094210; Wed, 3 Oct 2012 08:48:38 +0100 (BST) (envelope-from mexas) Date: Wed, 3 Oct 2012 08:48:38 +0100 (BST) From: Anton Shterenlikht Message-Id: <201210030748.q937mcku094210@mech-cluster241.men.bris.ac.uk> To: freebsd-gecko@freebsd.org, freebsd-ports@freebsd.org Cc: Subject: graphics/evince depends on vulnerable libxul19 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Oct 2012 07:48:40 -0000 ===> Installing for evince-2.32.0_9 ===> evince-2.32.0_9 depends on file: /usr/local/share/icons/gnome/index.theme - found ===> evince-2.32.0_9 depends on executable: yelp - not found ===> Verifying install for yelp in /usr/ports/x11/yelp ===> yelp-2.30.2_4 depends on file: /usr/local/lib/libxul/libxul.so - not found ===> Verifying install for /usr/local/lib/libxul/libxul.so in /usr/ports/www/libxul19 ===> libxul-1.9.2.28_1 has known vulnerabilities: libxul-1.9.2.28_1 is vulnerable: mozilla -- multiple vulnerabilities Shouldn't evince be forcing www/libxul install instead? Anton From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 08:17:59 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B0671065670 for ; Wed, 3 Oct 2012 08:17:59 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp3.insight.synacor.com [208.47.185.25]) by mx1.freebsd.org (Postfix) with ESMTP id 2E29C8FC17 for ; Wed, 3 Oct 2012 08:17:58 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.1 cv=zGUWv2qlendUSf1OPvegwjo4wNi7putpHGN54uCzlBk= c=1 sm=0 a=My6P8YespNQA:10 a=jLN7EqiLvroA:10 a=6I5d2MoRAAAA:8 a=VfLn69hImZf7UHhvmjIA:9 a=AcdsImxJPJ9Yo6Ye3TGm+Q==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp02.insight.synacor.com header.from=mueller23@insightbb.com; sender-id=softfail Authentication-Results: smtp02.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Received-SPF: softfail (smtp02.insight.synacor.com: transitional domain insightbb.com does not designate 74.134.34.76 as permitted sender) Received: from [74.134.34.76] ([74.134.34.76:54574] helo=localhost) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.2.40 r(29895/29896)) with ESMTP id E0/42-18483-5B4FB605; Wed, 03 Oct 2012 04:17:57 -0400 Date: Wed, 03 Oct 2012 04:17:57 -0400 Message-ID: From: "Thomas Mueller" To: freebsd-ports@freebsd.org In-Reply-To: <506AB464.2040800@ose.nl> Subject: Re: Problem upgrading misc/help2man: missing language files 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, 03 Oct 2012 08:17:59 -0000 from Bas Smeelen : > Below it looks like the creation of the backup package fails, which get's > deleted by default after the new port is installed. > I Just update ports on a CURRENT server with csup from cvsup4.nl.FreeBSD.org > and the help2man version is still 1.40.12 > I will go ahead and update from cvsup9.freebsd.org > . > . > . > No help2man-1.40.13 yet. > Maybe csup the portstree again and retry portmaster misc/help2man? > Did portmaster end with lines like > Upgrade of help2man-1.40.11 to help2man-1.40.12 > But then help2man-1.40.12 to help2man-1.40.13 instead of the above? > The it should be OK. No, I was trying to upgrade from 1.40.12 to 1.40.13 : WRONG! I used "portsnap fetch update", and I saw the new version 1.40.13 : WRONG! I checked again, and current version was 1.40.12 Problem might have been a port having misc/help2man as a dependency needed NLS option to be set? So I rebuilt with portmaster -f misc/help2man and that rebuilt perl-5.16 redundantly. I am still curious how one rebuilds and reinstalls a corrupted port installation when backing up would not be desired. Maybe portmaster -f ? Tom From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 10:22:15 2012 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 72308106564A for ; Wed, 3 Oct 2012 10:22:15 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp1.insight.synacor.com [208.47.185.23]) by mx1.freebsd.org (Postfix) with ESMTP id 351FD8FC12 for ; Wed, 3 Oct 2012 10:22:14 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.1 cv=dSaXs3NNzfa/VTXLxLYMM2c24Jb9hIsUVKv8YOyNMs4= c=1 sm=0 a=DvSzqBOGy98A:10 a=9gFu0FdVrKdZibwHK8wA:9 a=AcdsImxJPJ9Yo6Ye3TGm+Q==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp02.insight.synacor.com header.from=mueller6727@bellsouth.net; sender-id=neutral Authentication-Results: smtp02.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Received-SPF: softfail (smtp02.insight.synacor.com: transitional domain insightbb.com does not designate 74.134.34.76 as permitted sender) Received: from [74.134.34.76] ([74.134.34.76:35056] helo=localhost) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.2.40 r(29895/29896)) with ESMTP id 95/5C-23623-0D11C605; Wed, 03 Oct 2012 06:22:08 -0400 Date: Wed, 03 Oct 2012 06:22:08 -0400 Message-ID: <95.5C.23623.0D11C605@smtp02.insight.synacor.com> From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: png, graphviz and php 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, 03 Oct 2012 10:22:15 -0000 Attempting to upgrade all ports depending on png, I hit a snag with an error message relating to swig and php 5.4: .if ${PHP_VER} == 5 BROKEN= swig is to old to build for php 5.4 .endif I have php5-5.3.8, swig 1.3.40 and graphviz 2.28.0 presently installed. Would it help to upgrade swig to swig20, or should I deselect PHP in the options for graphviz, which I already did, seeing it was not a default option? Maybe an incompatibility between php 5.4, swig and graphviz? I tend to be overambitious choosing options, often to my regret. Just for comparison, I looked in (NetBSD) pkgsrc/graphics/graphviz, and PHP is not available as an option: PKG_OPTIONS_VAR= PKG_OPTIONS.graphviz PKG_SUPPORTED_OPTIONS= gd ghostscript gtk guile lua ocaml pangocairo rsvg tcl x 11 perl PKG_SUGGESTED_OPTIONS= gd gtk lua pangocairo perl tcl x11 Tom From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 10:56:04 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 292A5106564A; Wed, 3 Oct 2012 10:56:04 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id B7BE58FC08; Wed, 3 Oct 2012 10:56:02 +0000 (UTC) Received: from skuns.kiev.zoral.com.ua (localhost [127.0.0.1]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id q93Au0jp089533; Wed, 3 Oct 2012 13:56:00 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5) with ESMTP id q93AtmhM067796; Wed, 3 Oct 2012 13:55:48 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5/Submit) id q93Atm25067795; Wed, 3 Oct 2012 13:55:48 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Wed, 3 Oct 2012 13:55:48 +0300 From: Konstantin Belousov To: Shane Ambler Message-ID: <20121003105547.GS35915@deviant.kiev.zoral.com.ua> References: <506B3E9A.1000905@ShaneWare.Biz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pWAGJYLEitsbNOt2" Content-Disposition: inline In-Reply-To: <506B3E9A.1000905@ShaneWare.Biz> User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua Cc: gerald@freebsd.org, FreeBSD-ports Subject: Re: Possible regression in i386 build with gcc 4.6 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, 03 Oct 2012 10:56:04 -0000 --pWAGJYLEitsbNOt2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 03, 2012 at 04:50:58AM +0930, Shane Ambler wrote: > I found a situation where gcc v4.2 compiles a i386 working binary and > v4.6 doesn't. (Currently 4.7 and 4.8 fail to build this code) I have > verified that this happens with 8.2/8.3/9.0 i386 systems. x86_64 > versions build without issue as does clang i386/x86_64. >=20 > It appears that the x86_64 target of gcc offers gcc atomics while the > i386 target doesn't - and this appears to be a freebsd specific setup, > the i386 targets then fall back to using tbb atomics. >=20 > Is this some subtle bug I'm missing? can it be alleviated with compiler > flags/more universal code? >=20 > I have tried to cut this down to just the call that triggers a > segmentation fault but the one call itself isn't enough. >=20 > The issue can be found in graphics/openimageio. The easiest way I know > to cause the segmentation fault is with the image viewer that is part of > the port (it is a Qt app) it seg faults during startup. There is no need > to open any images just starting iv with an empty window is fine. >=20 > The makefile is setup to USE_GCC=3D4.6+ for i386/8.2 - this is a leftover > from earlier versions that will be removed next update. >=20 > cd /usr/ports/graphics/openimageio > make > ./work/.build/iv/iv >=20 > The error appears to stem from line 193 of src/libutil/ustring.cpp >=20 > atomic_exchange_and_add (&ustring_stats_constructed, 1); >=20 > Commenting this line prevents the crash but isn't a valid fix. > the relevant function it calls is -- src/include/thread.h:283 > which uses the atomic class template from tbb for the i386 build. >=20 > inline long long > atomic_exchange_and_add (volatile long long *at, long long x) > { > #ifdef USE_GCC_ATOMICS > return __sync_fetch_and_add (at, x); > #elif USE_TBB > atomic *a =3D (atomic *)at; > return a->fetch_and_add (x); > #elif defined(__APPLE__) > > #endif > } The in-tree gcc is indeed defaults to the -march=3D486. I think that the po= rts gcc lacks several customizations. At least we recently updates specs to include both SysV and GNU hash tables, as well as enabled new dtags. There are probably more small things. The right solution, obviously, is to push these customizations into the gcc source. --pWAGJYLEitsbNOt2 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAlBsGbMACgkQC3+MBN1Mb4hufwCgjWsh4Wr7h0tiVyWTBOI/YCJK Cf0AoNWS5wEdEnW1zp2H+6WiZCgSbCAv =8Cjm -----END PGP SIGNATURE----- --pWAGJYLEitsbNOt2-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 11:21:54 2012 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 CCBE11065670 for ; Wed, 3 Oct 2012 11:21:54 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id F3C068FC08 for ; Wed, 3 Oct 2012 11:21:52 +0000 (UTC) Received: (qmail 46121 invoked by uid 89); 3 Oct 2012 11:21:50 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.137.82.186) by mail.grem.de with ESMTPA; 3 Oct 2012 11:21:50 -0000 Date: Wed, 3 Oct 2012 13:21:47 +0200 From: Michael Gmelin To: Paul Schmehl , freebsd-ports@freebsd.org Message-ID: <20121003132147.043c9a74@bsd64.grem.de> In-Reply-To: <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> <20121002232812.442d2c20@bsd64.grem.de> <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/PBcqdQPGrEq2v/OOuwCpJXo" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: How to check out 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, 03 Oct 2012 11:21:54 -0000 --MP_/PBcqdQPGrEq2v/OOuwCpJXo Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline On Tue, 02 Oct 2012 21:54:31 -0500 Paul Schmehl wrote: > --On October 2, 2012 11:28:12 PM +0200 Michael Gmelin > wrote: > > > > > > > On Tue, 02 Oct 2012 14:14:26 -0500 > > Paul Schmehl wrote: > > > >> --On October 2, 2012 2:44:46 PM -0400 Eitan Adler > >> wrote: > >> > On 2 October 2012 14:37, Paul Schmehl > >> > wrote: > >> >> I obviously wasn't very clear. I'm a port maintainer. I need > >> >> to update one of my ports. I used to do this by checking out > >> >> the port into a purpose-created directory in which I would use > >> >> cvs to make changes and test. After everything checked out, I > >> >> would submit the diff. > >> > > >> > We need to be better about announcing these changes as not to > >> > frustrate maintainers. :) > >> > > >> >> Now cvs isn't working, so how, as a port maintainer, do I check > >> >> out a single port so I can update it and submit it in a PR? > >> > > >> > You should do things the same way you did before, but instead you > >> > should use svn to checkout out your port. Note that 'module > >> > names' no longer work so you must use the full name: > >> > e..g., svn checkout svn://svn.freebsd.org/ports/head/editors/nano > >> > > >> > It may help to keep a folder of "ports-I-maintain" with the ports > >> > you maintain checked out. Before you update them do "svn update > >> > *" and to generate a diff do "svn diff foldername" > >> I got on the wiki and figured out how to check ou the port using > >> svn, but now I'm stuck again. This port has moved to github, and > >> I don't have a clue how to download it in the Makefile. There's > >> no mention of github in /usr/ports/Mk, so I assume the method > >> hasn't even been written yet. The source is here: > >> , but I don't see a tarball, > >> and I don't know enough about ports to know if it's even possible > >> to fetch it from github. > > > > Hi Paul, > > > > What about using the ZIP > > > > https://github.com/firnsy/barnyard2/zipball/master > > > > (this will give you the current master branch in a ZIP file) > > > > or a tarball > > > > https://github.com/firnsy/barnyard2/tarball/master > > > > If you want to keep things more stable (since the master branch > > might change frequently and break your build), limit yourself to a > > specific version. Fortunately this software is using tags for > > versioning, so it's easy to get zips from github, e.g.: > > > > https://github.com/firnsy/barnyard2/zipball/v2-1.10 > > > > or if you prefer a tarball (which is usually nicer to have) > > > > https://github.com/firnsy/barnyard2/tarball/v2-1.10 > > > > Github provides tarballs (and zipballs) for all branches and tags. > > > > See also: > > > > https://github.com/blog/12-tarball-downloads > > > > Hope that helps > > How do I handle this? > > firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz > > Is the string at the end (g2f5d496) auto-generated? If so, that's > another problem. > > I guess something like this? Sheesh. What a PITA. > > PORTNAME= barnyard2-v2 > PORTVERSION= 1.10 > PKGNAMEPREFIX= firnsy- > PKGNAMESUFFIX= -0-g2f5d496 > The file name is the result of the command "git describe" and is therefore stable. It consists of three parts: tag - number of commits - commit hash This project uses tags for versioning (which makes sense), so this file name tells you that you're dealing with version v2-1.10, there have been no commits to the tree since this version (it's unaltered) and the commit id is g2f5d496 (which is a short but unique version of the original sha1). You can use this commit id to get exactly this version from a git repository (git clone ...; git checkout g2f5d496). If somebody commited to the repository, the number in the middle would increase and the hash change - but this will not happen in this scenario, since github creates the tarball by checking out the tag (git clone ...; git checkout v2-1.10), so as long as the project owner doesn't change the meaning of the tag (which he usually won't since he would redefine what vesion v2-1.10 means) this file name is stable. That said, when you're fetching using the fetch command (this is what ports uses) things look different anyway. Let's assume you're fetching a tag (= a version) and not master (which is not a version, but basically the current stable environment) and you're using the fetch program to get it, then the resulting file name is NOT firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz but "v2-1.10". [dev@bsd64 /tmp]$ fetch https://github.com/firnsy/barnyard2/tarball/v2-1.10 v2-1.10 100% of 409 kB 414 kBps ... Like Eitan pointed out, fortunately there are github supporting options in bsd.ports.mk. So if you use the following settings you should be fine (just tested this here and ended up creating an almost complete port skeleton - I turned v2-1.10 into 2.1.10 in the process, since v2-1.10 would not be supported by the ports system - so this installs as barnyard2-2.1.10, which should be ok for future updates). Makefile: # Whom: pschmehl_lists@tx.rr.com # $FreeBSD:$ # PORTNAME= barnyard2 PORTVERSION= 2.1.10 CATEGORIES= security GH_ACCOUNT= firnsy GH_PROJECT= barnyard2 GH_TAGNAME= v2-1.10 GH_COMMIT= 2f5d496 USE_GITHUB= YES GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE=YES MAINTAINER= pschmehl_lists@tx.rr.com COMMENT= Barnyard2 is a dedicated spooler\ for Snorts unified2 binary output format. pre-configure: cd ${WRKSRC}; ${SH} autogen.sh .include distinfo: SHA256 (barnyard2-2.1.10.tar.gz) = 31d4e3745606489658bd411f74ffeb8a27573fdc08d0b51a6a71e1bf4dece8a2 SIZE (barnyard2-2.1.10.tar.gz) = 419781 pkg-descr: Barnyard2 is a dedicated spooler for Snort's unified2 binary output format. https://github.com/firnsy/barnyard2/ pkg-plist: bin/barnyard2 etc/barnyard2.conf I attached the full port skeleton in a tarball, it might need some checking, I just did the usual (make install, make reinstall, pkg_create, pkg_delete). Maybe somebody could use this information to create a page about using github in the porter's handbook (it won't be me :D)? Cheers, Michael -- Michael Gmelin --MP_/PBcqdQPGrEq2v/OOuwCpJXo-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 11:31:45 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F071E106566B for ; Wed, 3 Oct 2012 11:31:44 +0000 (UTC) (envelope-from jamie@kode5.net) Received: from kontrol.kode5.net (kontrol.kode5.net [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id 5AA598FC08 for ; Wed, 3 Oct 2012 11:31:43 +0000 (UTC) Received: from kontrol.kode5.net (localhost [127.0.0.1]) by kontrol.kode5.net (8.14.5/8.14.5) with ESMTP id q93BVaDi062274 for ; Wed, 3 Oct 2012 12:31:36 +0100 (BST) (envelope-from jamie@kode5.net) Received: (from jamie@localhost) by kontrol.kode5.net (8.14.5/8.14.5/Submit) id q93BVa0U062273 for freebsd-ports@freebsd.org; Wed, 3 Oct 2012 12:31:36 +0100 (BST) (envelope-from jamie@kode5.net) X-Authentication-Warning: kontrol.kode5.net: jamie set sender to jamie@kode5.net using -f Date: Wed, 3 Oct 2012 12:31:36 +0100 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20121003113136.GB58568@kontrol.kode5.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <201210030748.q937mcku094210@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201210030748.q937mcku094210@mech-cluster241.men.bris.ac.uk> x-operating-system: FreeBSD 9.1-PRERELEASE amd64 x-pgp-fingerprint: A4B9 E875 A18C 6E11 F46D B788 BEE6 1251 1D31 DC38 x-pgp-key: 1D31DC38 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at kontrol.kode5.net X-Virus-Status: Clean Subject: Re: graphics/evince depends on vulnerable libxul19 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, 03 Oct 2012 11:31:45 -0000 [ Anton Shterenlikht wrote on Wed 3.Oct'12 at 8:48:38 +0100 ] > ===> Installing for evince-2.32.0_9 > ===> evince-2.32.0_9 depends on file: /usr/local/share/icons/gnome/index.theme - found > ===> evince-2.32.0_9 depends on executable: yelp - not found > ===> Verifying install for yelp in /usr/ports/x11/yelp > ===> yelp-2.30.2_4 depends on file: /usr/local/lib/libxul/libxul.so - not found > ===> Verifying install for /usr/local/lib/libxul/libxul.so in /usr/ports/www/libxul19 > ===> libxul-1.9.2.28_1 has known vulnerabilities: > libxul-1.9.2.28_1 is vulnerable: > mozilla -- multiple vulnerabilities > > Shouldn't evince be forcing www/libxul install instead? > > Anton The same is true for java/icedtea-web - i'd like to install that port but it also wants libxul-1.9.x as a build dependency. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 13:09:48 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 499E8106566C for ; Wed, 3 Oct 2012 13:09:48 +0000 (UTC) (envelope-from frank_s@bellsouth.net) Received: from fmailhost02.isp.att.net (fmailhost02.isp.att.net [204.127.217.102]) by mx1.freebsd.org (Postfix) with ESMTP id 2F74B8FC0A for ; Wed, 3 Oct 2012 13:09:48 +0000 (UTC) Received: from ace.nina.org (adsl-74-178-59-56.gnv.bellsouth.net[74.178.59.56]) by isp.att.net (frfwmhc02) with SMTP id <20121003130940H0200oou2ne>; Wed, 3 Oct 2012 13:09:41 +0000 X-Originating-IP: [74.178.59.56] Date: Wed, 3 Oct 2012 09:09:39 -0400 (EDT) From: Frank Seltzer X-X-Sender: frank_s@Ace.nina.org To: David Wolfskill In-Reply-To: <20121002163450.GR3939@albert.catwhisker.org> Message-ID: References: <6DE237A2D4133FBAED25FC26@localhost> <20121002163450.GR3939@albert.catwhisker.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Paul Schmehl , FreeBSD Ports List Subject: Re: How to check out 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, 03 Oct 2012 13:09:48 -0000 On Tue, 2 Oct 2012, David Wolfskill wrote: > What I do is maintain local private mirrors of the FreeBSD src, doc, > and ports SVN repositories, and check out what I want to use via svn > using those repositories. This does not require a password. > > It is unlikely that most folks will want (let alone need) to maintain > such mirrors, but I find it easy and useful for what I do. > > -- > David H. Wolfskill david@catwhisker.org I posed a question in a previous thread about setting up an svn server but I don't think I was very clear. I have attempted to setup svnserve to replace my local cvsup mirror but cannot find step by step instructions on how to configure it. I can't make what I've found work. Is there a port or cookbook approach to setting up an svn server similar to ports/cvsup-mirror? Thanks, Frank From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 14:29:30 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CA62106566C for ; Wed, 3 Oct 2012 14:29:30 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 0A3C08FC12 for ; Wed, 3 Oct 2012 14:29:29 +0000 (UTC) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.50]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 21845A7166C for ; Wed, 3 Oct 2012 10:29:28 -0400 (EDT) Received: (qmail 18814 invoked from network); 3 Oct 2012 14:29:27 -0000 Received: by simscan 1.4.0 ppid: 25936, pid: 21622, t: 0.1682s scanners: clamav: 0.88.2/m:52/d:10739 Received: from unknown (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 3 Oct 2012 14:29:27 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id D4F8933C25; Wed, 3 Oct 2012 10:29:26 -0400 (EDT) From: Lowell Gilbert To: mexas@bristol.ac.uk References: <201210030748.q937mcku094210@mech-cluster241.men.bris.ac.uk> Date: Wed, 03 Oct 2012 10:29:26 -0400 In-Reply-To: <201210030748.q937mcku094210@mech-cluster241.men.bris.ac.uk> (Anton Shterenlikht's message of "Wed, 3 Oct 2012 08:48:38 +0100 (BST)") Message-ID: <44obkj39yx.fsf@be-well.ilk.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: freebsd-gecko@freebsd.org, freebsd-ports@freebsd.org Subject: Re: graphics/evince depends on vulnerable libxul19 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, 03 Oct 2012 14:29:30 -0000 Anton Shterenlikht writes: > ===> Installing for evince-2.32.0_9 > ===> evince-2.32.0_9 depends on file: /usr/local/share/icons/gnome/index.theme - found > ===> evince-2.32.0_9 depends on executable: yelp - not found > ===> Verifying install for yelp in /usr/ports/x11/yelp > ===> yelp-2.30.2_4 depends on file: /usr/local/lib/libxul/libxul.so - not found > ===> Verifying install for /usr/local/lib/libxul/libxul.so in /usr/ports/www/libxul19 > ===> libxul-1.9.2.28_1 has known vulnerabilities: > libxul-1.9.2.28_1 is vulnerable: > mozilla -- multiple vulnerabilities > > Shouldn't evince be forcing www/libxul install instead? It's yelp which is looking for libxul19, not evince directly. And yelp won't work with www/libxul last I heard. Personally, I'm just living without yelp right now. I think others are too. The quick-and-dirty hack someone just mentioned on another thread is to let yelp install with libxul19, then delete libxul19. Yelp won't work, but it will be installed and other programs that want it will go ahead and install happily. That sounds like it should work; what I did (before I heard that advice) was to change other ports to not try to use yelp at all. Good luck. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 17:41:32 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D30F9106564A for ; Wed, 3 Oct 2012 17:41:32 +0000 (UTC) (envelope-from prvs=616aba4b1=pschmehl_lists@tx.rr.com) Received: from ip-001.utdallas.edu (ip-001.utdallas.edu [129.110.20.107]) by mx1.freebsd.org (Postfix) with ESMTP id 9DAAF8FC08 for ; Wed, 3 Oct 2012 17:41:32 +0000 (UTC) X-Group: None X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AmQIABF4bFCBbgogOmdsb2JhbABFrlOQOwEBAQEZgnMBAQQBOAJPCw44QxQGARKHfwYLt0CLI4VaYAOIWI4mkiGBRQ X-IronPort-AV: E=Sophos;i="4.80,528,1344229200"; d="scan'208";a="105283422" Received: from zxtm01.utdallas.edu (HELO [129.110.200.11]) ([129.110.10.32]) by ip-001.utdallas.edu with ESMTP/TLS/DHE-RSA-AES256-SHA; 03 Oct 2012 12:40:56 -0500 Date: Wed, 03 Oct 2012 12:40:54 -0500 From: Paul Schmehl To: Michael Gmelin , freebsd-ports@freebsd.org Message-ID: <979E79833BE5A8EA79E38E1B@localhost> In-Reply-To: <20121003132147.043c9a74@bsd64.grem.de> References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> <20121002232812.442d2c20@bsd64.grem.de> <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> <20121003132147.043c9a74@bsd64.grem.de> X-Mailer: Mulberry/4.1.0a1 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline; size=3923 Cc: Subject: Re: How to check out ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Oct 2012 17:41:32 -0000 --On October 3, 2012 1:21:47 PM +0200 Michael Gmelin wrote: > > The file name is the result of the command "git describe" and is > therefore stable. It consists of three parts: > > tag - number of commits - commit hash > > This project uses tags for versioning (which makes sense), so this file > name tells you that you're dealing with version v2-1.10, there have > been no commits to the tree since this version (it's unaltered) and the > commit id is g2f5d496 (which is a short but unique version of the > original sha1). You can use this commit id to get exactly this version > from a git repository (git clone ...; git checkout g2f5d496). If > somebody commited to the repository, the number in the middle would > increase and the hash change - but this will not happen in this > scenario, since github creates the tarball by checking out the tag (git > clone ...; git checkout v2-1.10), so as long as the project owner > doesn't change the meaning of the tag (which he usually won't since he > would redefine what vesion v2-1.10 means) this file name is stable. > > That said, when you're fetching using the fetch command (this is > what ports uses) things look different anyway. Let's assume you're > fetching a tag (= a version) and not master (which is not a version, but > basically the current stable environment) and you're using the fetch > program to get it, then the resulting file name is NOT > firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz but "v2-1.10". > > [dev@bsd64 /tmp]$ fetch > https://github.com/firnsy/barnyard2/tarball/v2-1.10 > v2-1.10 100% of 409 kB 414 kBps > ... > > Like Eitan pointed out, fortunately there are github supporting options > in bsd.ports.mk. So if you use the following settings you should be fine > (just tested this here and ended up creating an almost complete port > skeleton - I turned v2-1.10 into 2.1.10 in the process, since v2-1.10 > would not be supported by the ports system - so this installs as > barnyard2-2.1.10, which should be ok for future updates). > > Makefile: ># Whom: pschmehl_lists@tx.rr.com ># $FreeBSD:$ ># > > PORTNAME= barnyard2 > PORTVERSION= 2.1.10 > CATEGORIES= security > GH_ACCOUNT= firnsy > GH_PROJECT= barnyard2 > GH_TAGNAME= v2-1.10 > GH_COMMIT= 2f5d496 > USE_GITHUB= YES > GNU_CONFIGURE= yes > MAKE_JOBS_UNSAFE=YES > > MAINTAINER= pschmehl_lists@tx.rr.com > COMMENT= Barnyard2 is a dedicated spooler\ > for Snorts unified2 binary output format. > > pre-configure: > cd ${WRKSRC}; ${SH} autogen.sh > > .include > > distinfo: > SHA256 (barnyard2-2.1.10.tar.gz) = > 31d4e3745606489658bd411f74ffeb8a27573fdc08d0b51a6a71e1bf4dece8a2 SIZE > (barnyard2-2.1.10.tar.gz) = 419781 > > pkg-descr: > Barnyard2 is a dedicated spooler for Snort's > unified2 binary output format. > > https://github.com/firnsy/barnyard2/ > > pkg-plist: > bin/barnyard2 > etc/barnyard2.conf > > I attached the full port skeleton in a tarball, it might need some > checking, I just did the usual (make install, make reinstall, > pkg_create, pkg_delete). > > Maybe somebody could use this information to create a page about using > github in the porter's handbook (it won't be me :D)? > Thanks, Michael. You've been a huge help. I had earlier searched /usr/ports/Mk for any sign of github and found none. Your email made me realize my ports were out of date, a problem I need to fix. With your help I now have a distinfo file and am working on figuring out why it won't make. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 17:53:07 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E4AF1065672 for ; Wed, 3 Oct 2012 17:53:07 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 7A8948FC12 for ; Wed, 3 Oct 2012 17:53:05 +0000 (UTC) Received: (qmail 51069 invoked by uid 89); 3 Oct 2012 17:52:58 -0000 Received: from unknown (HELO ?10.38.171.255?) (mg@grem.de@109.43.0.92) by mail.grem.de with ESMTPA; 3 Oct 2012 17:52:58 -0000 References: <6DE237A2D4133FBAED25FC26@localhost> <44626syfjv.fsf@be-well.ilk.org> <17F1F6096650E45134B198CD@localhost> <85CE784EEB463CD1C26E6C06@localhost> <20121002232812.442d2c20@bsd64.grem.de> <267E4790564988D2A545BF49@Pauls-MacBook-Pro.local> <20121003132147.043c9a74@bsd64.grem.de> <979E79833BE5A8EA79E38E1B@localhost> From: Michael Gmelin Content-Type: text/plain; charset=us-ascii X-Mailer: iPhone Mail (10A403) In-Reply-To: <979E79833BE5A8EA79E38E1B@localhost> Message-Id: <9BE61D61-A226-489E-B551-02FC9F919D55@grem.de> Date: Wed, 3 Oct 2012 19:52:41 +0200 To: Paul Schmehl , freebsd-ports@freebsd.org Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (1.0) Cc: Subject: Re: How to check out 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, 03 Oct 2012 17:53:07 -0000 On 3 Oct 2012, at 19:40, Paul Schmehl wrote: > --On October 3, 2012 1:21:47 PM +0200 Michael Gmelin wro= te: >=20 >>=20 >> The file name is the result of the command "git describe" and is >> therefore stable. It consists of three parts: >>=20 >> tag - number of commits - commit hash >>=20 >> This project uses tags for versioning (which makes sense), so this file >> name tells you that you're dealing with version v2-1.10, there have >> been no commits to the tree since this version (it's unaltered) and the >> commit id is g2f5d496 (which is a short but unique version of the >> original sha1). You can use this commit id to get exactly this version >> from a git repository (git clone ...; git checkout g2f5d496). If >> somebody commited to the repository, the number in the middle would >> increase and the hash change - but this will not happen in this >> scenario, since github creates the tarball by checking out the tag (git >> clone ...; git checkout v2-1.10), so as long as the project owner >> doesn't change the meaning of the tag (which he usually won't since he >> would redefine what vesion v2-1.10 means) this file name is stable. >>=20 >> That said, when you're fetching using the fetch command (this is >> what ports uses) things look different anyway. Let's assume you're >> fetching a tag (=3D a version) and not master (which is not a version, bu= t >> basically the current stable environment) and you're using the fetch >> program to get it, then the resulting file name is NOT >> firnsy-barnyard2-v2-1.10-0-g2f5d496.tar.gz but "v2-1.10". >>=20 >> [dev@bsd64 /tmp]$ fetch >> https://github.com/firnsy/barnyard2/tarball/v2-1.10 >> v2-1.10 100% of 409 kB 414 kBps >> ... >>=20 >> Like Eitan pointed out, fortunately there are github supporting options >> in bsd.ports.mk. So if you use the following settings you should be fine >> (just tested this here and ended up creating an almost complete port >> skeleton - I turned v2-1.10 into 2.1.10 in the process, since v2-1.10 >> would not be supported by the ports system - so this installs as >> barnyard2-2.1.10, which should be ok for future updates). >>=20 >> Makefile: >> # Whom: pschmehl_lists@tx.rr.com >> # $FreeBSD:$ >> # >>=20 >> PORTNAME=3D barnyard2 >> PORTVERSION=3D 2.1.10 >> CATEGORIES=3D security >> GH_ACCOUNT=3D firnsy >> GH_PROJECT=3D barnyard2 >> GH_TAGNAME=3D v2-1.10 >> GH_COMMIT=3D 2f5d496 >> USE_GITHUB=3D YES >> GNU_CONFIGURE=3D yes >> MAKE_JOBS_UNSAFE=3DYES >>=20 >> MAINTAINER=3D pschmehl_lists@tx.rr.com >> COMMENT=3D Barnyard2 is a dedicated spooler\ >> for Snorts unified2 binary output format. >>=20 >> pre-configure: >> cd ${WRKSRC}; ${SH} autogen.sh >>=20 >> .include >>=20 >> distinfo: >> SHA256 (barnyard2-2.1.10.tar.gz) =3D >> 31d4e3745606489658bd411f74ffeb8a27573fdc08d0b51a6a71e1bf4dece8a2 SIZE >> (barnyard2-2.1.10.tar.gz) =3D 419781 >>=20 >> pkg-descr: >> Barnyard2 is a dedicated spooler for Snort's >> unified2 binary output format. >>=20 >> https://github.com/firnsy/barnyard2/ >>=20 >> pkg-plist: >> bin/barnyard2 >> etc/barnyard2.conf >>=20 >> I attached the full port skeleton in a tarball, it might need some >> checking, I just did the usual (make install, make reinstall, >> pkg_create, pkg_delete). >>=20 >> Maybe somebody could use this information to create a page about using >> github in the porter's handbook (it won't be me :D)? >=20 > Thanks, Michael. You've been a huge help. I had earlier searched /usr/po= rts/Mk for any sign of github and found none. Your email made me realize my= ports were out of date, a problem I need to fix. >=20 > With your help I now have a distinfo file and am working on figuring out w= hy it won't make. >=20 > --=20 > Paul Schmehl, Senior Infosec Analyst > As if it wasn't already obvious, my opinions > are my own and not those of my employer. > ******************************************* > "It is as useless to argue with those who have > renounced the use of reason as to administer > medication to the dead." Thomas Jefferson > "There are some ideas so wrong that only a very > intelligent person could believe in them." George Orwell >=20 Check the tarball I sent in my last mail (attachments get purged on the mail= ing list but I CCed you directly, should untar that in /usr/ports/security, i= t's safer than copy and paste). That one built and installed ok on 9.0 amd64= . What I could imagine is that autogen.sh is calling some autoconf/automake/= lib tool magic that's already installed on my system and that should be made= a dependency of the port. Let me know if you can't figure it out, once I'm b= ack tomorrow I can try building it in a clean jail on 8.2 to see what's up. (Sorry or the messy formatting, traveling means using the phone)= From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 20:14:10 2012 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 435D01065743 for ; Wed, 3 Oct 2012 20:14:10 +0000 (UTC) (envelope-from prvs=616aba4b1=pschmehl_lists@tx.rr.com) Received: from ip-002.utdallas.edu (ip-002.utdallas.edu [129.110.20.108]) by mx1.freebsd.org (Postfix) with ESMTP id F202B8FC1A for ; Wed, 3 Oct 2012 20:14:09 +0000 (UTC) X-Group: None X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: At0HANSbbFCBbgogOmdsb2JhbABFrlqQOwEBAQEZCIMqAoFjGogYlkuGUJpckH1gA4hYjiaSIQ X-IronPort-AV: E=Sophos;i="4.80,528,1344229200"; d="scan'208";a="99365310" Received: from zxtm01.utdallas.edu (HELO [129.110.200.11]) ([129.110.10.32]) by ip-002.utdallas.edu with ESMTP/TLS/DHE-RSA-AES256-SHA; 03 Oct 2012 15:12:15 -0500 Date: Wed, 03 Oct 2012 15:12:14 -0500 From: Paul Schmehl To: FreeBSD Ports List Message-ID: X-Mailer: Mulberry/4.1.0a1 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline; size=2199 Subject: Struggling with an autotools problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Oct 2012 20:14:10 -0000 I'm working on an update to the barnyard2 port. The developer has moved to github, and everything is changed from the way it was previously compiled. There's no install.sh script, there's no configure.ac, and I've had to fix a number of errors where he uses deprecated macros. I've sorted everything out except a handful, and now I'm stuck. Here's the output of make: # make ===> License GPLv2 accepted by the user ===> Found saved configuration for barnyard2-1.10 ===> Extracting for barnyard2-1.10 => SHA256 Checksum OK for barnyard2-1.10.tar.gz. ===> Patching for barnyard2-1.10 ===> Applying FreeBSD patches for barnyard2-1.10 ===> barnyard2-1.10 depends on file: /usr/local/bin/automake-1.12 - found ===> barnyard2-1.10 depends on file: /usr/local/bin/autoconf-2.69 - found ===> Configuring for barnyard2-1.10 aclocal-1.12: warning: '--acdir' is deprecated aclocal-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' configure.in:497: warning: macro 'AM_PATH_LIBPRELUDE' not found in library automake-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' configure.in:8: error: required file './install-sh' not found configure.in:8: 'automake --add-missing' can install 'install-sh' configure.in:8: error: required file './missing' not found configure.in:8: 'automake --add-missing' can install 'missing' configure.in:7: error: required file 'config.h.in' not found automake-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' *** Error code 1 How do I add the --add-missing option to automake? My Makefile has this: USE_AUTOTOOLS= automake autoconf aclocal I've searched and searched, and I've tried several different things, but I can't seem to resolve this error. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 20:57:50 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FADF1065673 for ; Wed, 3 Oct 2012 20:57:50 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 40AD68FC15 for ; Wed, 3 Oct 2012 20:57:49 +0000 (UTC) Received: by qady23 with SMTP id y23so2113457qad.13 for ; Wed, 03 Oct 2012 13:57:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding:content-type; bh=/x/cYnVP1Y0hI18ujD1N6rJgVJz/q6zK92Lw5FbLy6Q=; b=0bGvy9nfMEmORGLhvUsYFjDHfGwQAFyFcpiJozywA3/T7CPcvjBs28K7pqtBP21DS1 Sx5MwQTiyTov6S3Tjhs9wPPTVlx0SkV8jt6QjQ8Gp7uQdTB29nvyC/AThWDigCki6cGu 7Rk0cT3gAyCPhkFPugKAxCWJsagPI7sg3xJR23cZlpBtmyh91QzdQApkqKiNxdmugHg/ 5FxWcAqV62I7jB1yrcCg51cP34QsoPXKoHfYciwWNuYZBX1V0maJg5hkJOssBp2eq76Q KyeOavaC7xeD8fxMKx9PYJsUdzvK8N0YFSLbYjP6MhlQONOc9039fqGhRRfWaHxCT/xp uVbA== Received: by 10.224.217.136 with SMTP id hm8mr9333727qab.81.1349297869411; Wed, 03 Oct 2012 13:57:49 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id x19sm5837870qeq.12.2012.10.03.13.57.48 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 03 Oct 2012 13:57:48 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: freebsd-ports@freebsd.org, Paul Schmehl Date: Wed, 03 Oct 2012 16:57:46 -0400 Message-ID: <8939327.duiFNYYenf@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: Subject: Re: Struggling with an autotools problem 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, 03 Oct 2012 20:57:50 -0000 On Wednesday, October 03, 2012 15:12:14 Paul Schmehl wrote: > I'm working on an update to the barnyard2 port. The developer has moved to > github, and everything is changed from the way it was previously compiled. > There's no install.sh script, there's no configure.ac, and I've had to fix > a number of errors where he uses deprecated macros. I've sorted everything > out except a handful, and now I'm stuck. > > Here's the output of make: > > # make > ===> License GPLv2 accepted by the user > ===> Found saved configuration for barnyard2-1.10 > ===> Extracting for barnyard2-1.10 > => SHA256 Checksum OK for barnyard2-1.10.tar.gz. > ===> Patching for barnyard2-1.10 > ===> Applying FreeBSD patches for barnyard2-1.10 > ===> barnyard2-1.10 depends on file: /usr/local/bin/automake-1.12 - found > ===> barnyard2-1.10 depends on file: /usr/local/bin/autoconf-2.69 - found > ===> Configuring for barnyard2-1.10 > aclocal-1.12: warning: '--acdir' is deprecated > aclocal-1.12: warning: autoconf input should be named 'configure.ac', not > 'configure.in' > configure.in:497: warning: macro 'AM_PATH_LIBPRELUDE' not found in library > automake-1.12: warning: autoconf input should be named 'configure.ac', not > 'configure.in' > configure.in:8: error: required file './install-sh' not found > configure.in:8: 'automake --add-missing' can install 'install-sh' > configure.in:8: error: required file './missing' not found > configure.in:8: 'automake --add-missing' can install 'missing' > configure.in:7: error: required file 'config.h.in' not found > automake-1.12: warning: autoconf input should be named 'configure.ac', not > 'configure.in' > *** Error code 1 > > How do I add the --add-missing option to automake? > > My Makefile has this: > > USE_AUTOTOOLS= automake autoconf aclocal > > I've searched and searched, and I've tried several different things, but I > can't seem to resolve this error. Try adding this to your Makefile and remove MASTER_SITES: USE_GITHUB= yes GH_ACCOUNT= firnsy GH_TAGNAME= v2-${PORTVERSION} GH_COMMIT= 2f5d496 USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf LIBTOOLIZE_ARGS=--copy --force AUTOMAKE_ARGS= --add-missing --copy ACLOCAL_ARGS= -I m4 -I ${LOCALBASE}/share/aclocal The macros seem fine, you shouldn't need additional patches to fix errors. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 3 21:07:10 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C17CE106566B for ; Wed, 3 Oct 2012 21:07:10 +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 996D18FC14 for ; Wed, 3 Oct 2012 21:07:10 +0000 (UTC) Received: from 97-94-225-1.dhcp.lncy.or.charter.com ([97.94.225.1] helo=[172.16.32.155]) by panix.lovett.com with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TJVqR-0006Wp-IC; Wed, 03 Oct 2012 20:47:03 +0000 Message-ID: <506CA486.8040908@FreeBSD.org> Date: Wed, 03 Oct 2012 13:48:06 -0700 From: Ade Lovett User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: pschmehl_lists@tx.rr.com Subject: Re: Struggling with an autotools problem 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, 03 Oct 2012 21:07:10 -0000 On 10/3/2012 13:12, Paul Schmehl wrote: > How do I add the --add-missing option to automake? > > My Makefile has this: > > USE_AUTOTOOLS= automake autoconf aclocal > > I've searched and searched, and I've tried several different things, but > I can't seem to resolve this error. Search harder ;) Lines 34-35 of Mk/bsd.autotools.mk AUTOMAKE_ARGS= --add-missing Simple. -aDe From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 13:30:11 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D66AF10656C2 for ; Thu, 4 Oct 2012 13:30:11 +0000 (UTC) (envelope-from beech@freebsdnorth.com) Received: from bsdevel2.freebsdnorth.com (bsdevel2.freebsdnorth.com [204.109.60.222]) by mx1.freebsd.org (Postfix) with ESMTP id AF4838FC19 for ; Thu, 4 Oct 2012 13:30:11 +0000 (UTC) Received: from [69.178.11.212] (212-11-178-69.gci.net [69.178.11.212]) by bsdevel2.freebsdnorth.com (Postfix) with ESMTPA id D7D8A184E3; Thu, 4 Oct 2012 13:21:39 +0000 (UTC) Message-ID: <506D8F5E.2020800@freebsdnorth.com> Date: Thu, 04 Oct 2012 05:30:06 -0800 From: Beech Rintoul User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: jerry@seibercom.net References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> In-Reply-To: <506A9E3E.1020209@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: flashplugin 11.2r202.238 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, 04 Oct 2012 13:30:11 -0000 On 10/1/2012 11:56 PM, Volodymyr Kostyrko wrote: > 01.10.2012 21:33, Jerry wrote: >> I just finished installing "linux-f10-flashplugin-11.2r202.238". For >> some inexplicable reason, it is no longer working. I followed the >> directions in "UPDATING" but without success. I even cleared out the >> entries in the "~/.mozilla/plugins" directory and reran the command >> without results. In fact, now nothing is listed in the directory and >> flash still doesn't work. Every time I reach a page that requires flash, >> I am greeted with a message telling me I need to download and install >> it. > > Could you please rerun nspluginwrapper -v -a -i? Is there anything in > the system log? I ran into the same problem. Tried for two days to get flash working on a client's FreeBSD box. No go. I finally just copied npwrapper.libflashplayer.so into .mozilla/plugins, firefox found it and now all works fine. seems nspluginwrapper -v -a -i is not populating .mozilla/plugins. Beech From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 14:47:16 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9AEF5106566B for ; Thu, 4 Oct 2012 14:47:16 +0000 (UTC) (envelope-from brett.mahar@gmx.com) Received: from mailout-eu.gmx.com (mailout-eu.gmx.com [213.165.64.43]) by mx1.freebsd.org (Postfix) with SMTP id DF27A8FC0A for ; Thu, 4 Oct 2012 14:47:15 +0000 (UTC) Received: (qmail invoked by alias); 04 Oct 2012 14:47:08 -0000 Received: from CPE-143-238-45-134.lnse1.win.bigpond.net.au (EHLO dd.moose.cat) [143.238.45.134] by mail.gmx.com (mp-eu006) with SMTP; 04 Oct 2012 16:47:08 +0200 X-Authenticated: #117972605 X-Provags-ID: V01U2FsdGVkX1/OGEk2O5nO2Ia5/fSQfe/gFYMIs56eiNhgkjfCmZ JVsZyspKNdj+oJ Date: Fri, 5 Oct 2012 00:47:03 +1000 From: Brett To: freebsd-ports@freebsd.org Message-Id: <20121005004703.063c630d.brett.mahar@gmx.com> In-Reply-To: <506D8F5E.2020800@freebsdnorth.com> References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: No package for linux-f10-flashplugin-11 9.0-RELEASE, source code unavailable 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, 04 Oct 2012 14:47:16 -0000 Hi, Has Adobe possibly pulled permission for this to be distributed? => Attempting to fetch http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.55/install_flash_player_11_linux.i386.tar.gz fetch: http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.55/install_flash_player_11_linux.i386.tar.gz: Not Found => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/11.1r102.55/install_flash_player_11_linux.i386.tar.gz fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/11.1r102.55/install_flash_player_11_linux.i386.tar.gz: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/flashplugin/11.1r102.55 and try again. There is no package on the servers if I try to install this with pkg_add, either. Could the distfile or package be available somewhere else? Thanks, Brett. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 15:03:03 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BEFFC1065689 for ; Thu, 4 Oct 2012 15:03:03 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5A0F18FC17 for ; Thu, 4 Oct 2012 15:03:03 +0000 (UTC) Received: by mail-yx0-f182.google.com with SMTP id l8so118061yen.13 for ; Thu, 04 Oct 2012 08:03:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=vqWlMc7XfcHdhYEDsLLEyfb4nXP0JSFa6pt7NmABngk=; b=Omooq//xqLo9FfgXEWMhFAIjKIoUDxPK5wof1l3SJmnJg+tdkKn7Pi567avbjWLxqr Pkct+F7a3G04X6dxiEcw4JZUuvofAeXH4f4zfCS1t5E1/ium6FfIQNbYSCIgOX4+nG1x AddQ/pvUV3vLS5wydkBtzy8N3YC+yqwbBkt78= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=vqWlMc7XfcHdhYEDsLLEyfb4nXP0JSFa6pt7NmABngk=; b=YIFfdHkr3C41gA5FJMwHkgVwR79s5SBLVWSSDpb/D4/59E0DosK5bcmjo/Brtp+gD9 cIUvkaoBiF4+zbsfRICCKDaIXFtUnQabV7kBXr8J+9VTINsdkoTMf/VuuH8nmNKPETox NbWLURvUeVc05Pmj1nFJJqujFTK5ksUZ3Om2NxBTNg+PxEpkrVFdLYFDlhOs7MDHS2WL gP2KIHOP3nAA+g1obGeLgiGL+Pl9d43F8tTVXNVbm3qu7jFrG5kotJkM6BQybt5XGNKd 2bmpg58TJC1aX5TqZYuhfnC7l+3GoJiuMSVmUBpMyETaPrGEvlDNil15Bwm/c2kT75nW E3wg== Received: by 10.236.134.18 with SMTP id r18mr5340921yhi.45.1349362982409; Thu, 04 Oct 2012 08:03:02 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id z30sm10288765yhh.6.2012.10.04.08.03.00 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 04 Oct 2012 08:03:01 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XXcm31D51z2CG5b for ; Thu, 4 Oct 2012 11:02:59 -0400 (EDT) Date: Thu, 4 Oct 2012 11:02:58 -0400 From: Jerry To: freebsd-ports@freebsd.org Message-ID: <20121004110258.3a188bdb@scorpio> In-Reply-To: <506D8F5E.2020800@freebsdnorth.com> References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQlFkR3f2rcsdQWnE1QRY6tZG6aWOdHPezPxMggQe/ArI1JK4Q1DXh4xxQWO9TXNvwxV/wQI Subject: Re: flashplugin 11.2r202.238 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2012 15:03:03 -0000 On Thu, 04 Oct 2012 05:30:06 -0800 Beech Rintoul articulated: > On 10/1/2012 11:56 PM, Volodymyr Kostyrko wrote: > > 01.10.2012 21:33, Jerry wrote: > >> I just finished installing "linux-f10-flashplugin-11.2r202.238". > >> For some inexplicable reason, it is no longer working. I followed > >> the directions in "UPDATING" but without success. I even cleared > >> out the entries in the "~/.mozilla/plugins" directory and reran > >> the command without results. In fact, now nothing is listed in the > >> directory and flash still doesn't work. Every time I reach a page > >> that requires flash, I am greeted with a message telling me I need > >> to download and install it. > > > > Could you please rerun nspluginwrapper -v -a -i? Is there anything > > in the system log? > > I ran into the same problem. Tried for two days to get flash working > on a client's FreeBSD box. No go. I finally just copied > npwrapper.libflashplayer.so into .mozilla/plugins, firefox found it > and now all works fine. seems nspluginwrapper -v -a -i is not > populating .mozilla/plugins. Did you check the info at: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/book.html In particular, I ran into a problem with creating the link. I received an error message stating the link existed; however, even if it did it was not working correctly. I corrected it with this: ln -s -F /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so /usr/local/lib/browser_plugins/ I then ran: "nspluginwrapper -v -a -i" and all is well, or at least as well as can be expected with Flash and FreeBSD. Not exactly a marriage made in heaven. Good luck, you'll need it. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 16:26:56 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D55B5106564A; Thu, 4 Oct 2012 16:26:56 +0000 (UTC) (envelope-from dleg@free.fr) Received: from smtp4-g21.free.fr (smtp4-g21.free.fr [IPv6:2a01:e0c:1:1599::13]) by mx1.freebsd.org (Postfix) with ESMTP id 7BE1B8FC0A; Thu, 4 Oct 2012 16:26:53 +0000 (UTC) Received: from merisier.infomultien.fr (unknown [88.176.109.102]) by smtp4-g21.free.fr (Postfix) with ESMTP id EEACE4C8046; Thu, 4 Oct 2012 18:26:48 +0200 (CEST) Message-ID: <506DB8C7.3040301@free.fr> Date: Thu, 04 Oct 2012 18:26:47 +0200 From: Didier LEGRAND User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: oliver@FreeBSD.org Content-Type: multipart/mixed; boundary="------------040309020305090105030408" Cc: ports@FreeBSD.org Subject: FreeBSD Port: mime-support-3.52.1 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, 04 Oct 2012 16:26:56 -0000 This is a multi-part message in MIME format. --------------040309020305090105030408 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello Oliver, I am using the Perl script run-mailcap from this port to launch applications in accordance to my .mailcap file. I am running this script with mutt and from firefox downloaded files dialog. I found that run-mailcap doesn't process files with special characters in their filename, so i investigated why and made some modifications to this script. The problem is within the 'TempFile' subroutine which doesn't work with FreeBSD. I corrected this by using the Perl module 'File::Temp' and now it works well (see enclosed). Perhaps my modifications could help somebody else. I'm french, so please excuse my bad English. Sincerely yours. -- Didier LEGRAND Email : dleg@free.fr --------------040309020305090105030408 Content-Type: application/octet-stream; name="my_run-mailcap.zip" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="my_run-mailcap.zip" UEsDBBQAAAAIABxJO0HlajWKMREAAKw5AAAOABwAbXlfcnVuLW1haWxjYXBVVAkAA4f7Y1Dr t21QdXgLAAEE6QMAAATpAwAAzTtrd9NIsp+TX9FWlLEElmV7d/bs2DjALmEu5xCGhTCze+Mk I9udWBdZEnqQZCD727eq+qGWLIfAzt17wyGWW9XV9a7q6s5eh/llnvnzMPZTnkXMu9rd+31/ duEfY2/K2DsKwmgRpGP6xgKWZsllFqxZnvJFeBHyJQtjVqw4WwtAdhFGnM2DHN4kOGEdrjki K25S3hd4f8nCouAxm9+wv2RhELNfVmHB2aP54gofnqTJPLnuL5L1AUIfr8JcYF0FOZtzmJhG waJaOS3nUbhgywRIiJmDQ0kc3bAiKzmzLjLOLVeufJQsBdGw9LNwGfKMvTz88c3TV8+Q2NFg OPIGP3jDHxD6d5bobplz9hzYGI+P+TplH678Aj6RMX+yu2sv+by8nDr24aufP7159+r86OmL l399+vr82eFf3v14yz5/ZgN3smvHSVbG0wE9pcElz+iZFwuUM8h4avnwxcdvfRR5bsHrfJVV r9F08lWQ8RbAKFnUAWEgiFoA4Z0GJJL/66ejw1u/X4e6Lni2TrPLbD21rj38EsZB5PF1GQVF klkTtscI5jHyf6ExBmkKGg2KMIn9ZFHwwsuLjAdrxPmhTAq+zPk6nC5WmTP6/ntXj6bZopCj f8TRDAhPlhxFtLufBmB0WUzEsekuYw78Z13n7LPvLrIkLoL5yZl/+tDusukB6xb8uvCvPfmm 22N7XYL310E8Wz7wu6z6QXiTZuA1Sy4uPADt9nbkxFl/tjw5m/VPH9jdr5gIfOzm5Zy9y0Hb 7BOMrG8cm2dZkrlsyp6cT2AozcK4YG+Pnx2+ecPEy541i2exxcILOQB4GoDWu5yPmT1gjzwv WCAB05+fvjxgJ55H1njKTo5eHB16x/94fTg+OXz115+evXj14/j09PmLl4fspN/vn9IaGxRY P6WILR+3vmRMLKaEIELJDbtaBYV6VSTgz+iT4M3gN+glOXPARoIyKqYfQ37lbsFNlGvNzDn7 yLN5AjiCeVIWtEg3Z5dJGF8C/i1IpG9JJOEleB0giG/YzFokaZiUOeBKy2JmsWWYcaD5I9AX xEsWc1iPoa8HAExYZtbWVcCXNan/U+aFBJkDocsk7haMX/NFCbERgxoExDUu4QD2izJiV2Gx YlJV7dJoHTwCL/OOwQu2agf4zAtYKciWFL4pdoNgcxAE2amKvBdJtmaPFlGQ5wf+I7BSBDwA msDqtvJcVLmjx0LQSBhFqKclFwECovNFlqzFAqD3OAAKwBl5nIeosFbEhzE4Oqh0G0+r5Eoj ZA5KEUl1q5TCEQEs7VDqmFmXv4XpzOrB07z2NNqqTUSK5gEBj+c5WAaEWJaXaZpkEJpcIZV7 8b9lgS9LBSbxa0Ap4wN7zIZsTHnjVgQRJabnSYapSIcTxFhFk/UNhAwJSUiBbgHDpv9ka3/W v/zN9l2azSpQmE9iI+Jv26bNt02bf2Ha6I55o+0T/3vLNKUkOXNT1p4wlJlF6ECXaCcaAwyr Z7IGirEi7nz3XUN0kILKLDYHpSre8GB5JBIehI42RVSzyxjCX868jBFASyQHihEhUlel4AYT EK9rxCLzScpjB4M8xvi3PesRwVou1htQHoFjoSGNIfaU0ZKMF/Lw0hAMWLXdkQYL1Rt61yON 70BJf7ECiU/oMfdne/0Htu+LrzHYMClu7Z/Nchh3iTtQ2Pk0Wjj2uSvgUDjIVO8JTMhRRDmk zUICQyDiwWLFHPlWrApI1krCn+zzW5hEOJQ8wVfyIm8AieVupUktIkwdmqG69mTFu92JIvBm tDfr25VpVtX30KQoGn8vPQps7VoEbT30faIB2RTDguM+yPncUK/k2IAjTxXSQU9Fzc/2fENv huTECCKqVLOBYTazN6f/E41tpk3tlvEo5+1AE98oLP3LZNIGtO8bdaYBlJb5ij2RquoZbG4y 0rArIWBtVbgxqMVl3CFAqVwzK8degep6dgHr9WyIYxfhdc/Oywv6vFjBG7GtIM/RKIgIpQqs pCjTViuQHZq4tY85/n7u9zRkbyRg5dIMvQpnoal1uxPjDdhB9+/yR7wQVNIUXKKa4iDhTFMO AGpz5CgW2fHR62cv3mDNPOyxt++eP3/xd/wikbq1cCsRacm+DT7ytwW4lBbtOigWq7pc5aSe HayLnj0vLySjchypHgrDo8nC8jARK9FMnf6Dxy4Ys2N/nri+VICerdTr1DREjgu8YVHdsw7U u7t89yrD/TI4r4Rt+C9UzjLpASOwLrq6A8HlxSviqjccjP44GMjAKkKPXJ/he/JpmEnJUQUD QtWZMjGNzFcRfbfkn3EsrGpWzYWUVUoEeVPRX1eGgIEsLZWgNMAFdj0Crtk56z/wO53Jzs4e kLFOPnIWyfgpqvMkC3lenzLry70YztPTdIrXlVVjoVn/sZjX2c/lRGpGMKrHqCKn76skWvLM oLuMweWE8RAHjH9gXa/rqlTRZiXSRNryw5IbtYg0AShRTJNoZAjAsgfqhgAQxu8NC4TRfEWW lReyEg0WC57CpjeiCl+US6Bvi4lND4MtToyoRf7c1D2xqfiE8Ad8YmHUYR6X+iPblmonScgl um5Vb1a6+CDrShXgN6VYBfUMN/csv8nBJ8U05i3ZwexvWjCHVns6aJ25YDBTCPiwHcuuxLRJ 8/zbaJ5/M81zRfOjf4/o0TdSPfp2skf/Lt26pP960stYTf4G4o3J96ZeIaPg/jwogmgMfvk+ Tq7iLZsMFhTVXkVSABHBwUd/9P2fKIwQx/iOwrRco7FNbmYSiiPcjCJmIqG1qIUG643UAmLg ERvJDLIRUmhUxARN9B7Vj+tkyQZ/Ggx0jYLhZ5lAjAgizFI32JhVAfCOpEL72HpSWcqkUs8t 9Zyis8lGPDXFvqzFU66j6f9GaKL4svzquGROI1vj/wE/qRn619DcNvEuqv8f+YdoC5n+4UT8 opC2IS3F/Sp3aTiGMvFl3cBV/aFaBFXxdF00qtabVBi1qu1tdCi9p1WM1voNjtHAl2Q13lcn Ae3vqyOF9vfViYR8X6cKOBhWCoMhLO2qfTju/JHR2y3eqqRDirnGNuw6SHPsGiMOjwSGtdBN ulEHGUHlJtXyfi0OBzak3dzTO/Z7ftOzPwaRkLmsjo1hAKZWRO28oeZsukPVwVmdsHK4L3Wh WpmERVuYrCyNIYS5+2yTaGOhZQIqQvtfJDE1eWFRbAsLH5ScbRGslimG53sIlAwaRkzBzPrO yZkPdfZD1+4ISVORDJgmymLQyTbcRKKjQw/RMFCgDQ0rSlRvQqM2rEO44xNx+AAEAiFVo+np mx9/FprbEGYaZDmGKPikzWGGkj1vURL1vTpnjrf67HkrHqXIrbQGOu9xpPNgV9cRWy8d12Gi 59GGE7edxsw6Pb8EWYyNcUZb/pAq7uQCKRpO7RHoGvY9WRYugUWwk5Ks4JM9vNXkOjbD79Ta FE8QP20VzcQQYNpC23+WrGGdqmGTKDCq8elDX3yM5UdFIfVxSN090cAy5zq1ye4Yhd6p9jXn Cgsaqtqsnk/0kDRDezjZgBpVQzJ5NPr0eivYpBJkgnhvx/YnnImf+OLWmrSI/A43p50cln5B npdr1UUWIUaeVogTSqkjsWqLRdfy9xZJ3IPHytl11MRZVaSkIwqFW3UESPNc79Z9ucd/qDuA VTQwY5Msf9z2UqZ1gglfkSiOlHQwv7+eGmtu8RRVAlWqwd15rYVb5qqG1afp+ryqhaYKaitl lDEgCu5BAMWutThuxHwAId5bBFFEGanASxrybkh/d9slBnDQWktCVyyqAfRJlWkDkQfocN4h ht3HeOpbhRM5Z2rhsFVz1tbZOeffPhmMv2XyQlWdd87ly7BtMg7fZ+VVEF+2UX7f+aKx0ka9 7Op8GQfZYwsGGr8PDZAzi3uRwLfrB43Qlj12zMZkY9K+3kKdaL6rX0mRN5jELRb1pXG5xRw2 LseYw8aA7qPrRY3KQPbMx35Pv3UF58ahkTjYApaqgoK80q1a/3jYRVGvp4umtX9GSXWsf7s2 hbZ6xHidJQugDkNBI+BD9DZqY9rOqE3U1BKrPabfYyuGct3qWe7mWdOuWceK9l6tvm1p6zXb fWi8xkYTp2EOFXx+2t3BAUirV8bQlq1anMhueIqH5zltCjAs1hmnELjz5f3Zjjpo2rmVpGmz JJpEr/7w7TE26kWXXhInO+LwSqBRTRGZKXYqPP9XjLRlGilnU/TbiMtLsNI2Yr5ISnV0p6jQ C2f3WJgOKu8hlG+gQ++HwOGe0JkOVn48LrIbOnroGZXBRhHSVn8In4Cx6tRDH3cIV5aZToDX TkcVFiJIhQVBDHPU6aJxnQHHxempOnWayDLHPscYOPubPcTeCh1dzh5ANQS/Ls0ass5xVcOI EH5mn9uwORUkMQ0NqC8znjo+4BfMzA6nfk+9dlkjqVPXicJ4IwhQ+qz2dtgewIt6smwEdsU3 LQlx5uZUC1VFJt6M2lLxAujivXmSLngF2yE8rTvnRhS7g3rtSA7R4NI21jgcPAPNTPA8cPNc cMMXt6AwxdyOpjIl8ipCQ9TSQ5WOL4IIC4HQ3SIqdbUXyjl57WwscGzG/5ZIHxR0yCNJ7yDp yHn9upwmfXvLY/OGHVSWGf9QhhneDKOKFxbDnp8QS1vng+zn4UP11bw8II3GOO2FB4zV7qby MbkRgSZrU8VazPkyV5daNWtyR0g8/fTuuJ7kqC559uLt65dP/3FLUU8qCUqW6rIs845Zdz9X O4ouBegB05c0FXldtavYz7u6xK8SzYZoIZgqclnwESSkj/iyErtYNYbchmB3tEzbAqmu/wyT QLcRB3/qrnKbFNsNhCApFqEO6C5uGgVhbHanSXJ9EB373CqeatbYs2rqb57hIx0Fz4umg9W2 mwgw2Wa1WRnjJo0h0BivCbQZJb5kzGiMA9yBv+Qf/biMIjY6+G5o1YEPDqbsz1sWdSBB4WVY goTqzaGHznTw2CJPt8YW3oC33J7V1KVhkDhHGOJd6jXEpqo+y7Matq3DjX9ytn+6n/u6lDM6 eydnLPB+G3g/9Ppj/8n+2cPpuXcqeqBY1tzvYgXVN6gTedFEtFV29KWr9xAppmxAQ7JD25Hj ciFxLwOHaifuAp+on2oHWzJA7NTFIPKk39FImbF8frOuSsBeE4lZDyoLS69w3q/iDzuulr9O 1Eu6eOXge3eyfSELAXxRlm6uhx+3m9WnbArR9YUFXnUP45zlKw72COIPPNh/ZuBPPMsnLIhC +rsOSBBdhb/bDBOsyju576AluGAK9lBNwBKkVg1vAUeqBGxrJW5Y2+yz726ggkE8bZKHTfCt dVWKHhWcRcvtNAMZ7Va23ljYwHfQwLcRKPl9/Ma4EaIvL6lbSxOdN1qErATXlNoexn/S85oH qGR8DHJ0ZNjjiTKbrhjnuFSb/1drduSaRQfXhDDdkQtugjwHkJa3+5/IpW879vnU6lJetIe3 kMZAdb/6QD98dmddfLLPO5d8A8Fs5vTddtw4EX61vDEu+XUmHXWDbxMAL/h19gmgvVYSBRK1 5dpKJK1buuLfrHZoRs/sy8kjy0F7C7J2mmoUu9uPOmttyeaR59YGoyoAxREIxxPQ2PuNZ4m4 VS5OQvcQX510te3CN+bqoqaXDW8RTGt3hKpj/QYAPUgAfBYAUSAS8K3qQHRogfrZGl1cbOez 2lJC9S+LR0uUPlgDNRojaZBjrAuLnJI6W0DoMzupjcv59OMgnjX+rUhIx2bUMu+xYIk3bWXr dDrEPkxc+4sOvCTqtsv0D82t7B/adw/3YVVtgZDlHHgu42UL519LR015WrUIJb2rQjLUm105 Vm2Da4qt7bO/OhoL2o3Dh+q2iErGxpbcVcxusFCZZkPWJmSjTU4HdYo7QP0vUEsDBBQAAAAI AAuzM0HNd9SASgAAAE8AAAAPABwAdXJpX3VuZXNjYXBlLnBsVVQJAAP1KVpQ9rdtUHV4CwAB BOkDAAAE6QMAAFNW1C8tLtJPyszTL0gtylHQLefiKi1OVSguKcpMLrEGs0ODPK2sXIuTEwtS rbm4Cooy80oUSosy40vzUsGCGjbBIS6efnaa1lwAUEsDBBQAAAAIAPGSREHSm5QsEQEAAI4B AAAOABwAZmlsZW1hbmFnZXIuc2hVVAkAAwa4bVAGuG1QdXgLAAEE6QMAAATpAwAAXY9PS8Qw FMTv+RTjtrinNFvRi+CCB0EPIgjiwdXdbPraBvKnpAl0wQ9vulARc3q8+U3eTHEhjtqJsWcF K/Ae5DBQQOsD7AlDoJYCNWi1IVjpZEchY/dK0RDx9vqENnib5Qz6CdpBhi5ZchHSNTAyOdUj /2m0klF7N2b3TCnlQyOdIkQ/X6qs1EbJ4XypylnYPNwdSPUeZY1vjDnGehRf8/52J3ZCiHVe p6D3ydGYvVQN5sCYbvEB3mBVzugKnyz25Bjym3ikYLWThpNNRsZck3fkLcVwQl1vpusb8NxU LW5GZqSz1572ITm+5Fz0WSr+i5w3dEzdb4TtFuXjy/OD+ANVxne42l7WuSljNOmIDfsBUEsB Ah4DFAAAAAgAHEk7QeVqNYoxEQAArDkAAA4AGAAAAAAAAQAAAKSBAAAAAG15X3J1bi1tYWls Y2FwVVQFAAOH+2NQdXgLAAEE6QMAAATpAwAAUEsBAh4DFAAAAAgAC7MzQc131IBKAAAATwAA AA8AGAAAAAAAAQAAAKSBeREAAHVyaV91bmVzY2FwZS5wbFVUBQAD9SlaUHV4CwABBOkDAAAE 6QMAAFBLAQIeAxQAAAAIAPGSREHSm5QsEQEAAI4BAAAOABgAAAAAAAEAAACkgQwSAABmaWxl bWFuYWdlci5zaFVUBQADBrhtUHV4CwABBOkDAAAE6QMAAFBLBQYAAAAAAwADAP0AAABlEwAA AAA= --------------040309020305090105030408-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 16:38:06 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92B94106564A for ; Thu, 4 Oct 2012 16:38:06 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by mx1.freebsd.org (Postfix) with ESMTP id 1ADA28FC14 for ; Thu, 4 Oct 2012 16:38:05 +0000 (UTC) Received: by mail-wi0-f178.google.com with SMTP id hr7so829016wib.13 for ; Thu, 04 Oct 2012 09:38:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=2MinoYgr8pqH8E/FCOI9bwRFjkbPyuTzD5s0+bPZkpI=; b=H2wuPlOYmm7OPiCEAFKKptcuIXVHGpUHh1886/00e/boOfSM/ZAS+sMQJeViB0yeAi Hwpr3xWyRqhAj/zHLV5c2Pwx47PfZqEq1c2RvmETTZtLfFhGt3eK5TG4ATb9ExhcT9YT +lBWzEZu9XRqDvfqWW+x4ZTj7yI2JgG7xnlvD2vKxw7g7XglOg0ZNs4D0BG/2fcA7zN9 1br1QA6v1IE1oW2X5hch1hDe68z8dy3CFaA+Vrhu9mafiIT1SMGLsvqxvLt8oa3Zjm2R PefwrcYYcIQ0uvo0P9T1oNYOAS0eEJ3bsdmS0XDimMLgrCc6NZvvGU6N/b7zXxDTs7VX x5Bg== MIME-Version: 1.0 Received: by 10.180.73.76 with SMTP id j12mr14182018wiv.11.1349368685052; Thu, 04 Oct 2012 09:38:05 -0700 (PDT) Sender: bsd-src@helfman.org Received: by 10.194.81.136 with HTTP; Thu, 4 Oct 2012 09:38:05 -0700 (PDT) In-Reply-To: <20120731170004.GA42488@dormouse.experts-exchange.com> References: <20120731170004.GA42488@dormouse.experts-exchange.com> Date: Thu, 4 Oct 2012 09:38:05 -0700 X-Google-Sender-Auth: wajA_fOXCE6a10bKRsEuI15MZYU Message-ID: From: Jason Helfman To: Thomas Mueller X-Gm-Message-State: ALoCoQk4yuSEMbtIImI8v1Xgn7jeFPiIPCKJDLa4Z8R4qbn8yyXlEYk64+fUMqzcWBBMiL1Gsg13 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: sylvio@freebsd.org, freebsd-ports@freebsd.org Subject: Re: x11/xdialog: bad WWW link in Makefile 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, 04 Oct 2012 16:38:06 -0000 On Tue, Jul 31, 2012 at 10:00 AM, Jason Helfman wrote: > On Tue, Jul 31, 2012 at 03:46:51AM -0400, Thomas Mueller thus spake: > > I noticed an update to x11/xdialog on >> http://www.freshports.org/**commits.php: >> >> I ran portsnap fetch update , x11/xdialog/Makefile showed >> >> MASTER_SITES= http://thgodef.nerim.net/**xdialog/\ >> http://xdialog.free.fr/ >> >> The first of these is no good, but the second (xdialog.free.fr) is good. >> thgodef.nerim.net and nerim net both fail even with nslookup: invalid >> domains. >> >> Tom >> >> > Thanks for the report. I've submitted a pr for this. > > -jgh Committed! -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 18:30:17 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F363F106564A for ; Thu, 4 Oct 2012 18:30:16 +0000 (UTC) (envelope-from jamie@kode5.net) Received: from kontrol.kode5.net (kontrol.kode5.net [80.229.5.32]) by mx1.freebsd.org (Postfix) with ESMTP id CFE1D8FC0C for ; Thu, 4 Oct 2012 18:30:04 +0000 (UTC) Received: from kontrol.kode5.net (localhost [127.0.0.1]) by kontrol.kode5.net (8.14.5/8.14.5) with ESMTP id q94IU2F7071512 for ; Thu, 4 Oct 2012 19:30:02 +0100 (BST) (envelope-from jamie@kode5.net) Received: (from jamie@localhost) by kontrol.kode5.net (8.14.5/8.14.5/Submit) id q94IU22H071511 for freebsd-ports@freebsd.org; Thu, 4 Oct 2012 19:30:02 +0100 (BST) (envelope-from jamie@kode5.net) X-Authentication-Warning: kontrol.kode5.net: jamie set sender to jamie@kode5.net using -f Date: Thu, 4 Oct 2012 19:30:02 +0100 From: Jamie Paul Griffin To: freebsd-ports@freebsd.org Message-ID: <20121004183002.GB70000@kontrol.kode5.net> Mail-Followup-To: freebsd-ports@freebsd.org References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121004110258.3a188bdb@scorpio> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121004110258.3a188bdb@scorpio> x-operating-system: FreeBSD 9.1-PRERELEASE amd64 x-pgp-fingerprint: A4B9 E875 A18C 6E11 F46D B788 BEE6 1251 1D31 DC38 x-pgp-key: 1D31DC38 User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.97.6 at kontrol.kode5.net X-Virus-Status: Clean Subject: Re: flashplugin 11.2r202.238 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, 04 Oct 2012 18:30:17 -0000 [ Jerry wrote on Thu 4.Oct'12 at 11:02:58 -0400 ] > On Thu, 04 Oct 2012 05:30:06 -0800 > Beech Rintoul articulated: > > > On 10/1/2012 11:56 PM, Volodymyr Kostyrko wrote: > > > 01.10.2012 21:33, Jerry wrote: > > >> I just finished installing "linux-f10-flashplugin-11.2r202.238". > > >> For some inexplicable reason, it is no longer working. I followed > > >> the directions in "UPDATING" but without success. I even cleared > > >> out the entries in the "~/.mozilla/plugins" directory and reran > > >> the command without results. In fact, now nothing is listed in the > > >> directory and flash still doesn't work. Every time I reach a page > > >> that requires flash, I am greeted with a message telling me I need > > >> to download and install it. > > > > > > Could you please rerun nspluginwrapper -v -a -i? Is there anything > > > in the system log? > > > > I ran into the same problem. Tried for two days to get flash working > > on a client's FreeBSD box. No go. I finally just copied > > npwrapper.libflashplayer.so into .mozilla/plugins, firefox found it > > and now all works fine. seems nspluginwrapper -v -a -i is not > > populating .mozilla/plugins. > > Did you check the info at: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/book.html > > In particular, I ran into a problem with creating the link. I received > an error message stating the link existed; however, even if it did it > was not working correctly. I corrected it with this: > > ln -s -F /usr/local/lib/npapi/linux-f10-flashplugin/libflashplayer.so /usr/local/lib/browser_plugins/ > > I then ran: "nspluginwrapper -v -a -i" and all is well, or at least as > well as can be expected with Flash and FreeBSD. Not exactly a marriage > made in heaven. Yes, it is a bit of a PITA isn't it. I wish flashplayer could be replaced be something better that works on UNIX and all platforms for that matter. Maybe HTML 5 will enable people to do without this crap. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 19:17:01 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1248D1065670 for ; Thu, 4 Oct 2012 19:17:01 +0000 (UTC) (envelope-from jerry@seibercom.net) Received: from mail-yh0-f54.google.com (mail-yh0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9FBD48FC16 for ; Thu, 4 Oct 2012 19:17:00 +0000 (UTC) Received: by mail-yh0-f54.google.com with SMTP id s35so151350yhf.13 for ; Thu, 04 Oct 2012 12:16:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding; bh=NC/n63D5tVneANzjyrjxFa3zugXbMYRObOqE7GAQMtM=; b=dJyQNmCJvZkWSnq2aFccps6jzvKzQmHehlldF7TfBVYILoCoSzy7OYmPZJX+KQeJ7c AU8NpgJdhK3vhONJ0Z5y/mmEpiIswV8zn8WQxciXVoQo5TrCTeSwPVO8Wq8zYmiMKa79 HuC0UcM64UdPL7gGzqlahLh+1fIMpqHJ7tfvg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:reply-to :organization:x-mailer:face:mime-version:content-type :content-transfer-encoding:x-gm-message-state; bh=NC/n63D5tVneANzjyrjxFa3zugXbMYRObOqE7GAQMtM=; b=EFjOBRX8K3YXj/7TCh1G9d0mbra756qwtVMYhEM6gx//zsqfAIyWL1nPmgF+OYITe2 tvh/2EmpnzLSL/VqkAI1PMfcJhQ249bYzexdYyZUfw0GqUWodvvqyJe5gLcphj00EHxR cNJeTeak2G0uPCZymtzhRZFmbOG/k6c3yz6l6T8XNjbTgch7LVmW5a6GVtg9jQZAqeO4 k0gfWRDS4l4wh6/UL+gNWf+Ey9x3fZDEcmrTTQV8eym66/qoeM14nv4o8Av+hbCuiN0o Lw5ruuh3quvXfm6gX92LZLVY0cHCTmoRijaJF7gwW/vI2mu8c1Hbpl8Abzh2rZj95VAi Nr/g== Received: by 10.236.110.108 with SMTP id t72mr4322722yhg.32.1349378214477; Thu, 04 Oct 2012 12:16:54 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id i3sm7688942anl.0.2012.10.04.12.16.52 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 04 Oct 2012 12:16:53 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: jerry@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3XXkNz5rrGz2CG5b for ; Thu, 4 Oct 2012 15:16:51 -0400 (EDT) Date: Thu, 4 Oct 2012 15:16:51 -0400 From: Jerry To: freebsd-ports@freebsd.org Message-ID: <20121004151651.4a7bf445@scorpio> In-Reply-To: <20121004183002.GB70000@kontrol.kode5.net> References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121004110258.3a188bdb@scorpio> <20121004183002.GB70000@kontrol.kode5.net> Organization: seibercom.net X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQmQ3Yte+WcihpYfb2HCNcyYnK5vkPWuMgx1iexO+UGC9J/JlaRK2dw4sLxKaZI4y0lViCVr Subject: Re: flashplugin 11.2r202.238 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2012 19:17:01 -0000 On Thu, 4 Oct 2012 19:30:02 +0100 Jamie Paul Griffin articulated: > Yes, it is a bit of a PITA isn't it. I wish flashplayer could be > replaced be something better that works on UNIX and all platforms for > that matter. Maybe HTML 5 will enable people to do without this crap. This isn't a matter of replacing it, it is a matter of making it work. It works fine on Windows and Ubuntu and from what I have been told, most other flavors of Linux. Therefore it doesn't take a frigging Einstein to deduce where the problem lies. Of course, it is always easier to blame the other guy. -- Jerry â™” Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-ports@FreeBSD.ORG Thu Oct 4 20:33:57 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A2431065670; Thu, 4 Oct 2012 20:33:57 +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 B8F4D8FC17; Thu, 4 Oct 2012 20:33:56 +0000 (UTC) Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id C505928423; Thu, 4 Oct 2012 22:28:45 +0200 (CEST) Received: from [192.168.1.2] (static-84-242-120-26.net.upcbroadband.cz [84.242.120.26]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id B1B9628426; Thu, 4 Oct 2012 22:28:43 +0200 (CEST) Message-ID: <506DF17A.2070303@quip.cz> Date: Thu, 04 Oct 2012 22:28:42 +0200 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.1.19) Gecko/20110420 Lightning/1.0b1 SeaMonkey/2.0.14 MIME-Version: 1.0 To: pav@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: pear-Spreadsheet_Excel_Writer-0.9.2 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, 04 Oct 2012 20:33:57 -0000 The port has version 0.9.2 and 0.9.3 was released on 2012-01-26 http://pear.php.net/package/Spreadsheet_Excel_Writer Can the port be updated to 0.9.3 or is there any known problem with this newer version? Should I write a patch and send PR or are you able to do it? Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 00:39:02 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04A7B1065670 for ; Fri, 5 Oct 2012 00:39:02 +0000 (UTC) (envelope-from lkchen@k-state.edu) Received: from ksu-sfpop-proxy01.merit.edu (ksu-sfpop-proxy01.merit.edu [207.75.116.217]) by mx1.freebsd.org (Postfix) with ESMTP id C99598FC0C for ; Fri, 5 Oct 2012 00:39:01 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by ksu-sfpop-proxy01.merit.edu (Postfix) with ESMTP id 29F3A1280D3 for ; Thu, 4 Oct 2012 20:38:55 -0400 (EDT) X-Virus-Scanned: amavisd-new at ksu-sfpop-proxy01.merit.edu Received: from ksu-sfpop-proxy01.merit.edu ([127.0.0.1]) by localhost (ksu-sfpop-proxy01.merit.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YJ+1yIMBowiW for ; Thu, 4 Oct 2012 20:38:50 -0400 (EDT) Received: from ksu-sfpop-mailstore02.merit.edu (ksu-sfpop-mailstore02.merit.edu [10.108.1.211]) by ksu-sfpop-proxy01.merit.edu (Postfix) with ESMTP id 797351280C1 for ; Thu, 4 Oct 2012 20:38:50 -0400 (EDT) Date: Thu, 4 Oct 2012 20:38:50 -0400 (EDT) From: "Lawrence K. Chen, P.Eng." To: ports@FreeBSD.org Message-ID: <889434050.12841250.1349397530299.JavaMail.root@k-state.edu> In-Reply-To: <257237997.10964075.1348870949234.JavaMail.root@k-state.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [129.130.0.181] X-Mailer: Zimbra 7.2.0_GA_2681 (ZimbraWebClient - GC22 ([unknown])/7.2.0_GA_2681) Cc: Subject: Re: CFT: x11/nvidia-driver major update to 304.xx series 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, 05 Oct 2012 00:39:02 -0000 I realized there was one other difference between my home and work machine. At home I had used "WITH_NEW_XORG=YES" (and "WITH_KMS=YES") before I ended up buying an nvidia card to finally get things working. So, I tried the same at work....took a while to rebuild recursive (partly because at one point started an upward-recursive).... but now things are working again with 304.51. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 08:24:14 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 189B2106566C for ; Fri, 5 Oct 2012 08:24:14 +0000 (UTC) (envelope-from ohartman@mail.zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id C7A458FC12 for ; Fri, 5 Oct 2012 08:24:13 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) for freebsd-ports@FreeBSD.org with esmtp (envelope-from ) id <1TK3CZ-001BI0-4x>; Fri, 05 Oct 2012 10:24:07 +0200 Received: from telesto.geoinf.fu-berlin.de ([130.133.86.198]) by inpost2.zedat.fu-berlin.de (Exim 4.69) for freebsd-ports@FreeBSD.org with esmtpsa (envelope-from ) id <1TK3CZ-0028cD-3V>; Fri, 05 Oct 2012 10:24:07 +0200 Message-ID: <506E9927.8030001@mail.zedat.fu-berlin.de> Date: Fri, 05 Oct 2012 10:24:07 +0200 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Ports FreeBSD X-Enigmail-Version: 1.4.3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Originating-IP: 130.133.86.198 Cc: Subject: ports-mgmt/portupgrade: ** Database file locked. Waiting. 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, 05 Oct 2012 08:24:14 -0000 Using pkg(ng) in conjunction with the port ports/mgmt/portupgrade results in long waiting cycles when portupgrade is updating the local database, it is even on fast boxes sometimes in the range of a minute or even two. Is this usual or is there something wrong with my setup? Regards, Oliver --- [Updating the pkgdb in /var/db/pkg ... - 1114 packages found (-0 +1) . done] ---> Cleaning out obsolete shared libraries [Updating the pkgdb in /var/db/pkg ... USING PKGNG ** Database file locked. Waiting. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 08:33:50 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A13D106566C; Fri, 5 Oct 2012 08:33:50 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 3267D8FC0A; Fri, 5 Oct 2012 08:33:48 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id LAA27471; Fri, 05 Oct 2012 11:33:47 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TK3Lv-000Op3-Cc; Fri, 05 Oct 2012 11:33:47 +0300 Message-ID: <506E9B69.4040406@FreeBSD.org> Date: Fri, 05 Oct 2012 11:33:45 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120913 Thunderbird/15.0.1 MIME-Version: 1.0 To: glarkin@FreeBSD.org X-Enigmail-Version: 1.4.3 Content-Type: text/plain; charset=X-VIET-VPS Content-Transfer-Encoding: 7bit Cc: freebsd-ports@FreeBSD.org Subject: conflict between devel/patch and gettext ? 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, 05 Oct 2012 08:33:50 -0000 At least pkgng reports/detects it: pkg: patch-2.7 conflicts with gettext-0.18.1.1 (installs files into the same place). Problematic file: /usr/local/lib/charset.alias -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 08:41:04 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F4D31065676 for ; Fri, 5 Oct 2012 08:41:04 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 18B868FC16 for ; Fri, 5 Oct 2012 08:41:02 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id LAA27550; Fri, 05 Oct 2012 11:40:53 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TK3Sn-000Opw-I8; Fri, 05 Oct 2012 11:40:53 +0300 Message-ID: <506E9D14.20302@FreeBSD.org> Date: Fri, 05 Oct 2012 11:40:52 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120913 Thunderbird/15.0.1 MIME-Version: 1.0 To: "Mikhail T." X-Enigmail-Version: 1.4.3 Content-Type: text/plain; charset=X-VIET-VPS Content-Transfer-Encoding: 7bit Cc: FreeBSD Ports Subject: graphics/libfpx fails with gcc46 because of new warnings 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, 05 Oct 2012 08:41:05 -0000 files/Makefile.bsd has WARNS=3, but: /usr/obj/ports/usr/ports/graphics/libfpx/work/libfpx-1.3.1-1/ri_image/ptile.cpp: In static member function 'static void PTile::FreeAncientBuffers(long int)': /usr/obj/ports/usr/ports/graphics/libfpx/work/libfpx-1.3.1-1/ri_image/ptile.cpp:778:24: error: variable 'timeNow' set but not used [-Werror=unused-but-set-variable] /usr/obj/ports/usr/ports/graphics/libfpx/work/libfpx-1.3.1-1/ri_image/ptile.cpp: In static member function 'static void PTile::FreeAncientBuffers(long int)': /usr/obj/ports/usr/ports/graphics/libfpx/work/libfpx-1.3.1-1/ri_image/ptile.cpp:778:24: error: variable 'timeNow' set but not used [-Werror=unused-but-set-variable] WARNS=1 helps... -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 10:27:18 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CB1E106571A for ; Fri, 5 Oct 2012 10:27:18 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id DE1C68FC08 for ; Fri, 5 Oct 2012 10:27:17 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so1867879pbb.13 for ; Fri, 05 Oct 2012 03:27:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=ZGwoo2aADf+BCrWLw62g0VcbufHDqSSH9xrJae5PbBk=; b=vNFVxMvhZqY6aVR1X4QpIen5Nq+NQRcIhBIsaoz1Q0QdEncVgt9CsaDSIHgY9jg3Zc G+NF5C0KW0UgxXnBdC/J1wab9Vl4l3ICH1KQVmWRbKoDJMiEehRXt60SxX1DWTKcewgV w8ChzQcSW0zZaFanLYzvsYzFYmCcbvKImhiyXUXgAudUpfUwCtVnwKoYyaJcH27dUP5S 2ILAcJlEwWtfdgztxzer2e5X7Lckb+Pv0vs1YyLb45YQUV0IPOJOI84Buec4Qke5rC85 J87cBAmOXnGty1KHp55isRl49X/xyexObwUiwq8patH2XYmQlbeORjDBfe1wpZn9/aP4 RpBw== Received: by 10.66.77.199 with SMTP id u7mr8165016paw.7.1349432837340; Fri, 05 Oct 2012 03:27:17 -0700 (PDT) Received: from [192.168.1.128] (mau.donbass.com. [92.242.127.250]) by mx.google.com with ESMTPS id n3sm4691788paz.25.2012.10.05.03.27.15 (version=SSLv3 cipher=OTHER); Fri, 05 Oct 2012 03:27:16 -0700 (PDT) Message-ID: <506EB600.4020402@gmail.com> Date: Fri, 05 Oct 2012 13:27:12 +0300 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120924 Thunderbird/15.0.1 MIME-Version: 1.0 To: Brett References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121005004703.063c630d.brett.mahar@gmx.com> In-Reply-To: <20121005004703.063c630d.brett.mahar@gmx.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: No package for linux-f10-flashplugin-11 9.0-RELEASE, source code unavailable 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, 05 Oct 2012 10:27:18 -0000 04.10.2012 17:47, Brett wrote: > Has Adobe possibly pulled permission for this to be distributed? > > => Attempting to fetch http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.55/install_flash_player_11_linux.i386.tar.gz > fetch: http://fpdownload.macromedia.com/get/flashplayer/pdc/11.1.102.55/install_flash_player_11_linux.i386.tar.gz: Not Found > => Attempting to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/11.1r102.55/install_flash_player_11_linux.i386.tar.gz > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/flashplugin/11.1r102.55/install_flash_player_11_linux.i386.tar.gz: File unavailable (e.g., file not found, no access) > => Couldn't fetch it - please try to retrieve this > => port manually into /usr/ports/distfiles/flashplugin/11.1r102.55 and try again. > > There is no package on the servers if I try to install this with pkg_add, either. Could the distfile or package be available somewhere else? One more man bitten by SSE2 code in recent flash versions? Anyway, http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html contains a list of old flash player versions. The file in the archive is not named precisely as distfile specifies but sha256 is correct. If you want to try something newer it maybe woth resurrecting flashplugin10 port and bumping it to use version 10.3.183.23 which is newer then 11.1.102.55. But that was the last version that supported linux. -- Sphinx of black quartz, judge my vow. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 10:40:15 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21D811065670 for ; Fri, 5 Oct 2012 10:40:15 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id E35DC8FC0A for ; Fri, 5 Oct 2012 10:40:14 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so1881231pbb.13 for ; Fri, 05 Oct 2012 03:40:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=LB13axtzxNJ30Gw0yKIaHEBzj+//QkIibdBJBIU03dU=; b=cVcUIb+DGCZVe0vnb6fi74Yed1fRaoSZYORxWPR9Gb5s4i2EfrGTm1d+1L3sjvqCGf 76qT45oIw/SiGOCRYup2Jw0hcOiWnOBxyQOolxTo4XNqsgE96EUGLTyo8SX1cHSXZe6t 585s1v15EKZfUO+WnJ2crkNOPer69GhcK+Hz1lnpDgyax0jacq3AyBxaXENqC7v4Tw2u /5OaEdiEWao5kAxENSCkL6qGAaqfHp1XXUW2f+qeTNmXViEry0HFnXbNDUNBV7HvB2q5 MuHIqCTrU/AzhgWoYSQB6vBQ/N9HdSKhQ/BCA9R6VBAb8GmrIXN1NvlHImWcOBfwnMAC 7H/g== Received: by 10.66.78.199 with SMTP id d7mr20448807pax.77.1349433614245; Fri, 05 Oct 2012 03:40:14 -0700 (PDT) Received: from [192.168.1.128] (mau.donbass.com. [92.242.127.250]) by mx.google.com with ESMTPS id kr4sm1340721pbc.76.2012.10.05.03.40.12 (version=SSLv3 cipher=OTHER); Fri, 05 Oct 2012 03:40:13 -0700 (PDT) Message-ID: <506EB909.6070404@gmail.com> Date: Fri, 05 Oct 2012 13:40:09 +0300 From: Volodymyr Kostyrko User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120924 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121004110258.3a188bdb@scorpio> <20121004183002.GB70000@kontrol.kode5.net> <20121004151651.4a7bf445@scorpio> In-Reply-To: <20121004151651.4a7bf445@scorpio> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Jerry Subject: Re: flashplugin 11.2r202.238 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, 05 Oct 2012 10:40:15 -0000 04.10.2012 22:16, Jerry wrote: >> Yes, it is a bit of a PITA isn't it. I wish flashplayer could be >> replaced be something better that works on UNIX and all platforms for >> that matter. Maybe HTML 5 will enable people to do without this crap. > > This isn't a matter of replacing it, it is a matter of making it work. > It works fine on Windows and Ubuntu and from what I have been told, > most other flavors of Linux. Therefore it doesn't take a frigging > Einstein to deduce where the problem lies. Of course, it is always > easier to blame the other guy. "Just works" is not about flash plugin and never was. 1. Each update fixes another exploit. What about code quality? Would there be any progress in it? 2. https://github.com/kripken/BananaBread/ works on my computer. Yet my computer is too slow to run flash scrollers. Flash is ancient, slow and ugly. 3. I can run current flash on my computer under windows, but linux version has already dumped my hardware. I ought to stick to older one for flash support. 4. Have you ever tried hitting adobe support forums? Your yell would be forgotten quickly. And FreeBSD never was supported by flash. 5. Adobe sees no future in flash. End of support of npapi for Linux version was already announced. There are a number of projects that try to deal with flash like swfdec, gnash or lightscribe. I still think emscripten is a right way to go. -- Sphinx of black quartz, judge my vow. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 14:05:37 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED084106566C; Fri, 5 Oct 2012 14:05:37 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D42AF8FC18; Fri, 5 Oct 2012 14:05:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q95E5bH4060789; Fri, 5 Oct 2012 14:05:37 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q95E5brc060788; Fri, 5 Oct 2012 14:05:37 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Fri, 5 Oct 2012 16:05:35 +0200 From: Baptiste Daroussin To: ports@FreeBSD.org Message-ID: <20121005140534.GB61272@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+g7M9IMkV8truYOl" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 14:05:38 -0000 --+g7M9IMkV8truYOl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, I want to propose and make the actual move of the WWW information from the pkg-descr to the Makefile itself via a WWW variable. doing this will have multiple benefits: * consistency all metadata bug this one are in Makefile * speedup make describe avoiding using grep to get the informations (make describe itself does not need speed but make index heavily use it and this will definitly benefit from speed up) * Third party tool will be able to probe the information more easily. Do anyone have any concern about this? regards, Bapt --+g7M9IMkV8truYOl Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBu6S4ACgkQ8kTtMUmk6EzGuwCfTub92C7akzc02URg/FiH9uwN 5CUAn1zOIR5pSXPMfXmoJKLa80vja40+ =AVml -----END PGP SIGNATURE----- --+g7M9IMkV8truYOl-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 14:12:26 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A745106566B; Fri, 5 Oct 2012 14:12:26 +0000 (UTC) (envelope-from tijl@coosemans.org) Received: from mailrelay002.isp.belgacom.be (mailrelay002.isp.belgacom.be [195.238.6.175]) by mx1.freebsd.org (Postfix) with ESMTP id 681868FC16; Fri, 5 Oct 2012 14:12:25 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av8EADbpblBbsRJX/2dsb2JhbABFu1yDQ4EJgiABAQUnLyIBEAsOCgkWDwkDAgECASceBg0BBwEBiAW4KYs+hgkDjm6BIJYLgm8 Received: from 87.18-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.18.87]) by relay.skynet.be with ESMTP; 05 Oct 2012 16:11:15 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.5/8.14.5) with ESMTP id q95EBDi0002952; Fri, 5 Oct 2012 16:11:14 +0200 (CEST) (envelope-from tijl@coosemans.org) Message-ID: <506EEA7C.2020307@coosemans.org> Date: Fri, 05 Oct 2012 16:11:08 +0200 From: Tijl Coosemans User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120920 Thunderbird/15.0.1 MIME-Version: 1.0 To: Shane Ambler References: <506B3E9A.1000905@ShaneWare.Biz> In-Reply-To: <506B3E9A.1000905@ShaneWare.Biz> X-Enigmail-Version: 1.4.3 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig14D90F358845505602CBF7E9" Cc: gerald@freebsd.org, FreeBSD-ports Subject: Re: Possible regression in i386 build with gcc 4.6 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, 05 Oct 2012 14:12:26 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig14D90F358845505602CBF7E9 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 02-10-2012 21:20, Shane Ambler wrote: > I found a situation where gcc v4.2 compiles a i386 working binary and > v4.6 doesn't. (Currently 4.7 and 4.8 fail to build this code) I have > verified that this happens with 8.2/8.3/9.0 i386 systems. x86_64 > versions build without issue as does clang i386/x86_64. >=20 > It appears that the x86_64 target of gcc offers gcc atomics while the > i386 target doesn't - and this appears to be a freebsd specific setup, > the i386 targets then fall back to using tbb atomics. >=20 > Is this some subtle bug I'm missing? can it be alleviated with compiler= > flags/more universal code? >=20 > I have tried to cut this down to just the call that triggers a > segmentation fault but the one call itself isn't enough. >=20 > The issue can be found in graphics/openimageio. The easiest way I know > to cause the segmentation fault is with the image viewer that is part o= f > the port (it is a Qt app) it seg faults during startup. There is no nee= d > to open any images just starting iv with an empty window is fine. >=20 > The makefile is setup to USE_GCC=3D4.6+ for i386/8.2 - this is a leftov= er > from earlier versions that will be removed next update. >=20 > cd /usr/ports/graphics/openimageio > make > ./work/.build/iv/iv >=20 > The error appears to stem from line 193 of src/libutil/ustring.cpp >=20 > atomic_exchange_and_add (&ustring_stats_constructed, 1); >=20 > Commenting this line prevents the crash but isn't a valid fix. > the relevant function it calls is -- src/include/thread.h:283 > which uses the atomic class template from tbb for the i386 build. >=20 > inline long long > atomic_exchange_and_add (volatile long long *at, long long x) > { > #ifdef USE_GCC_ATOMICS > return __sync_fetch_and_add (at, x); > #elif USE_TBB > atomic *a =3D (atomic *)at; > return a->fetch_and_add (x); > #elif defined(__APPLE__) > > #endif > } Atomic operations on long long require cmpxchg8b instruction which was added to the i586, so if you add -march=3Di586 to CFLAGS you should be able to use gcc atomics on FreeBSD/i386 as well. --------------enig14D90F358845505602CBF7E9 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iF4EAREIAAYFAlBu6oEACgkQfoCS2CCgtivlZgD+NY/uNU3qgi//14Bh8OBTkut8 wqCn2KWqsCr9DPtb9KcA/icIr/c7WKaP78eclx8aA4v1SAU+wWpDB5OwvGQxlA4V =Uk7J -----END PGP SIGNATURE----- --------------enig14D90F358845505602CBF7E9-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 14:25:38 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA3A1106566B for ; Fri, 5 Oct 2012 14:25:38 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 85ECC8FC14 for ; Fri, 5 Oct 2012 14:25:38 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so2155240pbb.13 for ; Fri, 05 Oct 2012 07:25:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=CXgSacAO2vXG5ohKT0Qpy5j5oDPTvipFcsWwyeygK8Q=; b=MvQ3uGR39W2+nZpPaxzD+BcR0n4ev/ocGbV+I+31PbUDlX2Y84/b7xIceK9rFPWBL+ 7TiR4Vrf2uSBXi7mrv6lR0ub8bSqztTY0T8s4Gy/od6cg3+h49rsaOb413Tt4qJ0EL/F WRIqW9tzOBuF85uCnYEL614Ohhy2ObkHZMfak= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=CXgSacAO2vXG5ohKT0Qpy5j5oDPTvipFcsWwyeygK8Q=; b=oDSVlHmk1FkOPNVkExvAjLOxzHnAF9LutYI+wsxwqhAZu1JWa6t/nsBJ3lg0SgzESL VGvUAoABPV7T9uvkmr4rJFVQN5nXKCzYcfQQNr2jDkfn6iBeXUGm4hdRESDs3q+inJA+ 9rgSjyDr2HKoFnoNb17vVgA4m9puCntJYFQRA20O8DiQbyqD5cIEfNjRLlz3Plvpn91D lpFLWCCo1jToVyQtT1kn8lrYBivf7sy5djh7fHs9l3IOLa2mFtw7tiSe3a7KyO4lcMRF 4QIaj8lsn1Wsighyn9dGJtUV6I3rcxwgpC6I3P9S6PqvPOGDWYnh65wJgOZ0473hIYHs 2A8Q== Received: by 10.68.242.231 with SMTP id wt7mr30971493pbc.99.1349447137977; Fri, 05 Oct 2012 07:25:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.190.164 with HTTP; Fri, 5 Oct 2012 07:25:07 -0700 (PDT) In-Reply-To: <20121005140534.GB61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> From: Eitan Adler Date: Fri, 5 Oct 2012 10:25:07 -0400 Message-ID: To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQk2KaXmP8yntYOwoaTQgvKos/HdSa95OKBykoTXmScEnldPoqU4WU5UCX/DfNWTARxAoRKl Cc: ports@freebsd.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 14:25:38 -0000 On 5 October 2012 10:05, Baptiste Daroussin wrote: > Hi, > > I want to propose and make the actual move of the WWW information from the > pkg-descr to the Makefile itself via a WWW variable. > > doing this will have multiple benefits: > * consistency all metadata bug this one are in Makefile > * speedup make describe avoiding using grep to get the informations (make > describe itself does not need speed but make index heavily use it and this > will definitly benefit from speed up) > * Third party tool will be able to probe the information more easily. > > Do anyone have any concern about this? I've brought this up before in private, but I figure this is a good time to mention it. I'd prefer to see a more generic way of supplying * arbitrary* meta-data about ports in the makefile. For example something like META= WWW=https://example.com \ CHANGELOG=https://example.com/cl \ DESKTOP=kde \ REDPORTS=some-special-options \ PORTSCOUT=some-other-tool etc. I don't see a reason to treat the website as something special. That said, I don't object to plan of moving the current WWW line to the Makefile. I'm not sure why it was in pkg-descr in the first place. -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 14:37:02 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 19A5E106566B for ; Fri, 5 Oct 2012 14:37:02 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from mx1b.lautre.net (mx1b.lautre.net [80.67.160.72]) by mx1.freebsd.org (Postfix) with ESMTP id C8CD68FC12 for ; Fri, 5 Oct 2012 14:37:01 +0000 (UTC) Received: from graf.pompo.net (graf.pompo.net [78.225.128.39]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: thierry@pompo.net) by mx1b.lautre.net (Postfix) with ESMTPSA id A9EDB7E07F for ; Fri, 5 Oct 2012 16:36:58 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id 758801145A; Fri, 5 Oct 2012 16:36:46 +0200 (CEST) Date: Fri, 5 Oct 2012 16:36:46 +0200 From: Thierry Thomas To: ports@FreeBSD.org Message-ID: <20121005143646.GA97480@graf.pompo.net> Mail-Followup-To: ports@FreeBSD.org References: <20121005140534.GB61272@ithaqua.etoilebsd.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="azLHFNyN32YCQGCU" Content-Disposition: inline In-Reply-To: <20121005140534.GB61272@ithaqua.etoilebsd.net> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 9.0-STABLE i386 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xC71405A2 Cc: Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 14:37:02 -0000 --azLHFNyN32YCQGCU Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le ven 5 oct 12 =E0 16:05:35 +0200, Baptiste Daroussin =E9crivait=A0: > Hi, Hello, > I want to propose and make the actual move of the WWW information from the > pkg-descr to the Makefile itself via a WWW variable. Good idea! But just a warning: some pkg-desc may contain two URLs. Regards, --=20 Th. Thomas. --azLHFNyN32YCQGCU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAlBu8H4ACgkQc95pjMcUBaJCHQCeIYmf8o5v/sikjmWeA0J4ZDAy mxkAmwYbzpldgs590TZFYF992w6NBZ+U =xHR4 -----END PGP SIGNATURE----- --azLHFNyN32YCQGCU-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 14:41:48 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B6A1106566C for ; Fri, 5 Oct 2012 14:41:48 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward2h.mail.yandex.net (forward2h.mail.yandex.net [IPv6:2a02:6b8:0:f05::2]) by mx1.freebsd.org (Postfix) with ESMTP id 77D248FC12 for ; Fri, 5 Oct 2012 14:41:47 +0000 (UTC) Received: from smtp4h.mail.yandex.net (smtp4h.mail.yandex.net [84.201.186.21]) by forward2h.mail.yandex.net (Yandex) with ESMTP id B70DE701546 for ; Fri, 5 Oct 2012 18:41:38 +0400 (MSK) Received: from smtp4h.mail.yandex.net (localhost [127.0.0.1]) by smtp4h.mail.yandex.net (Yandex) with ESMTP id 995D22C0226 for ; Fri, 5 Oct 2012 18:41:38 +0400 (MSK) Received: from unknown (unknown [77.66.155.61]) by smtp4h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id fbHOZQAD-fbHOw5IN; Fri, 5 Oct 2012 18:41:37 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1349448098; bh=SsiL0LzAmQOI5VGAlecd+IArZT+9yrjib+H8opCqpag=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=s3KvFtGTdDomKhgIMcbvEdduzkiquRuC8MDm6MUfNcgl1nj9YDRRwwmpZ+AHGGfRf 7Jr748d4HKQpys2JSaw7C8GcPuMLum02Rvcur6ew+hf9dXbw2odSXNlfUzxJiJuuEL D3FCjPJndMPLbxeCeG7ITFd458W01jcKpPxvxEpI= Message-ID: <506EF198.3050905@yandex.ru> Date: Fri, 05 Oct 2012 18:41:28 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: ports@FreeBSD.org References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005143646.GA97480@graf.pompo.net> In-Reply-To: <20121005143646.GA97480@graf.pompo.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 14:41:48 -0000 Thierry Thomas wrote on 05.10.2012 18:36: > Le ven 5 oct 12 à 16:05:35 +0200, Baptiste Daroussin > écrivait : >> Hi, > > Hello, > >> I want to propose and make the actual move of the WWW information from the >> pkg-descr to the Makefile itself via a WWW variable. > > Good idea! > > But just a warning: some pkg-desc may contain two URLs. > > Regards, I examined this right after it was proposed on developers@. We have generally five types of urls in pkg-descr: 1. no WWW at all (for dead projects) 2. WWW: http://url 3. WWW: http://url WWW: http://url 4. WWW: http://url http://url 5. RG: http://url (for some rubygem-* ports) -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 14:56:33 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B8641065670; Fri, 5 Oct 2012 14:56:33 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (mail1.sourcehosting.net [74.205.51.45]) by mx1.freebsd.org (Postfix) with ESMTP id 6CBA58FC16; Fri, 5 Oct 2012 14:56:33 +0000 (UTC) Received: from 24-181-237-39.dhcp.oxfr.ma.charter.com ([24.181.237.39] helo=Gregory-Larkins-iMac.local) by mail1.sourcehosting.net with esmtp (Exim 4.73 (FreeBSD)) (envelope-from ) id 1TK9KA-000AFs-PC; Fri, 05 Oct 2012 10:56:26 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id B33F516D771B; Fri, 5 Oct 2012 10:56:21 -0400 (EDT) Message-ID: <506EF513.3030709@FreeBSD.org> Date: Fri, 05 Oct 2012 10:56:19 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Andriy Gapon References: <506E9B69.4040406@FreeBSD.org> In-Reply-To: <506E9B69.4040406@FreeBSD.org> X-Enigmail-Version: 1.4.4 X-SA-Exim-Connect-IP: 24.181.237.39 X-SA-Exim-Mail-From: glarkin@FreeBSD.org X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail1.sourcehosting.net X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=AWL, BAYES_00, RCVD_IN_RP_RNBL, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 7bit X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on mail1.sourcehosting.net) Cc: freebsd-ports@FreeBSD.org Subject: Re: conflict between devel/patch and gettext ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Oct 2012 14:56:33 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10/5/12 4:33 AM, Andriy Gapon wrote: > > At least pkgng reports/detects it: > > pkg: patch-2.7 conflicts with gettext-0.18.1.1 (installs files into > the same place). Problematic file: /usr/local/lib/charset.alias > Hi Andriy, Thank you for the report, and I have come up with a solution that I will commit shortly. Regards, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. http://twitter.com/cpucycle/ - Follow you, follow me -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (Darwin) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iEYEARECAAYFAlBu9RIACgkQ0sRouByUApDABwCdEGd9UqEssaxX5kW8ECYj1Eij jToAn2ZVZ4B1ndmkM1GRnHncY0H/0KZp =txZQ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:15:51 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E647B106564A; Fri, 5 Oct 2012 15:15:51 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from alpha.inerd.com (alpha.inerd.com [204.109.56.118]) by mx1.freebsd.org (Postfix) with ESMTP id BAA908FC0A; Fri, 5 Oct 2012 15:15:51 +0000 (UTC) Received: from charon.picobyte.net (localhost [127.0.0.1]) by alpha.inerd.com (Postfix) with ESMTP id 6A388147CD7; Fri, 5 Oct 2012 15:15:45 +0000 (UTC) Date: Fri, 5 Oct 2012 16:15:44 +0100 From: Shaun Amott To: Baptiste Daroussin Message-ID: <20121005151544.GA9938@charon.picobyte.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20121005140534.GB61272@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.20 (FreeBSD i386) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 15:15:52 -0000 On Fri, Oct 05, 2012 at 04:05:35PM +0200, Baptiste Daroussin wrote: > I want to propose and make the actual move of the WWW information from the > pkg-descr to the Makefile itself via a WWW variable. > > doing this will have multiple benefits: > * consistency all metadata bug this one are in Makefile > * speedup make describe avoiding using grep to get the informations (make > describe itself does not need speed but make index heavily use it and this > will definitly benefit from speed up) > * Third party tool will be able to probe the information more easily. > > Do anyone have any concern about this? A good idea in principle, but I think we need to take care to ensure that the information is easily discoverable by end users. There's a risk that burying the URLs in Makefiles might make them less accessible. -- Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:17:42 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54CE4106566B for ; Fri, 5 Oct 2012 15:17:42 +0000 (UTC) (envelope-from bapt@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1F8378FC22; Fri, 5 Oct 2012 15:17:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q95FHga3068777; Fri, 5 Oct 2012 15:17:42 GMT (envelope-from bapt@freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q95FHfxF068775; Fri, 5 Oct 2012 15:17:41 GMT (envelope-from bapt@freebsd.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@freebsd.org using -f Date: Fri, 5 Oct 2012 17:17:39 +0200 From: Baptiste Daroussin To: Eitan Adler Message-ID: <20121005151739.GC61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2/5bycvrmDh4d1IB" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 15:17:42 -0000 --2/5bycvrmDh4d1IB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 10:25:07AM -0400, Eitan Adler wrote: > On 5 October 2012 10:05, Baptiste Daroussin wrote: > > Hi, > > > > I want to propose and make the actual move of the WWW information from = the > > pkg-descr to the Makefile itself via a WWW variable. > > > > doing this will have multiple benefits: > > * consistency all metadata bug this one are in Makefile > > * speedup make describe avoiding using grep to get the informations (m= ake > > describe itself does not need speed but make index heavily use it an= d this > > will definitly benefit from speed up) > > * Third party tool will be able to probe the information more easily. > > > > Do anyone have any concern about this? >=20 > I've brought this up before in private, but I figure this is a good > time to mention it. I'd prefer to see a more generic way of supplying > * arbitrary* meta-data about ports in the makefile. For example > something like >=20 > META=3D WWW=3Dhttps://example.com \ > CHANGELOG=3Dhttps://example.com/cl \ > DESKTOP=3Dkde \ > REDPORTS=3Dsome-special-options \ > PORTSCOUT=3Dsome-other-tool > etc. While the idea sounds good, how do you retrive the informations out of a si= mple make command, and possibilty with limiting the parsing as much as possible? equivalent of make -VWWW (for example for make describe) regards, Bapt --2/5bycvrmDh4d1IB Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBu+hMACgkQ8kTtMUmk6Exs0gCdFMNgZcXF14bd41EcGlr/GvrI 2Z8AoMIKdxvi9aHnnTTVF6RyDkjIFafE =uvEy -----END PGP SIGNATURE----- --2/5bycvrmDh4d1IB-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:20:08 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE95B1065672 for ; Fri, 5 Oct 2012 15:20:08 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B06D88FC22; Fri, 5 Oct 2012 15:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q95FK83R069355; Fri, 5 Oct 2012 15:20:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q95FK8s0069351; Fri, 5 Oct 2012 15:20:08 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Fri, 5 Oct 2012 17:20:05 +0200 From: Baptiste Daroussin To: Ruslan Mahmatkhanov Message-ID: <20121005152005.GD61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005143646.GA97480@graf.pompo.net> <506EF198.3050905@yandex.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WChQLJJJfbwij+9x" Content-Disposition: inline In-Reply-To: <506EF198.3050905@yandex.ru> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 15:20:08 -0000 --WChQLJJJfbwij+9x Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 06:41:28PM +0400, Ruslan Mahmatkhanov wrote: > Thierry Thomas wrote on 05.10.2012 18:36: > > Le ven 5 oct 12 =E0 16:05:35 +0200, Baptiste Daroussin > > =E9crivait : > >> Hi, > > > > Hello, > > > >> I want to propose and make the actual move of the WWW information from= the > >> pkg-descr to the Makefile itself via a WWW variable. > > > > Good idea! > > > > But just a warning: some pkg-desc may contain two URLs. > > > > Regards, >=20 >=20 > I examined this right after it was proposed on developers@. We have=20 > generally five types of urls in pkg-descr: >=20 > 1. no WWW at all (for dead projects) >=20 WWW in Makefile will not be mandatory > 2. WWW: http://url Will become WWW=3D http://url >=20 > 3. WWW: http://url > WWW: http://url Will become WWW=3D http://url1 \ http://url2 >=20 > 4. WWW: http://url > http://url >=20 Will become WWW=3D http://url1 \ http://url2 > 5. RG: http://url (for some rubygem-* ports) >=20 Will have to be change to something more clever :) regards, Bapt --WChQLJJJfbwij+9x Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBu+qUACgkQ8kTtMUmk6Ez8TwCgqh2MRsXsrEJhPrAgGJ4hIKKc XlcAn2Se548CBX5FuM7LP26D4CxrTPvu =yxO1 -----END PGP SIGNATURE----- --WChQLJJJfbwij+9x-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:32:23 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E15161065670; Fri, 5 Oct 2012 15:32:23 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C55598FC18; Fri, 5 Oct 2012 15:32:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q95FWNuT070374; Fri, 5 Oct 2012 15:32:23 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q95FWNwN070373; Fri, 5 Oct 2012 15:32:23 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Fri, 5 Oct 2012 17:32:21 +0200 From: Baptiste Daroussin To: Shaun Amott Message-ID: <20121005153221.GE61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FN+gV9K+162wdwwF" Content-Disposition: inline In-Reply-To: <20121005151544.GA9938@charon.picobyte.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 15:32:24 -0000 --FN+gV9K+162wdwwF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 04:15:44PM +0100, Shaun Amott wrote: > On Fri, Oct 05, 2012 at 04:05:35PM +0200, Baptiste Daroussin wrote: > > I want to propose and make the actual move of the WWW information from = the > > pkg-descr to the Makefile itself via a WWW variable. > >=20 > > doing this will have multiple benefits: > > * consistency all metadata bug this one are in Makefile > > * speedup make describe avoiding using grep to get the informations (m= ake > > describe itself does not need speed but make index heavily use it an= d this > > will definitly benefit from speed up) > > * Third party tool will be able to probe the information more easily. > >=20 > > Do anyone have any concern about this? >=20 > A good idea in principle, but I think we need to take care to ensure > that the information is easily discoverable by end users. There's a risk > that burying the URLs in Makefiles might make them less accessible. >=20 How that would be more complicated than the actual way? Given that there are 2 user friendly way to get the information: make search (which uses INDEX so no change in that area) and freshports and I will make= sure that we will switch in sync with it. regards, Bapt --FN+gV9K+162wdwwF Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBu/YQACgkQ8kTtMUmk6ExZFACgtVlWsGlJfZEM41vQhYcCTF8I UYIAoKXQJdLQGZLs+EuOAEV4SPmykGMt =Mvnh -----END PGP SIGNATURE----- --FN+gV9K+162wdwwF-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:35:35 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 171A8106566C for ; Fri, 5 Oct 2012 15:35:35 +0000 (UTC) (envelope-from bryan@shatow.net) Received: from secure.xzibition.com (secure.xzibition.com [173.160.118.92]) by mx1.freebsd.org (Postfix) with ESMTP id B3F638FC0A for ; Fri, 5 Oct 2012 15:35:34 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=shatow.net; h=message-id :date:from:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; q=dns; s=sweb; b=YX+A15 lwHDJBrLiTCKuA+UwUfoMrXJuhd/KVTRvWI9tBhxmqfBfmk5/+fRTdas2dQX5HA3 pJGAq5SaoZvqBm/mTZdr7cySyLSa/yomQ3mPPxWDgG66t1MUVcDbEN4EzlSMav+I 5+DnSEUV2++hUxgiP4ApImXXDHrxboe7xO2ew= DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=shatow.net; h=message-id :date:from:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; s=sweb; bh=c96JZKIJvxMb yKvqBK9pqdKQ31lpFQXLm9AkYDJs4gw=; b=B8+aveD6GsZCFE6eqcK2VfIObrZc kNKWoiMIl2nnKfPnS2XtzS+1G+L5C3U8MnnnMKxjGrXgr7dMCmjVyKXs0+U/zU7/ P0VMnAACP4gVK3Ai83lYMeQXVHASo+qNYHmRJK5JC1lee/aO1g1/9hq6SbBWpj+c FtTvx+iZbg60/wQ= Received: (qmail 86288 invoked from network); 5 Oct 2012 10:28:51 -0500 Received: from unknown (HELO ?192.168.0.74?) (bryan@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 5 Oct 2012 10:28:51 -0500 Message-ID: <506EFCB8.1050907@shatow.net> Date: Fri, 05 Oct 2012 10:28:56 -0500 From: Bryan Drewery User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: "O. Hartmann" References: <506E9927.8030001@mail.zedat.fu-berlin.de> In-Reply-To: <506E9927.8030001@mail.zedat.fu-berlin.de> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Ports FreeBSD Subject: Re: ports-mgmt/portupgrade: ** Database file locked. Waiting. 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, 05 Oct 2012 15:35:35 -0000 On 10/5/2012 3:24 AM, O. Hartmann wrote: > Using pkg(ng) in conjunction with the port ports/mgmt/portupgrade > results in long waiting cycles when portupgrade is updating the local > database, it is even on fast boxes sometimes in the range of a minute or > even two. You mean ports-mgmt/portupgrade-devel right? > > Is this usual or is there something wrong with my setup? > > Regards, > Oliver > --- > > [Updating the pkgdb in /var/db/pkg ... - 1114 > packages found (-0 +1) . done] > ---> Cleaning out obsolete shared libraries > [Updating the pkgdb in /var/db/pkg ... USING PKGNG > ** Database file locked. Waiting. I have not experienced this. Are you running multiple portupgrade tools at once? Bryan From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:40:31 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 293F110656C2 for ; Fri, 5 Oct 2012 15:40:31 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id CFA928FC18 for ; Fri, 5 Oct 2012 15:40:29 +0000 (UTC) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) with esmtp (envelope-from ) id <1TKA0q-002nVe-65>; Fri, 05 Oct 2012 17:40:28 +0200 Received: from e178028178.adsl.alicedsl.de ([85.178.28.178] helo=thor.walstatt.dyndns.org) by inpost2.zedat.fu-berlin.de (Exim 4.69) with esmtpsa (envelope-from ) id <1TKA0q-002dsd-2E>; Fri, 05 Oct 2012 17:40:28 +0200 Message-ID: <506EFF67.8060401@zedat.fu-berlin.de> Date: Fri, 05 Oct 2012 17:40:23 +0200 From: "O. Hartmann" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120910 Thunderbird/15.0.1 MIME-Version: 1.0 To: Bryan Drewery References: <506E9927.8030001@mail.zedat.fu-berlin.de> <506EFCB8.1050907@shatow.net> In-Reply-To: <506EFCB8.1050907@shatow.net> X-Enigmail-Version: 1.4.3 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigCD5794926444F72B09F556B4" X-Originating-IP: 85.178.28.178 Cc: "O. Hartmann" , Ports FreeBSD Subject: Re: ports-mgmt/portupgrade: ** Database file locked. Waiting. 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, 05 Oct 2012 15:40:31 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigCD5794926444F72B09F556B4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Am 10/05/12 17:28, schrieb Bryan Drewery: > On 10/5/2012 3:24 AM, O. Hartmann wrote: >> Using pkg(ng) in conjunction with the port ports/mgmt/portupgrade >> results in long waiting cycles when portupgrade is updating the local >> database, it is even on fast boxes sometimes in the range of a minute = or >> even two. >=20 > You mean ports-mgmt/portupgrade-devel right? Of course, yes. >=20 >> >> Is this usual or is there something wrong with my setup? >> >> Regards, >> Oliver >> --- >> >> [Updating the pkgdb in /var/db/pkg ... - 1114 >> packages found (-0 +1) . done] >> ---> Cleaning out obsolete shared libraries >> [Updating the pkgdb in /var/db/pkg ... USING PKGNG >> ** Database file locked. Waiting. >=20 > I have not experienced this. Are you running multiple portupgrade tools= > at once? No, there is only one instance running at the same time, but apart from the usual installations, I use Ruby 1.9 on all machines, I guess Ruby 1.8 is still the default. But anyway, the long locking time is a bit of frustrating, since it takes ages for updating large sets of ports (as done recently on FreeBSD 9.1-PRE). >=20 > Bryan >=20 --------------enigCD5794926444F72B09F556B4 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBAgAGBQJQbv9rAAoJEOgBcD7A/5N8H0cH/iFphhdo9qJm/BgfOOAtDpFb irrYtRzxQAW+h5rwRs5w6nfVlo/Fea1Yf3WHXQvi/u4DHpFJK4X4pJsM7Mgsyap3 np5hEolxMI9iwLe4dJVzwBxrFVBGcRz5swy8GkWInZW8R+AHmhabmTq5hE2v32xh ByA1Sw9oE335QfPdOyMA8qbwL6AkALWluSpE5SJRqVLdFxFpkHxOMD6zx3AhScTn sSq+LIuqYNYVTnMM9KPddpuBBrMzboyyp01ztTBuHCa24JamuLh8IAl8JZEJU6cY 7UQWeSWr0rLTDwOkpC4rJwHu2F1DAaUHxcQlk5e/j1TTczwRgjaNiehPwYotC7Y= =Z7dE -----END PGP SIGNATURE----- --------------enigCD5794926444F72B09F556B4-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:47:31 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0770106566C for ; Fri, 5 Oct 2012 15:47:31 +0000 (UTC) (envelope-from bryan@shatow.net) Received: from secure.xzibition.com (secure.xzibition.com [173.160.118.92]) by mx1.freebsd.org (Postfix) with ESMTP id 5A9EE8FC0C for ; Fri, 5 Oct 2012 15:47:30 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=shatow.net; h=message-id :date:from:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; q=dns; s=sweb; b=jkxCfJ LL1mAguPlNbDAqgtP192c+0I9JZwyzQIG/fiKvAD4zuI3sZdxIkygCck6eyqV/un KV+wFgc79r7jjvAxVu9bTTAyLtfnKnVS5fatQU3fmxfMFj/pNhelAc3GQulLYf71 25ccCa8h6aDPFbHYDripS98f23BlptIqt42SA= DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=shatow.net; h=message-id :date:from:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; s=sweb; bh=5gnMJg+tlm46 +13nKqIy8T/Ts5NtH8gqW/3RQBpDcDY=; b=xxxLo6Kd1p6GA1gA7BwlnO9TWJCv EZqI3E5G1H79wY49TiuA3r/3HPkYugVJID5UVJLP7U82xRCfhwWYRZi2JLTq4JrR FwoIyLtIuhvLN7YpPCQ606CNLq8jYZYixkB6BDpxD4/LEFqc96MP2gaotic5j4E7 bXILpJZTK2orokI= Received: (qmail 81156 invoked from network); 5 Oct 2012 10:47:29 -0500 Received: from unknown (HELO ?192.168.0.74?) (bryan@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 5 Oct 2012 10:47:29 -0500 Message-ID: <506F0115.5090302@shatow.net> Date: Fri, 05 Oct 2012 10:47:33 -0500 From: Bryan Drewery User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: "O. Hartmann" References: <506E9927.8030001@mail.zedat.fu-berlin.de> <506EFCB8.1050907@shatow.net> <506EFF67.8060401@zedat.fu-berlin.de> In-Reply-To: <506EFF67.8060401@zedat.fu-berlin.de> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "O. Hartmann" , Ports FreeBSD Subject: Re: ports-mgmt/portupgrade: ** Database file locked. Waiting. 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, 05 Oct 2012 15:47:31 -0000 On 10/5/2012 10:40 AM, O. Hartmann wrote: > Am 10/05/12 17:28, schrieb Bryan Drewery: >> On 10/5/2012 3:24 AM, O. Hartmann wrote: >>> Using pkg(ng) in conjunction with the port ports/mgmt/portupgrade >>> results in long waiting cycles when portupgrade is updating the local >>> database, it is even on fast boxes sometimes in the range of a minute or >>> even two. >> >> You mean ports-mgmt/portupgrade-devel right? > > Of course, yes. > >> >>> >>> Is this usual or is there something wrong with my setup? >>> >>> Regards, >>> Oliver >>> --- >>> >>> [Updating the pkgdb in /var/db/pkg ... - 1114 >>> packages found (-0 +1) . done] >>> ---> Cleaning out obsolete shared libraries >>> [Updating the pkgdb in /var/db/pkg ... USING PKGNG >>> ** Database file locked. Waiting. >> >> I have not experienced this. Are you running multiple portupgrade tools >> at once? > > No, there is only one instance running at the same time, but apart from > the usual installations, I use Ruby 1.9 on all machines, I guess Ruby > 1.8 is still the default. I am using 1.9 as well. > > But anyway, the long locking time is a bit of frustrating, since it > takes ages for updating large sets of ports (as done recently on FreeBSD > 9.1-PRE). > Strange, I am unable to recreate this. # pkgdb -fu ---> Updating the pkgdb [Rebuilding the pkgdb in /var/db/pkg ... USING PKGNG - 433 packages found (-0 +433) ....................................................................................................100....................................................................................................200....................................................................................................300....................................................................................................400................................. done] Do you have some package tool in crontab perhaps? The PKGNG implementation in portupgrade is far from ideal. It will require a major refactoring of portupgrade to make it more efficient. Just focusing on making it *work* now, and will speed it up later. >> >> Bryan >> > > From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 15:56:51 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BAAE1065746 for ; Fri, 5 Oct 2012 15:56:51 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 05F178FC1A for ; Fri, 5 Oct 2012 15:56:50 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so2268235pbb.13 for ; Fri, 05 Oct 2012 08:56:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=sgeqty2PYNwiwCcp0ee+xSpek/+WYJfd7nzoVslbtDQ=; b=iBAR0X9+IAYbPKtPHFRSSCxzdyQnJmY8PgitnyTTzIJjas5YLaNHTAb4IDEeb22E4K kJ9Fl5CjEMk+9EM2F0B0FYUIaNVyFhCUgry2t5Cxb8M3FLD3DA5ztjvVvxHJ+y6Hf7zd pCnvMGVvJSVNalFCtOFiuHZvJjijcX4iii1mE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=sgeqty2PYNwiwCcp0ee+xSpek/+WYJfd7nzoVslbtDQ=; b=CO9IxPCcJbxGiYZSE02ZqrEN4zLLvbNTb5mY144Lf4OGWYIWQwPJEzvlxt3zAaG+OK RRaM4bxnHZGUFWGYkaFItuTHyMsbkAlBDeXRJ9K7ozjZP6HOUoifV135VuFbavPSB7SM 0h4TjCNRMCTPb9ozme8LNbt/lFrlDVwu0KvWiZ0fCxSE9Kdzz3ysz7NLrUntgVBmJ+7C RpQ1Nq4skfEpndJZy1GGsJLbrq5gByY4PlujWQxzdJ6lZlMO5AhvMV0GKKpHyjNICF1h OuIW7YI1mAfP4t8+xkHuaNaFMkksITwKeOg27bliQH0ce1DOwWyW28fjeTrpPYxenmpp UkwA== Received: by 10.66.81.103 with SMTP id z7mr22613053pax.57.1349452610368; Fri, 05 Oct 2012 08:56:50 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.190.164 with HTTP; Fri, 5 Oct 2012 08:56:20 -0700 (PDT) In-Reply-To: <20121005151739.GC61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151739.GC61272@ithaqua.etoilebsd.net> From: Eitan Adler Date: Fri, 5 Oct 2012 11:56:20 -0400 Message-ID: To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQntszeZg07ZtWfbVkGsG0XlRVVQaWbNe8iUqnGfsIg6To/y02wQBGnPHU5jJiMNcZN9QhxP Cc: ports@freebsd.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 15:56:51 -0000 On 5 October 2012 11:17, Baptiste Daroussin wrote: > While the idea sounds good, how do you retrive the informations out of a simple > make command, and possibilty with limiting the parsing as much as possible? > > equivalent of make -VWWW (for example for make describe) I'm not near my computer atm, but what about something similar to how we handle PORT_OPTIONS make -VMETA:MWWW ? -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 16:01:52 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 635DC106564A for ; Fri, 5 Oct 2012 16:01:52 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id B74088FC08 for ; Fri, 5 Oct 2012 16:01:51 +0000 (UTC) Received: (qmail 98819 invoked by uid 89); 5 Oct 2012 16:01:43 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.190.102.230) by mail.grem.de with ESMTPA; 5 Oct 2012 16:01:43 -0000 Date: Fri, 5 Oct 2012 18:01:43 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121005180143.0ff657fe@bsd64.grem.de> In-Reply-To: <506F0115.5090302@shatow.net> References: <506E9927.8030001@mail.zedat.fu-berlin.de> <506EFCB8.1050907@shatow.net> <506EFF67.8060401@zedat.fu-berlin.de> <506F0115.5090302@shatow.net> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: ports-mgmt/portupgrade: ** Database file locked. Waiting. 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, 05 Oct 2012 16:01:52 -0000 On Fri, 05 Oct 2012 10:47:33 -0500 Bryan Drewery wrote: > On 10/5/2012 10:40 AM, O. Hartmann wrote: > > Am 10/05/12 17:28, schrieb Bryan Drewery: > >> On 10/5/2012 3:24 AM, O. Hartmann wrote: > >>> Using pkg(ng) in conjunction with the port ports/mgmt/portupgrade > >>> results in long waiting cycles when portupgrade is updating the > >>> local database, it is even on fast boxes sometimes in the range > >>> of a minute or even two. > >> > >> You mean ports-mgmt/portupgrade-devel right? > > > > Of course, yes. > > > >> > >>> > >>> Is this usual or is there something wrong with my setup? > >>> > >>> Regards, > >>> Oliver > >>> --- > >>> > >>> [Updating the pkgdb in /var/db/pkg ... - 1114 > >>> packages found (-0 +1) . done] > >>> ---> Cleaning out obsolete shared libraries > >>> [Updating the pkgdb in /var/db/pkg ... USING > >>> PKGNG ** Database file locked. Waiting. > >> > >> I have not experienced this. Are you running multiple portupgrade > >> tools at once? > > > > No, there is only one instance running at the same time, but apart > > from the usual installations, I use Ruby 1.9 on all machines, I > > guess Ruby 1.8 is still the default. > > I am using 1.9 as well. > > > > > But anyway, the long locking time is a bit of frustrating, since it > > takes ages for updating large sets of ports (as done recently on > > FreeBSD 9.1-PRE). > > > > > Strange, I am unable to recreate this. > I've been experiencing the same issue on various machines (different versions of portupgrade and portupgrade-devel, different versions of ruby etc.) for years. Some machines seem more prone to it than others (only had the issue on machines using UFS+SU, but that might be coincidental). From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 16:08:54 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C29341065673 for ; Fri, 5 Oct 2012 16:08:54 +0000 (UTC) (envelope-from jos@catnook.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3D9D58FC12 for ; Fri, 5 Oct 2012 16:08:53 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so1776882lbd.13 for ; Fri, 05 Oct 2012 09:08:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:x-gm-message-state; bh=0/w5goF2aDejtv24EzqKGNDxQoGZmfB4ukaU6vSyAAg=; b=h6ApCWInIXuC1geyhgJOpJ5KId0VnBXZZbmOB+QPWol73lNjceO77pRJYYw2jKKiYj gIaH8p5vXoQw31/mnAlD69HynovssHVz7BTk2QTU8XrJvEjPd4U9YL8ld0dSfR1kALVy pQrYwigQB0AddkvBB8zyzOz0bGAhkRKn8n+pJiNAoyKchIeEkVpXR4pST4uz+Vj3RZmD oyt4nfyrbAIwlAhSYsPG4SU1PWlQV+NrXYVJVIn4rAHMIHbSdQkOBS39zERChBt3xz94 CCeroVn7qVH/noCco2d7M7cecrQ2jU83HedfhFA1hTBTxQgFGD/YauP1i4yTpH2AT4h2 NJ9w== MIME-Version: 1.0 Received: by 10.152.148.169 with SMTP id tt9mr1255134lab.15.1349453332443; Fri, 05 Oct 2012 09:08:52 -0700 (PDT) Received: by 10.112.17.42 with HTTP; Fri, 5 Oct 2012 09:08:52 -0700 (PDT) Received: by 10.112.17.42 with HTTP; Fri, 5 Oct 2012 09:08:52 -0700 (PDT) In-Reply-To: <20121005153221.GE61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> <20121005153221.GE61272@ithaqua.etoilebsd.net> Date: Fri, 5 Oct 2012 09:08:52 -0700 Message-ID: From: Jos Backus To: Baptiste Daroussin X-Gm-Message-State: ALoCoQmNGkN+pCPdON1izT8rRHXhAarp8vNRVrmlIBILCGARzoIEK2SGSA5dJBr6hfP4Lg7ELOaj Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org, Shaun Amott Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 16:08:54 -0000 How about storing this metada in a YAML-encoded file? The Ruby people use YAML for lots of things. libyaml is MIT licensed. Jos On Oct 5, 2012 8:33 AM, "Baptiste Daroussin" wrote: > On Fri, Oct 05, 2012 at 04:15:44PM +0100, Shaun Amott wrote: > > On Fri, Oct 05, 2012 at 04:05:35PM +0200, Baptiste Daroussin wrote: > > > I want to propose and make the actual move of the WWW information from > the > > > pkg-descr to the Makefile itself via a WWW variable. > > > > > > doing this will have multiple benefits: > > > * consistency all metadata bug this one are in Makefile > > > * speedup make describe avoiding using grep to get the informations > (make > > > describe itself does not need speed but make index heavily use it > and this > > > will definitly benefit from speed up) > > > * Third party tool will be able to probe the information more easily. > > > > > > Do anyone have any concern about this? > > > > A good idea in principle, but I think we need to take care to ensure > > that the information is easily discoverable by end users. There's a risk > > that burying the URLs in Makefiles might make them less accessible. > > > How that would be more complicated than the actual way? > > Given that there are 2 user friendly way to get the information: make > search > (which uses INDEX so no change in that area) and freshports and I will > make sure > that we will switch in sync with it. > > regards, > Bapt > From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 16:19:21 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D26E9106567E for ; Fri, 5 Oct 2012 16:19:21 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 999EF8FC1B for ; Fri, 5 Oct 2012 16:19:21 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so2220855pad.13 for ; Fri, 05 Oct 2012 09:19:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=PC/bEEHceh399XaCZBe3j0Ne62w+DLQCqXuIO/oQxCk=; b=Re2LI6aTEg906ErUANxCWIOAgb34dNaDPrhCD1/zNluwtu9feOpBZmT58DfspDjGkY UyAEaZUDqKYqFYpL5yYSOoKXXDH1JRA5CmFwsaPzhkampN5Bik8DKK+U7WWZ6zGBhkTb CP2C4jjgLmx6fLb3bcLR62QQsMME0C1ZN07Z4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=PC/bEEHceh399XaCZBe3j0Ne62w+DLQCqXuIO/oQxCk=; b=Vdz2exwuEyMzYi+LMDFV+c7jblr/yhTQO+G0AhDBDxApIVdYTvesZ+mDecDq8dxWV9 r1lb0qiFG/ngDc3ULYeOo4Is/eC21lgha0vQfDtWVNwfMKNd9mzacpK/s17X4EYFBC6J WZ5/NJycXqLRijp3kb3Ysk8RAZv/k5n1l9an7em6QYv4a0JdSP17thmtBjdwbpkph69g BU8+iWmmUYhMSVxrYx6GrQkAJLXz77Q2M/I7pLydOhZcg9ReZVcXf0eDKVellJFYGzls DveNaz+KD7AfBh9T5XT76vp21Qd5bzbqyRCh1iWdlo1BPvyLzzuP99my4XpOkOQHJhjB XfIQ== Received: by 10.66.81.202 with SMTP id c10mr22885630pay.31.1349453961077; Fri, 05 Oct 2012 09:19:21 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.190.164 with HTTP; Fri, 5 Oct 2012 09:18:50 -0700 (PDT) In-Reply-To: References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> <20121005153221.GE61272@ithaqua.etoilebsd.net> From: Eitan Adler Date: Fri, 5 Oct 2012 12:18:50 -0400 Message-ID: To: Jos Backus Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQnoEVYXOuEa7DeJruOtsbq4IRG1omDKVp2NnzX068kO2rUT5/gidzyhJWqbibWJEqvKBP0l Cc: ports@freebsd.org, Baptiste Daroussin , Shaun Amott Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 16:19:21 -0000 On 5 October 2012 12:08, Jos Backus wrote: > How about storing this metada in a YAML-encoded file? The Ruby people use > YAML for lots of things. libyaml is MIT licensed. No objections per se to this. I do believe there were some concerns about increasing the number of inodes the ports tree uses though. -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 16:24:59 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BF761065700 for ; Fri, 5 Oct 2012 16:24:59 +0000 (UTC) (envelope-from jos@catnook.com) Received: from mail-ee0-f54.google.com (mail-ee0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 009E48FC1E for ; Fri, 5 Oct 2012 16:24:58 +0000 (UTC) Received: by mail-ee0-f54.google.com with SMTP id c50so1645583eek.13 for ; Fri, 05 Oct 2012 09:24:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:x-gm-message-state; bh=TXuYv9yxZziN3CngEblifUAviLQGISps+d3uZlRjQU0=; b=gF7lFjTNTrxApJHvtTNB/IMXLX5Ai5vIKiJwLm5Icc6YZzlTgAAvLdnCIalZx4wDTN OBQ/UZwnEJgtV7s2wtgP0QZZsBRq+DD8B7dccPZqFbLZX8tr+Y8AN2GsYksGGaQThVxg rt6tZ1uT77qw3GvMrwwEgYtyki3HsU/2fztEV+6mqvUy9JO3d8OIrHnpeqsiutxGmOHx Dg3FtfGE7O7b8yzT9RVk+sesdoQg9kU1sJrzRuTq87Z3yPZpk+xVYBMfJkZYyirkAlYh smhZvYbJIvUR/4O/RS256X8u642/gKupw/HC/52wVyF26UEBVzDKXGZ3jgk/IOBc3QUD 60MA== MIME-Version: 1.0 Received: by 10.14.224.135 with SMTP id x7mr14074180eep.34.1349454292023; Fri, 05 Oct 2012 09:24:52 -0700 (PDT) Received: by 10.14.101.74 with HTTP; Fri, 5 Oct 2012 09:24:51 -0700 (PDT) In-Reply-To: References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> <20121005153221.GE61272@ithaqua.etoilebsd.net> Date: Fri, 5 Oct 2012 09:24:51 -0700 Message-ID: From: Jos Backus To: Eitan Adler X-Gm-Message-State: ALoCoQmd5EqN6NINpJmVyy39UOptPOF+pRC2qg5mhSeUXgiTzkVfrBo/hxzMl2KdydYkzmi88oLu Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org, Baptiste Daroussin , Shaun Amott Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 16:24:59 -0000 On Fri, Oct 5, 2012 at 9:18 AM, Eitan Adler wrote: > On 5 October 2012 12:08, Jos Backus wrote: > > How about storing this metada in a YAML-encoded file? The Ruby people use > > YAML for lots of things. libyaml is MIT licensed. > No objections per se to this. I do believe there were some concerns > about increasing the number of inodes the ports tree uses though. > > Here's a revolutionary idea. Store the Makefile in YAML and change make to also understand it in that format. Then the Makefile could easily contain all other kinds of metadata as well, AND it would make it possible for other tools to parse/modify Makefiles. Double win :-) Jos -- Jos Backus jos at catnook.com From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 16:28:51 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC4D11065673; Fri, 5 Oct 2012 16:28:51 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (mail1.sourcehosting.net [74.205.51.45]) by mx1.freebsd.org (Postfix) with ESMTP id 7FBCC8FC0A; Fri, 5 Oct 2012 16:28:51 +0000 (UTC) Received: from 24-181-237-39.dhcp.oxfr.ma.charter.com ([24.181.237.39] helo=Gregory-Larkins-iMac.local) by mail1.sourcehosting.net with esmtp (Exim 4.73 (FreeBSD)) (envelope-from ) id 1TKAlb-000AkT-VB; Fri, 05 Oct 2012 12:28:51 -0400 Received: from Gregory-Larkins-iMac.local (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by Gregory-Larkins-iMac.local (Postfix) with ESMTPS id 6F22A16D7D46; Fri, 5 Oct 2012 12:28:47 -0400 (EDT) Message-ID: <506F0ABE.4020907@FreeBSD.org> Date: Fri, 05 Oct 2012 12:28:46 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Andriy Gapon References: <506E9B69.4040406@FreeBSD.org> In-Reply-To: <506E9B69.4040406@FreeBSD.org> X-Enigmail-Version: 1.4.4 X-SA-Exim-Connect-IP: 24.181.237.39 X-SA-Exim-Mail-From: glarkin@FreeBSD.org X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail1.sourcehosting.net X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL, BAYES_00, RCVD_IN_RP_RNBL, RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 7bit X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on mail1.sourcehosting.net) Cc: freebsd-ports@FreeBSD.org Subject: Re: conflict between devel/patch and gettext ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Oct 2012 16:28:51 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 10/5/12 4:33 AM, Andriy Gapon wrote: > > At least pkgng reports/detects it: > > pkg: patch-2.7 conflicts with gettext-0.18.1.1 (installs files into > the same place). Problematic file: /usr/local/lib/charset.alias > Hello Andriy, I just committed the fix, so please try the build again with pkgng. Thank you, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. http://twitter.com/cpucycle/ - Follow you, follow me -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (Darwin) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iEYEARECAAYFAlBvCr4ACgkQ0sRouByUApCZUACeJqHH2OFUzT+21tT2Qd1tsAFA WMQAoJnUeJ5bllEg6G+WcBMC9qFSc+Bn =W1L7 -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 16:37:52 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26E901065673; Fri, 5 Oct 2012 16:37:52 +0000 (UTC) (envelope-from bapt@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 085AB8FC0C; Fri, 5 Oct 2012 16:37:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q95GbpSh077825; Fri, 5 Oct 2012 16:37:51 GMT (envelope-from bapt@freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q95GbpuD077824; Fri, 5 Oct 2012 16:37:51 GMT (envelope-from bapt@freebsd.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@freebsd.org using -f Date: Fri, 5 Oct 2012 18:37:49 +0200 From: Baptiste Daroussin To: Jos Backus Message-ID: <20121005163749.GH61272@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> <20121005153221.GE61272@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KscVNZbUup0vZz0f" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@freebsd.org, Shaun Amott Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 16:37:52 -0000 --KscVNZbUup0vZz0f Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 09:08:52AM -0700, Jos Backus wrote: > How about storing this metada in a YAML-encoded file? The Ruby people use > YAML for lots of things. libyaml is MIT licensed. >=20 > Jos pkgng uses libyaml for its manifest :) converting to yaml will be a more complicated work and will need some more study, and the impact will be way more important. I'm not against but I have to much on my side to start with this :) please keep for now this thread on the WWW move. (if you want to speak about this, please start a new one :)) regards, Bapt --KscVNZbUup0vZz0f Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBvDN0ACgkQ8kTtMUmk6EyG7wCbB1Qspk2BXnVe9mMGrlF8dSaL IlYAoJr28kzA3jIzflqlZ5Fow6ICO6aX =EuIf -----END PGP SIGNATURE----- --KscVNZbUup0vZz0f-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 17:07:06 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8BCF1065741; Fri, 5 Oct 2012 17:07:06 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id EE84B8FC0C; Fri, 5 Oct 2012 17:07:05 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id UAA01059; Fri, 05 Oct 2012 20:07:04 +0300 (EEST) (envelope-from avg@FreeBSD.org) Message-ID: <506F13B7.5080107@FreeBSD.org> Date: Fri, 05 Oct 2012 20:07:03 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: glarkin@FreeBSD.org References: <506E9B69.4040406@FreeBSD.org> <506F0ABE.4020907@FreeBSD.org> In-Reply-To: <506F0ABE.4020907@FreeBSD.org> X-Enigmail-Version: 1.4.3 Content-Type: text/plain; charset=x-viet-vps Content-Transfer-Encoding: 8bit Cc: freebsd-ports@FreeBSD.org Subject: Re: conflict between devel/patch and gettext ? 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, 05 Oct 2012 17:07:07 -0000 on 05/10/2012 19:28 Greg Larkin said the following: > On 10/5/12 4:33 AM, Andriy Gapon wrote: > >> At least pkgng reports/detects it: > >> pkg: patch-2.7 conflicts with gettext-0.18.1.1 (installs files into >> the same place). Problematic file: /usr/local/lib/charset.alias > > > Hello Andriy, > > I just committed the fix, so please try the build again with pkgng. Thank you! It works fine now. -- Andriy Gapon From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 21:37:21 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 79A5C106566C; Fri, 5 Oct 2012 21:37:21 +0000 (UTC) (envelope-from joao@matik.com.br) Received: from msrv.matik.com.br (msrv.matik.com.br [187.95.0.181]) by mx1.freebsd.org (Postfix) with ESMTP id B6BE38FC12; Fri, 5 Oct 2012 21:37:20 +0000 (UTC) Received: from pop1.hm.net.br (pop1.hm.net.br [186.222.220.185]) (authenticated bits=0) by msrv.matik.com.br (8.14.5/8.14.5) with ESMTP id q95LCTmu045582 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 5 Oct 2012 18:12:31 -0300 (BRT) (envelope-from joao@matik.com.br) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.97.5 at msrv.matik.com.br X-DKIM: OpenDKIM Filter v2.5.2 msrv.matik.com.br q95LCTmu045582 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=matik.com.br; s=racoon; t=1349471553; bh=yMi6A+5F939RwAVmfRFaqhynF1oLtBqW8iPfIitmr6c=; h=Date:From:To:CC:Subject:References:In-Reply-To; b=HPT3LhlVFHA6wQgTQ+vEL4bfoNQlsVpoHNQi0hueJdNWAx2531fT8NJ79mQD6iYTn oUkKrVKIlTpOlZL4/+yKsUqbaDhBgcZOXKtlM6Xd3MKMNKWm/U6x6f2Q/TxsuaN9eO tK+Det6oHybONWpwy/Vjzfvb8TKD8JtnEkAasNOQ= Authentication-Results: msrv.matik.com.br; sender-id=pass header.from=joao@matik.com.br; auth=pass (PLAIN); spf=pass smtp.mfrom=joao@matik.com.br Message-ID: <506F4D3D.8070509@matik.com.br> Date: Fri, 05 Oct 2012 18:12:29 -0300 From: joaoBR User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Firefox/15.0.1 SeaMonkey/2.12.1 MIME-Version: 1.0 To: Christopher Dawkins References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-298.2 required=5.0 tests=AWL=-0.854,BAYES_00=-1.9,DKIM_SIGNED=0.1,DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,RCVD_IN_PBL=3.335,RCVD_IN_RP_RNBL=1.31,SPF_PASS=-0.001,USER_IN_DKIM_WHITELIST=-100,USER_IN_SPF_WHITELIST=-100,USER_IN_WHITELIST=-100 msrv.matik.com.br 1356; Body=1 Fuz1=1 Fuz2=1 [127.0.0.6] [1 mail.matik.com.br.] [127.0.0.11] [187.95.0.181] autolearn=no ASN AS28573 186.222.216.0/21 X-Spam-Checker-Version: SpamAssassin 3.3.2-hm_201202.c (2011-06-06) on msrv.matik.com.br Cc: kde@freebsd.org, jaapb@kerguelen.org, freebsd-ports@freebsd.org, kstewart@owt.com Subject: Re: [kde-freebsd] kdenetwork-4.8.4_2 and libotr 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, 05 Oct 2012 21:37:21 -0000 On 23/09/2012 18:36, Christopher Dawkins wrote: > > I am sorry to bring this to your attention: you all do a lot of work > that considerably benefits me and many others. > > > But I cannot compile kdenetwork-4.8.4_2 because it seems to need libotr3. > > The advice in 20120908 seems irrelevant because I am not using > pidgin-otr, anyway, it cannot work because there is no libotr3 port or > directory. > ... somebody else wrote > If you look at the current Makefile, it has > > otr.4:${PORTSDIR}/security/libotr3 \ > > I don't see how you all have been making it build with that setup.. seems you're not getting what's the deal otr.4 is from libotr3, the Makefile is ok there is now libotr3 and libotr4, the former is needed by kde4 it is not an upgrade of libotr even if it is described as so, it is a new additional version libotr4 unfortunately assumed the ports dir from the older port, it could have been much more stressless and smarter making it security/libotr4 but they did it the spaghetti way ... so now the old port and actual kde dependency is in security/libotr3 in order to make it work you first need to run like explained in UPDATE portugrade -o security/libotr3 security/libotr now you can upgrade kdenetwork and eventually any other port which depends on libotr3 []s -- João Martins (JoaoBR) Infomatik Development Team http://wipserver.matik.com.br +55 11 4249.2222 From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 22:04:09 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA56F106564A; Fri, 5 Oct 2012 22:04:09 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from alpha.inerd.com (alpha.inerd.com [204.109.56.118]) by mx1.freebsd.org (Postfix) with ESMTP id 2D3178FC12; Fri, 5 Oct 2012 22:04:09 +0000 (UTC) Received: from charon.picobyte.net (localhost [127.0.0.1]) by alpha.inerd.com (Postfix) with ESMTP id E21CE147CD7; Fri, 5 Oct 2012 22:04:07 +0000 (UTC) Date: Fri, 5 Oct 2012 23:04:07 +0100 From: Shaun Amott To: Baptiste Daroussin Message-ID: <20121005220406.GA10831@charon.picobyte.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> <20121005153221.GE61272@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20121005153221.GE61272@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.20 (FreeBSD i386) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 22:04:09 -0000 On Fri, Oct 05, 2012 at 05:32:21PM +0200, Baptiste Daroussin wrote: > On Fri, Oct 05, 2012 at 04:15:44PM +0100, Shaun Amott wrote: > > On Fri, Oct 05, 2012 at 04:05:35PM +0200, Baptiste Daroussin wrote: > > > I want to propose and make the actual move of the WWW information from the > > > pkg-descr to the Makefile itself via a WWW variable. > > > > > > doing this will have multiple benefits: > > > * consistency all metadata bug this one are in Makefile > > > * speedup make describe avoiding using grep to get the informations (make > > > describe itself does not need speed but make index heavily use it and this > > > will definitly benefit from speed up) > > > * Third party tool will be able to probe the information more easily. > > > > > > Do anyone have any concern about this? > > > > A good idea in principle, but I think we need to take care to ensure > > that the information is easily discoverable by end users. There's a risk > > that burying the URLs in Makefiles might make them less accessible. > > > How that would be more complicated than the actual way? I wasn't aware there was an "actual" way; isn't `cat pkg-descr` the easiest way of getting a synopsis of the port (including website)? > Given that there are 2 user friendly way to get the information: make search > (which uses INDEX so no change in that area) and freshports and I will make sure > that we will switch in sync with it. FreshPorts is great, but we shouldn't rely on it for basic information and/or functionality. -- Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson From owner-freebsd-ports@FreeBSD.ORG Fri Oct 5 22:36:21 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C640D1065670; Fri, 5 Oct 2012 22:36:21 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8E4E38FC12; Fri, 5 Oct 2012 22:36:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q95MaLVG020045; Fri, 5 Oct 2012 22:36:21 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q95MaL6k020044; Fri, 5 Oct 2012 22:36:21 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 00:36:18 +0200 From: Baptiste Daroussin To: Shaun Amott Message-ID: <20121005223618.GC316@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <20121005151544.GA9938@charon.picobyte.net> <20121005153221.GE61272@ithaqua.etoilebsd.net> <20121005220406.GA10831@charon.picobyte.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XWOWbaMNXpFDWE00" Content-Disposition: inline In-Reply-To: <20121005220406.GA10831@charon.picobyte.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 05 Oct 2012 22:36:21 -0000 --XWOWbaMNXpFDWE00 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 11:04:07PM +0100, Shaun Amott wrote: > On Fri, Oct 05, 2012 at 05:32:21PM +0200, Baptiste Daroussin wrote: > > On Fri, Oct 05, 2012 at 04:15:44PM +0100, Shaun Amott wrote: > > > On Fri, Oct 05, 2012 at 04:05:35PM +0200, Baptiste Daroussin wrote: > > > > I want to propose and make the actual move of the WWW information f= rom the > > > > pkg-descr to the Makefile itself via a WWW variable. > > > >=20 > > > > doing this will have multiple benefits: > > > > * consistency all metadata bug this one are in Makefile > > > > * speedup make describe avoiding using grep to get the information= s (make > > > > describe itself does not need speed but make index heavily use i= t and this > > > > will definitly benefit from speed up) > > > > * Third party tool will be able to probe the information more easi= ly. > > > >=20 > > > > Do anyone have any concern about this? > > >=20 > > > A good idea in principle, but I think we need to take care to ensure > > > that the information is easily discoverable by end users. There's a r= isk > > > that burying the URLs in Makefiles might make them less accessible. > > >=20 > > How that would be more complicated than the actual way? >=20 > I wasn't aware there was an "actual" way; isn't `cat pkg-descr` the > easiest way of getting a synopsis of the port (including website)? >=20 > > Given that there are 2 user friendly way to get the information: make s= earch > > (which uses INDEX so no change in that area) and freshports and I will = make sure > > that we will switch in sync with it. >=20 > FreshPorts is great, but we shouldn't rely on it for basic information > and/or functionality. >=20 > --=20 > Shaun Amott // PGP: 0x6B387A9A > "A foolish consistency is the hobgoblin > of little minds." - Ralph Waldo Emerson I agree, maybe we can add a 'make www' to be able to output the WWW informa= tion regards, Bapt --XWOWbaMNXpFDWE00 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBvYOIACgkQ8kTtMUmk6EzMVQCgh4iKOfyc4BevmnbXn4E0EAnf H18An2qB+yNgLFe8OFGAkwngce0GOtlv =Lf3H -----END PGP SIGNATURE----- --XWOWbaMNXpFDWE00-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 00:25:14 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D92C106566C for ; Sat, 6 Oct 2012 00:25:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 51F4D8FC0C for ; Sat, 6 Oct 2012 00:25:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q960PEFU032218 for ; Sat, 6 Oct 2012 00:25:14 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q960PEHe032217 for ports@FreeBSD.org; Sat, 6 Oct 2012 00:25:14 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 02:25:11 +0200 From: Baptiste Daroussin To: ports@FreeBSD.org Message-ID: <20121006002511.GA29596@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cNdxnHkX5QqsyA0e" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: [REMINDER] Please convert your ports to the new options framework 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, 06 Oct 2012 00:25:14 -0000 --cNdxnHkX5QqsyA0e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, There are still 1590 ports to be converted, more than 1600 has already been converted, please consider converting yours. Here is a list of ports to be converted: http://wiki.freebsd.org/Ports/Options/ConvertingToOptionsNG Here is the list of maintainers having ports to be converted: http://people.freebsd.org/~bapt/optionsng-per-maintainer.txt regards, Bapt --cNdxnHkX5QqsyA0e Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBvemcACgkQ8kTtMUmk6EwxdgCgm8VmDk1RT5Ql6xkDCovkC0As OXwAn2Jvg0/CfibYJous5uljiePAzu1V =rh24 -----END PGP SIGNATURE----- --cNdxnHkX5QqsyA0e-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 02:07:50 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id 04444106566C; Sat, 6 Oct 2012 02:07:50 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from [127.0.0.1] (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 6ECF514F574; Sat, 6 Oct 2012 02:07:49 +0000 (UTC) Message-ID: <506F9275.3090106@FreeBSD.org> Date: Fri, 05 Oct 2012 19:07:49 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: Baptiste Daroussin References: <20121005140534.GB61272@ithaqua.etoilebsd.net> In-Reply-To: <20121005140534.GB61272@ithaqua.etoilebsd.net> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 02:07:50 -0000 On 10/05/2012 07:05 AM, Baptiste Daroussin wrote: > Hi, > > I want to propose and make the actual move of the WWW information from the > pkg-descr to the Makefile itself via a WWW variable. > > doing this will have multiple benefits: > * consistency all metadata bug this one are in Makefile ... except for the distinfo data. > * speedup make describe avoiding using grep to get the informations (make > describe itself does not need speed but make index heavily use it and this > will definitly benefit from speed up) Agreed, but there are other ways to speed up 'make describe,' and tools like ports-mgmt/p5-FreeBSD-Portindex are a much better solution where "create an up to date INDEX quickly" is a real need. > * Third party tool will be able to probe the information more easily. Portmaster doesn't parse WWW for anything, but I have suggested to others in the past that 'while read' in sh is a faster method of finding the WWW than grep. In fact, 'make describe' uses this method now, not grep. I vaguely recall that this was done at my suggestion, but I'm too lazy to trace the commit path to confirm it. :) 'make www-site' (which already exists in case there is a 3rd party tool that needs it) uses a different method utilizing awk. I haven't tested which one is faster. I'm also concerned about the proliferation of things being jammed into the ports Makefile (and coincidentally, bpm). I've noticed that just about every operation that portmaster does using 'make -V' has gotten noticeably slower over the last 6-8 months, and the trend seems to be getting worse instead of better. > Do anyone have any concern about this? For all these reasons, and for the already-stated reason that it severely lowers the value of 'cat pkg-descr' (which I do quite often, and I'm sure other users do as well) I think this is a bad idea. Doug From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 03:52:14 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32782106566C for ; Sat, 6 Oct 2012 03:52:13 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.120]) by mx1.freebsd.org (Postfix) with ESMTP id 01AFF8FC12 for ; Sat, 6 Oct 2012 03:52:12 +0000 (UTC) X-Authority-Analysis: v=2.0 cv=CfKKFcXl c=1 sm=0 a=+L5dYfeubEW4PLvjDgtIXQ==:17 a=WAZfUmVf-EkA:10 a=PVFwVVAukM0A:10 a=05ChyHeVI94A:10 a=kj9zAlcOel0A:10 a=ayC55rCoAAAA:8 a=cExrluS1MYsA:10 a=GzfttSJt_VW5WeIrEdQA:9 a=CjuIK1q_8ugA:10 a=+L5dYfeubEW4PLvjDgtIXQ==:117 X-Cloudmark-Score: 0 X-Originating-IP: 76.184.157.127 Received: from [76.184.157.127] ([76.184.157.127:51880] helo=[10.0.0.7]) by cdptpa-oedge01.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTP id BC/36-11767-5EAAF605; Sat, 06 Oct 2012 03:52:06 +0000 Date: Fri, 05 Oct 2012 22:52:05 -0500 From: Paul Schmehl To: freebsd-ports@freebsd.org Message-ID: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: New OPTIONS structure - deselect all X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 03:52:14 -0000 I'm working on updating the barnyard2 port, and I'm changing the port to use the new OPTIONS structure. It seems no matter what I do, the first port OPTION is automatically selected. I've tried OPTIONS_DEFAULT=, OPTIONS_DEFAULT= none, and not using OPTIONS_DEFAULT at all. I do not want the first OPTION selected. I want them all deselected so the person installing can choose the appropriate ones for their situation. What's the secret sauce for this? I've looked through bsd.options.mk, but I can't see it. Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 03:52:45 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFE211065672 for ; Sat, 6 Oct 2012 03:52:45 +0000 (UTC) (envelope-from pathiaki2@yahoo.com) Received: from nm11-vm0.bullet.mail.sp2.yahoo.com (nm11-vm0.bullet.mail.sp2.yahoo.com [98.139.91.240]) by mx1.freebsd.org (Postfix) with SMTP id A1C7F8FC14 for ; Sat, 6 Oct 2012 03:52:45 +0000 (UTC) Received: from [72.30.22.78] by nm11.bullet.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 03:52:45 -0000 Received: from [72.30.22.39] by tm12.bullet.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 03:52:45 -0000 Received: from [127.0.0.1] by omp1069.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 03:52:45 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 156105.72247.bm@omp1069.mail.sp2.yahoo.com Received: (qmail 22600 invoked by uid 60001); 6 Oct 2012 03:52:44 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1349495564; bh=+VEbRkbzRJrPYKAxJof0KmDgz72DGIhljyg2tBI/B9A=; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:Cc:MIME-Version:Content-Type; b=J1MyBNorByCaP4tiGRYF4gJBSoAkheOKvnfrTN3hE5yEfYm3Hnqv22Mc6yvbRIpMwPbRdyXwJ6Uxhe2eDjMPybmXn+UqKT9kK9G7IbloYIS7IJ82VRE9SbTkhygzoNts3TtftaJk3jGxJxtcn7c0DeEUQf6iWUn0S2jOv5MD2hc= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:Cc:MIME-Version:Content-Type; b=MlHDtt/94Lqrh1s9SPwPEVvQCbuAr5ZxDhDGsb0+Nv90SNB+OFTn7sxhNPQySC0Oo3FCsxhXzjNxgxSy9tSZfYrP6XpMoxuOgu4JRWC3zTOXntJdRdf0RWodO8yj0rnLXQcoCnnumWPNZ4h3XTWcX35oPONx5XtFfmDpegFCTFg=; X-YMail-OSG: LzE6kqIVM1n3dQNmpZEeDtUFskmwVzJwrJK_C8LpxjrLGIH kxwaYWnKgY2SiUL5S303UaXA5AeUrlTu6uLwssbbpRlcgXXgTePAl2BBGb6h YGGVqHDgQ6dA07dKt7Aob.jX3INeY6V97VcCfh8SLsV5nx_ZZsFvC5YSAPuq M3VM_PlIFVA0DPbFd1RHFJonGVpkRKF5p9OClFMrWHgDvy9I5wmcZf94s5DF Y7Sc0V1LbkzJwEmHKcPdT1e2l5Z8cF89IQRICfK.foMqjInmvjGDezM6e1Zc p0i.y0QEWTFATs1z2TDMkMfHb852sDE0oq5_LsVrc6a.G.ArAFbAuaZAzC0l vON8ZZ6wdep7BE2MG.7MjU.lhCc4pDQq8HEZoM.Gv9crY7qmjjipTWv67ipj zztyI2tLTZTGjbWu24OWp1Zi_HvXbScYdRBS_ahyVJbg1v29HxwdLZzpQdke ._Vdljh7te2vmIthuYTqp3Cxg9MVoA5RLIelVogFq4EJD.Jq7 Received: from [71.10.241.250] by web110513.mail.gq1.yahoo.com via HTTP; Fri, 05 Oct 2012 20:52:44 PDT X-Mailer: YahooMailWebService/0.8.122.442 Message-ID: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> Date: Fri, 5 Oct 2012 20:52:44 -0700 (PDT) From: Paul Pathiakis To: "ports@freebsd.org" MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Kris Moore Subject: Ports request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Pathiakis List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 03:52:45 -0000 Good day, ports!=0A=0ASomething that I have noticed in the world of home de= sktops.... =A0although *BSD is total server package and I can do many thing= s.....=0AThe StEam platform from ValVe corp is a large step in gaming at th= is point.=0A=0AI have a 13 year old who has a slew of friends on this gamin= g platform. =A0Minecraft was a huge leap for gaming on the desktop on PC-BS= D. =A0My son loves using it on PC-BSD but STEAM is where he is spending mor= e than half his time.... on Windoze!!=0A=0AStEam is in the process of movin= g over to Linux. Please don't fall behind in the effort of bringing this pl= atform to BSD.=0A=0AI've experienced it myself and it is highly addictive..= .. It's also quite open in many ways.=0A=0AThank you for your time on this,= =0A=0APaul Pathiakis=0AAtlantis Services=0AOwner From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 04:25:01 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99684106566B for ; Sat, 6 Oct 2012 04:25:01 +0000 (UTC) (envelope-from noidmvp@gmail.com) Received: from mail-oa0-f54.google.com (mail-oa0-f54.google.com [209.85.219.54]) by mx1.freebsd.org (Postfix) with ESMTP id 51C818FC0C for ; Sat, 6 Oct 2012 04:25:01 +0000 (UTC) Received: by mail-oa0-f54.google.com with SMTP id n9so3161207oag.13 for ; Fri, 05 Oct 2012 21:25:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=k68kJWOjhijqLYDMqXsk1sZMI86bKAHXqX1rzhyfR2E=; b=VvdguXR+m9I9HC4sh4LQUQG9WAOM57DUvZA5ZSm8mgnRN6OoD4z2g5RMpURbVHBToP sH0P8PmFC/NcZH4y15AYxRwGNcDqDRr6+LSppiD+o7dOGhhNcVu8H0NriDBQvGXUjbNu Mt4tmSgeclEZKcHK1PJbGXufFBfUULjM1flcW3kJnLsiCt2qhbgfJnQ2GdkzBkpOfeKn iuvmZMD1DLsH2yqtgQU1fOpbznY98Q0VOJgF/88CXOH3ln4MUuBZlXH3Y17PgyJDwixG SM3iaSLueaGvxiS9Q/qq5dFxGzvOxdw0lOMTIYDZMUqTV0UxcZW4MjvIoYePn8do/6kL yHEA== MIME-Version: 1.0 Received: by 10.60.11.67 with SMTP id o3mr8864322oeb.43.1349497500429; Fri, 05 Oct 2012 21:25:00 -0700 (PDT) Received: by 10.76.151.138 with HTTP; Fri, 5 Oct 2012 21:25:00 -0700 (PDT) In-Reply-To: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> References: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> Date: Sat, 6 Oct 2012 01:25:00 -0300 Message-ID: From: marcos alves To: Paul Pathiakis Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "ports@freebsd.org" , Kris Moore Subject: Re: Ports request 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, 06 Oct 2012 04:25:01 -0000 Hello, I had a small discussion with friends about this topic at work. But... comes out that are few linux games that runs on steam. Maybe the only big sensation will be the left4dead that is coming with the plataform release. Not saying that is not worth to port it... But about the games your son will be playing. Marcos Alves 2012/10/6 Paul Pathiakis > Good day, ports! > > Something that I have noticed in the world of home desktops.... although > *BSD is total server package and I can do many things..... > The StEam platform from ValVe corp is a large step in gaming at this point. > > I have a 13 year old who has a slew of friends on this gaming platform. > Minecraft was a huge leap for gaming on the desktop on PC-BSD. My son > loves using it on PC-BSD but STEAM is where he is spending more than half > his time.... on Windoze!! > > StEam is in the process of moving over to Linux. Please don't fall behind > in the effort of bringing this platform to BSD. > > I've experienced it myself and it is highly addictive.... It's also quite > open in many ways. > > Thank you for your time on this, > > Paul Pathiakis > Atlantis Services > Owner > _______________________________________________ > 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 Sat Oct 6 03:47:07 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18A7B1065672 for ; Sat, 6 Oct 2012 03:47:07 +0000 (UTC) (envelope-from pathiaki2@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 DEE458FC0A for ; Sat, 6 Oct 2012 03:47:06 +0000 (UTC) Received: from [98.139.91.62] by nm7.bullet.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 03:47:00 -0000 Received: from [98.139.91.33] by tm2.bullet.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 03:47:00 -0000 Received: from [127.0.0.1] by omp1033.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 03:47:00 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 911938.83816.bm@omp1033.mail.sp2.yahoo.com Received: (qmail 18673 invoked by uid 60001); 6 Oct 2012 03:47:00 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1349495220; bh=D+hQ7Kzhk8+t4WH6Zy1uigj816oV+o0nIrE2nKUfjnU=; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:Cc:MIME-Version:Content-Type; b=MDWDO1ST5J3LmNpnu9zVa88Oy7vjgyomSYCIKHV/Hw8WXT2Pddr2cFSpQheBs5IbRIBB708IQJew7Wf7qWVPYSlqeplCOHdoYF+WwUz2QzeHUU9rp/ryrvtlMfaxoym9mpGAR7wzZFjG/WgIbUcnYSoricRppwV2nUQjFm9zkSk= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Message-ID:Date:From:Reply-To:Subject:To:Cc:MIME-Version:Content-Type; b=sFr9iJSOsXex5hE6ZeT+2difaE8XeiuvBj5XeB6bgUOZ4/MF5c1WfFVtP3JYimR70uSgK+gBn3RlHvAE/V35gsp69bdKJtH9qBNo09BueOTPn7zWieyK0P7oChecvyaDDOIoDAk7lleKaUx5xTb0dzlJVOV9A7TZtZVRQd4MCp8=; X-YMail-OSG: 82IF9VkVM1kUi8umar3.poLlUQ48seFV2gKp.RIvZwoIj9h OMARQou_SkOT8FlPUuyYAKlBV0PjQjFBnb2JhnQ4Q53f2NENRm6flfhwSHdL .xH7bybBXPxb4bv9wBqQHSlw2g7YZWJ1keUwqAZayAYJ359TmZOWS5ntbFB3 drQCkdO_h7xqZ1oplvCEcLlTvxLJ6sz5r1nMCFWhFyk1D6_BNRd7k0a2k7Pj cq2pPuf47_pggiby13zAMFC64VjJ6UZYT30Qt3ZPpen58Xt9PDKG1d2A1cnf po7jg1xYn7mxPsEArwNpWjYhAwmLY3GqUWeDRUaSf0UvQ3Pm5lRycd8VWs8F AZHOQS9Xn6BFPpzHlOCfW8BSgjfXLElp5wwVwJhRpyrOW2PeQxLMnLmPRt8W mL13U9Hi7NDcraSvMtyhh0eGgHZYUwK_z7eVi8w2UCUbrpaOknNV4Mm.5E1q CRUDcYdFp.oEov19boBk_4b35_R9GeRejMkNEd2LNVffTtrjf2sKNJo66Sco - Received: from [71.10.241.250] by web110513.mail.gq1.yahoo.com via HTTP; Fri, 05 Oct 2012 20:46:59 PDT X-Mailer: YahooMailWebService/0.8.122.442 Message-ID: <1349495219.13315.YahooMailNeo@web110513.mail.gq1.yahoo.com> Date: Fri, 5 Oct 2012 20:46:59 -0700 (PDT) From: Paul Pathiakis To: "ports@freebsd.org" MIME-Version: 1.0 X-Mailman-Approved-At: Sat, 06 Oct 2012 04:49:35 +0000 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Kris Moore Subject: Port Request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Pathiakis List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 03:47:07 -0000 Good day, ports!=0A=0AA new port request that is probably critical to movin= g forward with a total collaborative service.... =A0I don't see Zimbra anyw= here.=0A=0ACould you please check into this and see what the possibility is= ?=0A=0AThank you,=0A=0APaul Pathiakis=0AAtlantis Services=0AOwner From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:00:50 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6D5C1065672 for ; Sat, 6 Oct 2012 05:00:50 +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 A1ADB8FC08 for ; Sat, 6 Oct 2012 05:00:50 +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 q9650ofH069363 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 5 Oct 2012 22:00:50 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.14.2/Submit) with UUCP id q9650oJn069362; Fri, 5 Oct 2012 22:00:50 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: from fbsd81 ([192.168.200.81]) by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA03831; Fri, 5 Oct 12 21:49:01 PDT Date: Fri, 05 Oct 2012 21:48:58 -0700 From: perryh@pluto.rain.com (Perry Hutchison) To: pathiaki2@yahoo.com Message-Id: <50701aaa.Zqdc5oPcV+oax0nT%perryh@pluto.rain.com> References: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> In-Reply-To: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.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: ports@freebsd.org, kris@pcbsd.org Subject: Re: Ports request 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, 06 Oct 2012 05:00:50 -0000 Paul Pathiakis wrote: > The StEam platform from ValVe corp is a large step in gaming at > this point ... StEam is in the process of moving over to Linux. > Please don't fall behind in the effort of bringing this platform > to BSD. Had you considered trying to run their Linux version on FreeBSD under Linux emulation? (Having no interest at all in gaming, I'm personally not motivated.) From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:01:48 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69799106564A for ; Sat, 6 Oct 2012 05:01:48 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from zoom.lafn.org (zoom.lafn.org [108.92.93.123]) by mx1.freebsd.org (Postfix) with ESMTP id 3DF818FC08 for ; Sat, 6 Oct 2012 05:01:47 +0000 (UTC) Received: from [10.0.1.2] (pool-98-112-217-228.lsanca.fios.verizon.net [98.112.217.228]) (authenticated bits=0) by zoom.lafn.org (8.14.3/8.14.2) with ESMTP id q9651kGr018299 for ; Fri, 5 Oct 2012 22:01:46 -0700 (PDT) (envelope-from bc979@lafn.org) From: Doug Hardie Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Date: Fri, 5 Oct 2012 22:01:45 -0700 Message-Id: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> To: FreeBSD-PORTS Mime-Version: 1.0 (Apple Message framework v1283) X-Mailer: Apple Mail (2.1283) X-Virus-Scanned: clamav-milter 0.97 at zoom.lafn.org X-Virus-Status: Clean Subject: New Port Options 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, 06 Oct 2012 05:01:48 -0000 I just converted a port over to the new options structure and have a few = observations. I have not been involved in any of the discussions about = the structure as I didn't have the time to get involved. However, a = couple things came to mind during the process: 1. The Port handbook is actually quite good in the information it = provides. However, it does presume that you know a few things about the = port structure that are probably common knowledge to anyone involved = with it, but not to those of us who just "use" it. The first update I = made to the Makefile cause a slew of make errors that were pretty much = useless. They meant nothing to me. My first thought was that somehow I = had munged one of the includes and managed to include some random file = rather than the right one. My second idea was that I had typed the option names wrong, but that = didn't seem to fit with the error messages either. After quite a while = of reading the handbook, I noticed that in the PORT_OPTIONS clause you = have to precede the option name with a M. That is not at all obvious = and is easily missed. Why an M is also baffling. I am sure there is a = reason other then it just won't work otherwise. 2. The syntax for a conditional expression for an option that is = selected is completely different from that for an option that is not = selected. That is just weird. The use of {} for one and () for the = other again must have some reason other than it just won't work = otherwise. No clue is given in the handbook. 3. The examples are a bit difficult to distinguish between {} and (). = I had to look quite a few times before I figured that out. 4. The handbook shows for submitting a change to a port the use of a = regular diff. My recollection is that the last time a unified diff was = requested so that things like the file names show. I only maintain one port so the effort to make the changes would have = been quite minor for additional ports. Its really not that big a change = from the maintainer's point of view.= From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:07:48 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2950C106566B for ; Sat, 6 Oct 2012 05:07:48 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id A8FBE8FC0A for ; Sat, 6 Oct 2012 05:07:47 +0000 (UTC) Received: by mail-we0-f182.google.com with SMTP id x43so1832919wey.13 for ; Fri, 05 Oct 2012 22:07:40 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=Zdrs7i6TnPjY4XNlvgxImFosKIxctv5/kM8YfKsLB08=; b=FXE2xFfFJRVwA2wY7/o30Sa6GFCdQt4rVbHYficyJZfPLL5/vSxpFt7MF7mWsHfKkx db9uruLBYWAPd4VunGFOvJfWzQdxIsDKJqd4Ajn3w+AHA04JqRAeiAXc7xsB09FzzNSB HAGKkWnEnknf++MZSGLTKJ6mMCq2qhZOFykzJASAN8KAelLl3JA1WahJuQFWn9bYFhEy 3jc1Q8UkekPDcvaqp9ffYz53W0PE+GyNBqzUrCU1bdmgG0QYShQVjTu0sNCcpLh42mJb bwt6EwSIu1VDYZz8usPyjw8+HMD1OS07zcmys9r/YSpKnm3QVBELAdosO/VIq4TAkaM9 dchw== MIME-Version: 1.0 Received: by 10.216.72.5 with SMTP id s5mr6463060wed.154.1349500060637; Fri, 05 Oct 2012 22:07:40 -0700 (PDT) Sender: bsd-src@helfman.org Received: by 10.194.81.136 with HTTP; Fri, 5 Oct 2012 22:07:40 -0700 (PDT) In-Reply-To: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> References: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> Date: Fri, 5 Oct 2012 22:07:40 -0700 X-Google-Sender-Auth: zFBmssCXW60IXKBoKkpxYdiERvE Message-ID: From: Jason Helfman To: Paul Schmehl X-Gm-Message-State: ALoCoQk5SfRk2VGNYiINxA7cIjWJ0Z20pEZRb3dy+lrU9+En3pjzrJk80JY4SAAU3CNUO/7s6e/e Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: New OPTIONS structure - deselect all 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, 06 Oct 2012 05:07:48 -0000 On Fri, Oct 5, 2012 at 8:52 PM, Paul Schmehl wrote: > I'm working on updating the barnyard2 port, and I'm changing the port to > use the new OPTIONS structure. It seems no matter what I do, the first > port OPTION is automatically selected. > > I've tried OPTIONS_DEFAULT=, OPTIONS_DEFAULT= none, and not using > OPTIONS_DEFAULT at all. I do not want the first OPTION selected. I want > them all deselected so the person installing can choose the appropriate > ones for their situation. > > What's the secret sauce for this? I've looked through bsd.options.mk, > but I can't see it. > > Paul Schmehl, Senior Infosec Analyst > As if it wasn't already obvious, my opinions > are my own and not those of my employer. > ********************************************* > "It is as useless to argue with those who have > renounced the use of reason as to administer > medication to the dead." Thomas Jefferson > "There are some ideas so wrong that only a very > intelligent person could believe in them." George Orwell > > ______________________________**_________________ > 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 > " > If you want no option selected, you would define them all, and set nothing for OPTIONS_DEFAULT Here is an example. OPTIONS_SET= OPTION1 OPTION2 OPTIONS1_DESC= My first option OPTIONS2_DESC= My second option .if ${PORT_OPTIONS:MOPTION1} do something .endif Additionally, the documentation on Options in the Handbook has been updated and should be helpful, as well. If it isn't we can clean it up. http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html#AEN2666 HTH -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:13:53 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49F0C106564A for ; Sat, 6 Oct 2012 05:13:53 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qa0-f47.google.com (mail-qa0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id F13438FC08 for ; Sat, 6 Oct 2012 05:13:52 +0000 (UTC) Received: by mail-qa0-f47.google.com with SMTP id i29so1029485qaf.13 for ; Fri, 05 Oct 2012 22:13:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding:content-type; bh=jcr98iYfSIHHjxmMyO4ophgSQ9y1vDrSPSCiRA/1Rjs=; b=ms4EcB6oqYhwm7tNRxJyW+iy1ByV0JgK9tkM2CvUfNGZtkXM4XQHpdP5jMGXNuMsC6 CvU3v8dlsW3OALHXR//l5KtYH6RmgvSaGtxy1nX8gpvdYBSQzzFyPfMzX8bUOz1FGEu9 WX56wXiyXAP6GG5ANwTHNhezA00q0soVCD2N7hIk53LMze0hg5wvqnJOQcLKFd+hydn2 x3Q+1JrkwyAGCI9vHdW2654mGVdmV/veWY/bWKZRQJECcvVrjlxW05GZv7XoWtP2LLL3 TRlQ/YDYvxBDiRW9PLBjIoI2NT1sNJuZicvaSd8VBJ+SI3+Eq4iN9mZ7cdKmo/OD0A6J A/WQ== Received: by 10.224.78.140 with SMTP id l12mr20455428qak.48.1349500432195; Fri, 05 Oct 2012 22:13:52 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id a8sm11956115qew.11.2012.10.05.22.13.51 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Oct 2012 22:13:51 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: freebsd-ports@freebsd.org, Paul Schmehl Date: Sat, 06 Oct 2012 01:13:49 -0400 Message-ID: <3042995.QlesYJZztz@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> References: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: Subject: Re: New OPTIONS structure - deselect all 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, 06 Oct 2012 05:13:53 -0000 On Friday, October 05, 2012 22:52:05 Paul Schmehl wrote: > I'm working on updating the barnyard2 port, and I'm changing the port to > use the new OPTIONS structure. It seems no matter what I do, the first > port OPTION is automatically selected. > > I've tried OPTIONS_DEFAULT=, OPTIONS_DEFAULT= none, and not using > OPTIONS_DEFAULT at all. I do not want the first OPTION selected. I want > them all deselected so the person installing can choose the appropriate > ones for their situation. > > What's the secret sauce for this? I've looked through bsd.options.mk, but > I can't see it. > If you want all options deselected by defaut, either use OPTIONS_DEFAULT= #empty or don't define it at all. NLS, DOCS, and EXAMPLES are on by default even if they are not in OPTIONS_DEFAULT. If you are getting something other than this in your tests, make sure you don't have anything in /etc/make.conf to set the unwanted options. Also run #make rmconfig to make sure you are starting clean. Otherwise, it would be helpful to see what you have so far in the Makefile...pastebin it or attach it. - Jason From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:15:47 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A45B1065673 for ; Sat, 6 Oct 2012 05:15:47 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.120]) by mx1.freebsd.org (Postfix) with ESMTP id 1C4858FC14 for ; Sat, 6 Oct 2012 05:15:46 +0000 (UTC) X-Authority-Analysis: v=2.0 cv=QrvcLCOd c=1 sm=0 a=+L5dYfeubEW4PLvjDgtIXQ==:17 a=WAZfUmVf-EkA:10 a=fuuDtHIhaboA:10 a=05ChyHeVI94A:10 a=kj9zAlcOel0A:10 a=ayC55rCoAAAA:8 a=D0ojU0MOu28A:10 a=6I5d2MoRAAAA:8 a=hsw3aXMMlcGkp2rLuf8A:9 a=CjuIK1q_8ugA:10 a=SV7veod9ZcQA:10 a=+L5dYfeubEW4PLvjDgtIXQ==:117 X-Cloudmark-Score: 0 X-Originating-IP: 76.184.157.127 Received: from [76.184.157.127] ([76.184.157.127:53145] helo=[10.0.0.7]) by cdptpa-oedge04.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTP id 93/39-28917-08EBF605; Sat, 06 Oct 2012 05:15:45 +0000 Date: Sat, 06 Oct 2012 00:15:44 -0500 From: Paul Schmehl To: freebsd-ports@freebsd.org Message-ID: <6A0400CD58596D68FAA6442E@Pauls-MacBook-Pro.local> In-Reply-To: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> References: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: New OPTIONS structure - deselect all X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 05:15:47 -0000 --On October 5, 2012 10:52:05 PM -0500 Paul Schmehl wrote: > I'm working on updating the barnyard2 port, and I'm changing the port to > use the new OPTIONS structure. It seems no matter what I do, the first > port OPTION is automatically selected. > > I've tried OPTIONS_DEFAULT=, OPTIONS_DEFAULT= none, and not using > OPTIONS_DEFAULT at all. I do not want the first OPTION selected. I want > them all deselected so the person installing can choose the appropriate > ones for their situation. > > What's the secret sauce for this? I've looked through bsd.options.mk, > but I can't see it. > Never mind. I ran make rmconfig and now none are selected. > Paul Schmehl, Senior Infosec Analyst > As if it wasn't already obvious, my opinions > are my own and not those of my employer. > ******************************************* > "It is as useless to argue with those who have > renounced the use of reason as to administer > medication to the dead." Thomas Jefferson > "There are some ideas so wrong that only a very > intelligent person could believe in them." George Orwell > > _______________________________________________ > 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" > Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* "It is as useless to argue with those who have renounced the use of reason as to administer medication to the dead." Thomas Jefferson "There are some ideas so wrong that only a very intelligent person could believe in them." George Orwell From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:19:38 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40C8F106566B; Sat, 6 Oct 2012 05:19:36 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 67D1C8FC0A; Sat, 6 Oct 2012 05:19:35 +0000 (UTC) Received: by mail-qa0-f54.google.com with SMTP id y23so907385qad.13 for ; Fri, 05 Oct 2012 22:19:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding:content-type; bh=76kmRS8DXDxbcYbWIJz+wScWc8VWEYfQ3aL1eOAZc+Y=; b=Rd/f64Xe3rS+zLRezLeSxX6KukXCENo/Oy/lqdksmk152UQBeeeNg8kYZeaxVoUOSw 5fVHuF9/xWcvFQjVyd7NfWnxW91r85r/vu2/eRObAwcqfXa9YwlIDF6N3PolBNoUFRhw n4a1faE2Y6DZKA4Crf4CWhYhtKz2J/XTAPPg6b85gqziPD4INYMwwAbZh8jACDh5hSss /h8m9dIbhQtuL3cZQ7MFG+vA7ulxnBADBkWx0TGm5vPvSWYsiTyH2IkzsmNH2ntXOvjh 9TUV+BC6y+dSCo8Otkae1t/XZe26XfF1vHiN6EqiRggs3V3MzACTjIhc2duNc5uRevdb biaQ== Received: by 10.224.177.70 with SMTP id bh6mr4024803qab.31.1349500769236; Fri, 05 Oct 2012 22:19:29 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id ch3sm11840258qab.9.2012.10.05.22.19.28 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Oct 2012 22:19:28 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: freebsd-ports@freebsd.org Date: Sat, 06 Oct 2012 01:19:27 -0400 Message-ID: <1633411.OOkcku2oeL@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: References: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: Paul Schmehl , Jason Helfman Subject: Re: New OPTIONS structure - deselect all 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, 06 Oct 2012 05:19:38 -0000 On Friday, October 05, 2012 22:07:40 Jason Helfman wrote: > OPTIONS_SET= OPTION1 OPTION2 > That should be OPTIONS_DEFINE= OPTION1 OPTION2 OPTIONS_SET should only be used in /etc/make.conf to set global options. - Jason From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 05:25:58 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AF5B1065672 for ; Sat, 6 Oct 2012 05:25:58 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-wi0-f172.google.com (mail-wi0-f172.google.com [209.85.212.172]) by mx1.freebsd.org (Postfix) with ESMTP id 15FC68FC0A for ; Sat, 6 Oct 2012 05:25:57 +0000 (UTC) Received: by mail-wi0-f172.google.com with SMTP id hq12so1343834wib.13 for ; Fri, 05 Oct 2012 22:25:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :x-gm-message-state; bh=hiUtNWVys2HLB+/abCHi3v/gqtqSo5XwSFGJWB2iRcY=; b=Z6yrZP/RJHELlm8IQN9mXs6WpzuBCv7dHODPGX4xGWtsa+k8622RvpjNE/yYpurYeK U+JEocMAkgsrBcDGTQyidqi8CEAlWIipKIARhUDnVLkwYBFYToLB7BaA3xJpvezGX8k/ E+MZC+sCaFjsHu3slYXZ2q/aM9fW7maAlQe+B9ik7DKm4raNv6kUcdh9B8jwDHr1FXve OOsrY5b+uP534doUU3kv7J3m4MY6r40c0xgmo3H1Gborhxy1dPv8vj5yjDxibskX8JQF iNmkx6ZniYL/FMk9cxihmVPovSqEls/j/RwcZFeJ1MQcy9lyyqBRZhnnd/l9H72nKTSA Vn7w== MIME-Version: 1.0 Received: by 10.216.193.220 with SMTP id k70mr6882932wen.35.1349501156858; Fri, 05 Oct 2012 22:25:56 -0700 (PDT) Sender: bsd-src@helfman.org Received: by 10.194.81.136 with HTTP; Fri, 5 Oct 2012 22:25:56 -0700 (PDT) In-Reply-To: <1633411.OOkcku2oeL@mocha.verizon.net> References: <3D7A4CDD9A4D443F0689F6BD@Pauls-MacBook-Pro.local> <1633411.OOkcku2oeL@mocha.verizon.net> Date: Fri, 5 Oct 2012 22:25:56 -0700 X-Google-Sender-Auth: iIsIbKbrL0yGSFH0n4wBfYV_Plc Message-ID: From: Jason Helfman To: "Jason E. Hale" , ports@freebsd.org X-Gm-Message-State: ALoCoQmvI677h4LBCoJKG0rf9JShwapxrCccsgoztqrjhDalJB9d1Dsxfx7jAmk6r6om3MZNJYI+ Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: New OPTIONS structure - deselect all 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, 06 Oct 2012 05:25:58 -0000 On Fri, Oct 5, 2012 at 10:19 PM, Jason E. Hale wrote: > On Friday, October 05, 2012 22:07:40 Jason Helfman wrote: > > OPTIONS_SET= OPTION1 OPTION2 > > > That should be OPTIONS_DEFINE= OPTION1 OPTION2 > OPTIONS_SET should only be used in /etc/make.conf to set global options. > > - Jason > > Ah, yes. Mixed them up. Thanks. -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 06:01:20 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA092106564A; Sat, 6 Oct 2012 06:01:19 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from smtp.owt.com (smtp.owt.com [64.146.239.50]) by mx1.freebsd.org (Postfix) with ESMTP id BD41B8FC14; Sat, 6 Oct 2012 06:01:19 +0000 (UTC) Received: from kstewart3.owt.com (kstewart3.owt.com [64.146.237.229]) (authenticated bits=0) by smtp.owt.com (8.13.8/8.13.8) with ESMTP id q9661AlD025702 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 5 Oct 2012 23:01:11 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=owt.com; s=default; t=1349503272; bh=ZR8ojYXSumtxeqPKmJZeNMQkDs+ay06nYApMKsYULh0=; h=From:To:Subject:Date:Cc:References:In-Reply-To:MIME-Version: Content-Type:Content-Transfer-Encoding:Message-Id; b=fayk5d41w48X0 BZwvUFcVBxy3jgbyXJP3LN21YhYAEarxU6/lZ+z8ZmBLaCYtNvSQqK4V/EmTt0ZX4mf kLpC2maWRkByYhdbu9pFNbPlrxVHKyTHDSmfjnCVyhAO+qY314jU/nPQZqnPRREgW2s W5a20CUh0bpawNBZrWVyW2Os= From: Kent Stewart Organization: owt.com To: freebsd-ports@freebsd.org Date: Fri, 5 Oct 2012 23:01:07 -0700 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.7.4; i386; ; ) References: <506F4D3D.8070509@matik.com.br> In-Reply-To: <506F4D3D.8070509@matik.com.br> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201210052301.08268.kstewart@owt.com> Cc: Christopher Dawkins , kde@freebsd.org, joaoBR , jaapb@kerguelen.org Subject: Re: [kde-freebsd] kdenetwork-4.8.4_2 and libotr 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, 06 Oct 2012 06:01:20 -0000 On Friday 05 October 2012 14:12:29 joaoBR wrote: > On 23/09/2012 18:36, Christopher Dawkins wrote: > > I am sorry to bring this to your attention: you all do a lot of work > > that considerably benefits me and many others. > > > > > > But I cannot compile kdenetwork-4.8.4_2 because it seems to need libotr3. > > > > The advice in 20120908 seems irrelevant because I am not using > > pidgin-otr, anyway, it cannot work because there is no libotr3 port or > > directory. > > ... somebody else wrote > > > If you look at the current Makefile, it has > > > > otr.4:${PORTSDIR}/security/libotr3 \ > > > > I don't see how you all have been making it build with that setup.. > > seems you're not getting what's the deal > > otr.4 is from libotr3, the Makefile is ok You have it backwards. Libotr3 is for the version 3.x # $FreeBSD: ports/security/libotr/Makefile,v 1.30 2012/09/08 07:03:21 dougb Exp $ PORTNAME= libotr PORTVERSION= 4.0.0 > > there is now libotr3 and libotr4, the former is needed by kde4 > > it is not an upgrade of libotr even if it is described as so, it is a > new additional version > > libotr4 unfortunately assumed the ports dir from the older port, it > could have been much more stressless and smarter making it > security/libotr4 but they did it the spaghetti way ... > > so now the old port and actual kde dependency is in security/libotr3 > > in order to make it work you first need to run like explained in UPDATE > > portugrade -o security/libotr3 security/libotr > > now you can upgrade kdenetwork and eventually any other port which > depends on libotr3 > > > []s From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 06:45:55 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B869D106566C for ; Sat, 6 Oct 2012 06:45:55 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3EB9F8FC16 for ; Sat, 6 Oct 2012 06:45:54 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1261322bkc.13 for ; Fri, 05 Oct 2012 23:45:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=GrNa9vdx4YcI4AzoMI211e8SfWrl2LAIWBjhJKt4ysM=; b=Jl7P8iL6lrnJXR2pVtoBuqAPnBDwOHtc7rgIMkj/4hkChJY3e9AQMatK1GddfJ44FF ZhLivzdMquvpbrIhKb+upLbE8nSNuiO5zYWMS3wDkbCt3zxx7HnmCTukd00+nCwAqUkA Q7pqm/o5nv27YtvcA5BaF7/P4KMvJDwBo+DYlh1aEAjQgyfkubnUTOkwubkOiSTGEOTr 5KKdFaC4XWvm4eUTj66ptZ4g2vHWapFdSdtn7bjgh2ZOQxlS9tVYyX/Jv8vmuMCH89t2 z0yT7IVwJ8/k7H8o/a0nfip7HjaQgyqMlcYl+mQ6NZonoR+JbJ4XnlcD1Ga9TX2GMSin bQqA== Received: by 10.204.156.74 with SMTP id v10mr3529640bkw.39.1349505953921; Fri, 05 Oct 2012 23:45:53 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Fri, 5 Oct 2012 23:45:23 -0700 (PDT) In-Reply-To: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> References: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> From: Chris Rees Date: Sat, 6 Oct 2012 07:45:23 +0100 X-Google-Sender-Auth: gVYhzo1xzQzxABAySnttlGvFm1A Message-ID: To: Paul Pathiakis Content-Type: text/plain; charset=ISO-8859-1 Cc: "ports@freebsd.org" , Kris Moore Subject: Re: Ports request 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, 06 Oct 2012 06:45:55 -0000 On 6 October 2012 04:52, Paul Pathiakis wrote: > Good day, ports! > > Something that I have noticed in the world of home desktops.... although *BSD is total server package and I can do many things..... > The StEam platform from ValVe corp is a large step in gaming at this point. > > I have a 13 year old who has a slew of friends on this gaming platform. Minecraft was a huge leap for gaming on the desktop on PC-BSD. My son loves using it on PC-BSD but STEAM is where he is spending more than half his time.... on Windoze!! > > StEam is in the process of moving over to Linux. Please don't fall behind in the effort of bringing this platform to BSD. Don't be fooled-- the people responsible for bringing Steam to Linux are the guys at Valve, not the "Linux people", whoever they are. Being non-free software, we are almost powerless in porting it. It does run great under Wine however. Chris From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 07:24:36 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A578106566B; Sat, 6 Oct 2012 07:24:36 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 134C78FC0A; Sat, 6 Oct 2012 07:24:35 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q967OSFB032656; Sat, 6 Oct 2012 08:24:28 +0100 (BST) (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q967OSFB032656 Authentication-Results: smtp.infracaninophile.co.uk/q967OSFB032656; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host localhost [IPv6:::1] claimed to be lucid-nonsense.infracaninophile.co.uk Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.5/8.14.5/Submit) id q967OSOt032655; Sat, 6 Oct 2012 08:24:28 +0100 (BST) (envelope-from matthew) Resent-From: Matthew Seaman Resent-Date: Sat, 6 Oct 2012 08:24:28 +0100 Resent-Message-ID: <20121006072428.GA32558@smtp.infracaninophile.co.uk> Resent-To: Baptiste Daroussin , ports@FreeBSD.org, Doug Barton Message-ID: <506FDA99.9060907@FreeBSD.org> Date: Sat, 06 Oct 2012 08:15:37 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Doug Barton References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <506F9275.3090106@FreeBSD.org> In-Reply-To: <506F9275.3090106@FreeBSD.org> X-Enigmail-Version: 1.4.4 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig3408BD5D7A24867A83264411" X-Virus-Scanned: clamav-milter 0.97.6 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: ports@FreeBSD.org, Baptiste Daroussin Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 07:24:36 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig3408BD5D7A24867A83264411 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 06/10/2012 03:07, Doug Barton wrote: >> * speedup make describe avoiding using grep to get the informations (= make >> > describe itself does not need speed but make index heavily use it= and this >> > will definitly benefit from speed up) > Agreed, but there are other ways to speed up 'make describe,' and tools= > like ports-mgmt/p5-FreeBSD-Portindex are a much better solution where > "create an up to date INDEX quickly" is a real need. Putting the WWW information into the port Makefile means that portindex only has to deal with about half as many files (ie. down from about 46,000 to 23,000) to do an incremental update or cache init. I'm pretty sure that's going to speed things up. Maybe not hugely, as the vast majority of the time portindex takes is down to the 200ms or so it requires for make(1) to parse each of the Makefiles. Also, if you'ld like a single fairly readable file for each port with a summary of what it does, portindex did grow the capability to generate the README.html files (as in 'make readmes') quite recently. It generates pretty nasty HTML at the moment (just like 'make readmes' does) but if there's any interest, I'd be happy for it to produce whatever format people want. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig3408BD5D7A24867A83264411 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://www.enigmail.net/ iEYEARECAAYFAlBv2qEACgkQ8Mjk52CukIyw5wCfUPlEMLJdvfjK5GDDIsvd+u0F PLoAn25zkeLZxbwiSPYSBUEWwceNQK5B =yojX -----END PGP SIGNATURE----- --------------enig3408BD5D7A24867A83264411-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 08:04:12 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C1161065670; Sat, 6 Oct 2012 08:04:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4B2568FC08; Sat, 6 Oct 2012 08:04:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9684Ctn001777; Sat, 6 Oct 2012 08:04:12 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9684Cn9001776; Sat, 6 Oct 2012 08:04:12 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 10:04:09 +0200 From: Baptiste Daroussin To: Doug Barton Message-ID: <20121006080409.GA30675@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <506F9275.3090106@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline In-Reply-To: <506F9275.3090106@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 08:04:12 -0000 --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 07:07:49PM -0700, Doug Barton wrote: > On 10/05/2012 07:05 AM, Baptiste Daroussin wrote: > > Hi, > >=20 > > I want to propose and make the actual move of the WWW information from = the > > pkg-descr to the Makefile itself via a WWW variable. > >=20 > > doing this will have multiple benefits: > > * consistency all metadata bug this one are in Makefile >=20 > ... except for the distinfo data. =2E.. >=20 > > * speedup make describe avoiding using grep to get the informations (m= ake > > describe itself does not need speed but make index heavily use it an= d this > > will definitly benefit from speed up) >=20 > Agreed, but there are other ways to speed up 'make describe,' and tools > like ports-mgmt/p5-FreeBSD-Portindex are a much better solution where > "create an up to date INDEX quickly" is a real need. This sounds like: we have a problem, instead of fixing it let's workaround = it >=20 > > * Third party tool will be able to probe the information more easily. >=20 > Portmaster doesn't parse WWW for anything, but I have suggested to > others in the past that 'while read' in sh is a faster method of finding > the WWW than grep. In fact, 'make describe' uses this method now, not > grep. I vaguely recall that this was done at my suggestion, but I'm too > lazy to trace the commit path to confirm it. :) 'make www-site' (which > already exists in case there is a 3rd party tool that needs it) uses a > different method utilizing awk. I haven't tested which one is faster. >=20 > I'm also concerned about the proliferation of things being jammed into > the ports Makefile (and coincidentally, bpm). I've noticed that just > about every operation that portmaster does using 'make -V' has gotten > noticeably slower over the last 6-8 months, and the trend seems to be > getting worse instead of better. make www-site already exists and will be made faster, and nothing else will= be added, but things will be removed... I don't see the proliferation here but rather a cleanup. Concerning the bpm, I have removed more old things and useless tests from it that I have added! and if people were actively working on switching there p= orts to the new option framework then the fallback code could be removed and this will speed up lots of operations. >=20 > > Do anyone have any concern about this? >=20 > For all these reasons, and for the already-stated reason that it > severely lowers the value of 'cat pkg-descr' (which I do quite often, > and I'm sure other users do as well) I think this is a bad idea. >=20 > Doug >=20 --M9NhX3UHpAaciwkO Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBv5fkACgkQ8kTtMUmk6Ex66ACgu05AcwOrEXl3zd/tU332es8h b3EAn3SPqYdytFJwUbhH8Wb1HtjcsMET =LEZM -----END PGP SIGNATURE----- --M9NhX3UHpAaciwkO-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 08:13:46 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61D02106566C for ; Sat, 6 Oct 2012 08:13:44 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8F9D08FC08; Sat, 6 Oct 2012 08:13:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q968DihG003971; Sat, 6 Oct 2012 08:13:44 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q968DiXX003970; Sat, 6 Oct 2012 08:13:44 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 10:13:41 +0200 From: Baptiste Daroussin To: Doug Hardie Message-ID: <20121006081341.GC30675@ithaqua.etoilebsd.net> References: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="adJ1OR3c6QgCpb/j" Content-Disposition: inline In-Reply-To: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: FreeBSD-PORTS Subject: Re: New Port Options 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, 06 Oct 2012 08:13:46 -0000 --adJ1OR3c6QgCpb/j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 05, 2012 at 10:01:45PM -0700, Doug Hardie wrote: > I just converted a port over to the new options structure and have a few = observations. I have not been involved in any of the discussions about the= structure as I didn't have the time to get involved. However, a couple th= ings came to mind during the process: >=20 > 1. The Port handbook is actually quite good in the information it provid= es. However, it does presume that you know a few things about the port str= ucture that are probably common knowledge to anyone involved with it, but n= ot to those of us who just "use" it. The first update I made to the Makefi= le cause a slew of make errors that were pretty much useless. They meant n= othing to me. My first thought was that somehow I had munged one of the in= cludes and managed to include some random file rather than the right one. >=20 > My second idea was that I had typed the option names wrong, but that didn= 't seem to fit with the error messages either. After quite a while of read= ing the handbook, I noticed that in the PORT_OPTIONS clause you have to pre= cede the option name with a M. That is not at all obvious and is easily mi= ssed. Why an M is also baffling. I am sure there is a reason other then it= just won't work otherwise. The M is because of make(1) syntax >=20 > 2. The syntax for a conditional expression for an option that is selecte= d is completely different from that for an option that is not selected. Th= at is just weird. The use of {} for one and () for the other again must ha= ve some reason other than it just won't work otherwise. No clue is given i= n the handbook. >=20 My first proposition for syntax was: =2Eif !empty(PORT_OPTIONS:MFOO) =2Eendif and =2Eif empty(PORT_OPTIONS:MFOO) =2Eendif Lots of people stated they prefered the concise version: =2Eif ${PORT_OPTIONS:MFOO} =2Eendif the reverse of this one can be: =2Eif !${PORT_OPTIONS:MFOO} =2Eendif instead of empty() if you prefer some maintainers uses it. > 3. The examples are a bit difficult to distinguish between {} and (). I= had to look quite a few times before I figured that out. >=20 > 4. The handbook shows for submitting a change to a port the use of a reg= ular diff. My recollection is that the last time a unified diff was reques= ted so that things like the file names show. >=20 > I only maintain one port so the effort to make the changes would have bee= n quite minor for additional ports. Its really not that big a change from = the maintainer's point of view.____________________________________________= ___ > 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" --adJ1OR3c6QgCpb/j Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBv6DUACgkQ8kTtMUmk6EzBJgCbBUTx9zE1sPZGaGPASu5U4LM0 xH0AoIICcg0B+/D93v+zayzxfFIgBNgS =qBU0 -----END PGP SIGNATURE----- --adJ1OR3c6QgCpb/j-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 08:40:15 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0589F1065670; Sat, 6 Oct 2012 08:40:15 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DBB6B8FC08; Sat, 6 Oct 2012 08:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q968eEoD010087; Sat, 6 Oct 2012 08:40:14 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q968eE2G010083; Sat, 6 Oct 2012 08:40:14 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 10:40:04 +0200 From: Baptiste Daroussin To: Doug Barton Message-ID: <20121006084004.GD30675@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <506F9275.3090106@FreeBSD.org> <20121006080409.GA30675@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZARJHfwaSJQLOEUz" Content-Disposition: inline In-Reply-To: <20121006080409.GA30675@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 08:40:15 -0000 --ZARJHfwaSJQLOEUz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 06, 2012 at 10:04:09AM +0200, Baptiste Daroussin wrote: > On Fri, Oct 05, 2012 at 07:07:49PM -0700, Doug Barton wrote: > > On 10/05/2012 07:05 AM, Baptiste Daroussin wrote: > > > Hi, > > >=20 > > > I want to propose and make the actual move of the WWW information fro= m the > > > pkg-descr to the Makefile itself via a WWW variable. > > >=20 > > > doing this will have multiple benefits: > > > * consistency all metadata bug this one are in Makefile > >=20 > > ... except for the distinfo data. > ... > >=20 > > > * speedup make describe avoiding using grep to get the informations = (make > > > describe itself does not need speed but make index heavily use it = and this > > > will definitly benefit from speed up) > >=20 > > Agreed, but there are other ways to speed up 'make describe,' and tools > > like ports-mgmt/p5-FreeBSD-Portindex are a much better solution where > > "create an up to date INDEX quickly" is a real need. >=20 > This sounds like: we have a problem, instead of fixing it let's workaroun= d it >=20 > >=20 > > > * Third party tool will be able to probe the information more easily. > >=20 > > Portmaster doesn't parse WWW for anything, but I have suggested to > > others in the past that 'while read' in sh is a faster method of finding > > the WWW than grep. In fact, 'make describe' uses this method now, not > > grep. I vaguely recall that this was done at my suggestion, but I'm too > > lazy to trace the commit path to confirm it. :) 'make www-site' (which > > already exists in case there is a 3rd party tool that needs it) uses a > > different method utilizing awk. I haven't tested which one is faster. > >=20 > > I'm also concerned about the proliferation of things being jammed into > > the ports Makefile (and coincidentally, bpm). I've noticed that just > > about every operation that portmaster does using 'make -V' has gotten > > noticeably slower over the last 6-8 months, and the trend seems to be > > getting worse instead of better. >=20 > make www-site already exists and will be made faster, and nothing else wi= ll be > added, but things will be removed... I don't see the proliferation here b= ut > rather a cleanup. >=20 > Concerning the bpm, I have removed more old things and useless tests from= it > that I have added! and if people were actively working on switching there= ports > to the new option framework then the fallback code could be removed and t= his > will speed up lots of operations. >=20 > >=20 > > > Do anyone have any concern about this? > >=20 > > For all these reasons, and for the already-stated reason that it > > severely lowers the value of 'cat pkg-descr' (which I do quite often, > > and I'm sure other users do as well) I think this is a bad idea. > >=20 > > Doug > >=20 Here is a diff of the final impact on bpm (once WWW: is gone) regards, Bapt --ZARJHfwaSJQLOEUz Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBv7mQACgkQ8kTtMUmk6EyueACfXaEg3BXqGSdGqV5UhK84Qk7o UhAAoLIOfC1evg/ujbz1qlq7yPb6djU4 =ULtd -----END PGP SIGNATURE----- --ZARJHfwaSJQLOEUz-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 09:20:12 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF253106564A; Sat, 6 Oct 2012 09:20:12 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward5h.mail.yandex.net (forward5h.mail.yandex.net [IPv6:2a02:6b8:0:f05::5]) by mx1.freebsd.org (Postfix) with ESMTP id 1177F8FC0C; Sat, 6 Oct 2012 09:20:12 +0000 (UTC) Received: from smtp1h.mail.yandex.net (smtp1h.mail.yandex.net [84.201.187.144]) by forward5h.mail.yandex.net (Yandex) with ESMTP id 9A2DFD00FF5; Sat, 6 Oct 2012 13:20:10 +0400 (MSK) Received: from smtp1h.mail.yandex.net (localhost [127.0.0.1]) by smtp1h.mail.yandex.net (Yandex) with ESMTP id 5FF7B1340226; Sat, 6 Oct 2012 13:20:10 +0400 (MSK) Received: from 93.91.2.124.tel.ru (93.91.2.124.tel.ru [93.91.2.124]) by smtp1h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id KAgms1XR-KAgK9Zbx; Sat, 6 Oct 2012 13:20:10 +0400 Message-ID: <506FF7C9.4020807@passap.ru> Date: Sat, 06 Oct 2012 13:20:09 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Baptiste Daroussin References: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> <20121006081341.GC30675@ithaqua.etoilebsd.net> In-Reply-To: <20121006081341.GC30675@ithaqua.etoilebsd.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: FreeBSD-PORTS Subject: Re: New Port Options 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, 06 Oct 2012 09:20:12 -0000 06.10.2012 12:13, Baptiste Daroussin пишет: > My first proposition for syntax was: > .if !empty(PORT_OPTIONS:MFOO) > .endif > > and > .if empty(PORT_OPTIONS:MFOO) > .endif I'd prefer this one... > Lots of people stated they prefered the concise version: > .if ${PORT_OPTIONS:MFOO} > .endif > > the reverse of this one can be: > > .if !${PORT_OPTIONS:MFOO} > .endif > > instead of empty() if you prefer some maintainers uses it. ...since this one does not work with predefined options (DOCS, NLS, EXAMPLES) which are set by default but a user needs to unset them. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 09:29:31 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30F1F106564A for ; Sat, 6 Oct 2012 09:29:31 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp1.insight.synacor.com [208.47.185.23]) by mx1.freebsd.org (Postfix) with ESMTP id D14DA8FC16 for ; Sat, 6 Oct 2012 09:29:29 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=2.0 cv=f43K9ZOM c=1 sm=0 a=AcdsImxJPJ9Yo6Ye3TGm+Q==:17 a=h_STZYxCXb0A:10 a=jLN7EqiLvroA:10 a=9YQ-1ebCAAAA:8 a=7nJzpt3McMsA:10 a=pGLkceISAAAA:8 a=NEAV23lmAAAA:8 a=QNef3IKtdZ9MxFkEIjYA:9 a=MSl-tDqOz04A:10 a=AcdsImxJPJ9Yo6Ye3TGm+Q==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp01.insight.synacor.com header.from=mueller23@insightbb.com; sender-id=softfail Authentication-Results: smtp01.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Received-SPF: softfail (smtp01.insight.synacor.com: transitional domain insightbb.com does not designate 74.134.34.76 as permitted sender) Received: from [74.134.34.76] ([74.134.34.76:53258] helo=localhost) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.3.49 r(42060/42061)) with ESMTP id 23/1B-17144-759FF605; Sat, 06 Oct 2012 05:26:47 -0400 Date: Sat, 06 Oct 2012 05:26:47 -0400 Message-ID: <23.1B.17144.759FF605@smtp01.insight.synacor.com> From: "Thomas Mueller" To: freebsd-ports@freebsd.org References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121004110258.3a188bdb@scorpio> <20121004183002.GB70000@kontrol.kode5.net> <20121004151651.4a7bf445@scorpio> <506EB909.6070404@gmail.com> Cc: Volodymyr Kostyrko Subject: Re: flashplugin 11.2r202.238 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, 06 Oct 2012 09:29:31 -0000 from Volodymyr Kostyrko : > I am still curious how one rebuilds and reinstalls a corrupted port > installation when backing up would not be desired. Maybe > t works" is not about flash plugin and never was. > 1. Each update fixes another exploit. What about code quality? Would > there be any progress in it? > 2. https://github.com/kripken/BananaBread/ works on my computer. Yet my > computer is too slow to run flash scrollers. Flash is ancient, slow and > ugly. > 3. I can run current flash on my computer under windows, but linux > version has already dumped my hardware. I ought to stick to older one > for flash support. > 4. Have you ever tried hitting adobe support forums? Your yell would be > forgotten quickly. And FreeBSD never was supported by flash. > 5. Adobe sees no future in flash. End of support of npapi for Linux > version was already announced. > There are a number of projects that try to deal with flash like swfdec, > gnash or lightscribe. I still think emscripten is a right way to go. You say Adobe sees no future in Flash? Do you mean for Linux or for MS-Windows and Mac OS too? There is an overabundance of web sites that overuse Flash, and in cases where there is a Flash version and non-Flash version, the non-Flash version always works better. I have never seen a case where a Flash version worked better that a non-Flash version. What would replace Flash? WOuld it be HTML 5? Gnash worked well for me on YouTube but almost nowhere else. I looked for emscripten in FreeBSD ports, didn't find, but found something via Google. Tom From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 09:39:37 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1BE73106566B for ; Sat, 6 Oct 2012 09:39:37 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F1A418FC08; Sat, 6 Oct 2012 09:39:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q969daQm016946; Sat, 6 Oct 2012 09:39:36 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q969dZx7016941; Sat, 6 Oct 2012 09:39:35 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 11:39:33 +0200 From: Baptiste Daroussin To: Boris Samorodov Message-ID: <20121006093933.GB71753@ithaqua.etoilebsd.net> References: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> <20121006081341.GC30675@ithaqua.etoilebsd.net> <506FF7C9.4020807@passap.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GID0FwUMdk1T2AWN" Content-Disposition: inline In-Reply-To: <506FF7C9.4020807@passap.ru> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: FreeBSD-PORTS Subject: Re: New Port Options 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, 06 Oct 2012 09:39:37 -0000 --GID0FwUMdk1T2AWN Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 06, 2012 at 01:20:09PM +0400, Boris Samorodov wrote: > 06.10.2012 12:13, Baptiste Daroussin =D0=BF=D0=B8=D1=88=D0=B5=D1=82: >=20 > > My first proposition for syntax was: > > .if !empty(PORT_OPTIONS:MFOO) > > .endif > >=20 > > and > > .if empty(PORT_OPTIONS:MFOO) > > .endif >=20 > I'd prefer this one... >=20 > > Lots of people stated they prefered the concise version: > > .if ${PORT_OPTIONS:MFOO} > > .endif > >=20 > > the reverse of this one can be: > >=20 > > .if !${PORT_OPTIONS:MFOO} > > .endif > >=20 > > instead of empty() if you prefer some maintainers uses it. >=20 > ...since this one does not work with predefined options (DOCS, > NLS, EXAMPLES) which are set by default but a user needs to > unset them. Yes it does, or maybe I don't understand correctly what you are expecting :) regards, Bapt --GID0FwUMdk1T2AWN Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBv/FUACgkQ8kTtMUmk6EzROACeKi8CqCm5fYXeXwFTgvyoKY0V YPYAn2JD5sfGVaTFUONglE+bpQ/5Dvom =4PJ/ -----END PGP SIGNATURE----- --GID0FwUMdk1T2AWN-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 09:41:16 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 577DF106564A; Sat, 6 Oct 2012 09:41:15 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED5C38FC16; Sat, 6 Oct 2012 09:41:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q969fEW4017200; Sat, 6 Oct 2012 09:41:14 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q969fEc2017197; Sat, 6 Oct 2012 09:41:14 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Sat, 6 Oct 2012 11:41:12 +0200 From: Baptiste Daroussin To: Doug Barton Message-ID: <20121006094112.GC71753@ithaqua.etoilebsd.net> References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <506F9275.3090106@FreeBSD.org> <20121006080409.GA30675@ithaqua.etoilebsd.net> <20121006084004.GD30675@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+nBD6E3TurpgldQp" Content-Disposition: inline In-Reply-To: <20121006084004.GD30675@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 09:41:16 -0000 --+nBD6E3TurpgldQp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 06, 2012 at 10:40:04AM +0200, Baptiste Daroussin wrote: > On Sat, Oct 06, 2012 at 10:04:09AM +0200, Baptiste Daroussin wrote: > > On Fri, Oct 05, 2012 at 07:07:49PM -0700, Doug Barton wrote: > > > On 10/05/2012 07:05 AM, Baptiste Daroussin wrote: > > > > Hi, > > > >=20 > > > > I want to propose and make the actual move of the WWW information f= rom the > > > > pkg-descr to the Makefile itself via a WWW variable. > > > >=20 > > > > doing this will have multiple benefits: > > > > * consistency all metadata bug this one are in Makefile > > >=20 > > > ... except for the distinfo data. > > ... > > >=20 > > > > * speedup make describe avoiding using grep to get the information= s (make > > > > describe itself does not need speed but make index heavily use i= t and this > > > > will definitly benefit from speed up) > > >=20 > > > Agreed, but there are other ways to speed up 'make describe,' and too= ls > > > like ports-mgmt/p5-FreeBSD-Portindex are a much better solution where > > > "create an up to date INDEX quickly" is a real need. > >=20 > > This sounds like: we have a problem, instead of fixing it let's workaro= und it > >=20 > > >=20 > > > > * Third party tool will be able to probe the information more easi= ly. > > >=20 > > > Portmaster doesn't parse WWW for anything, but I have suggested to > > > others in the past that 'while read' in sh is a faster method of find= ing > > > the WWW than grep. In fact, 'make describe' uses this method now, not > > > grep. I vaguely recall that this was done at my suggestion, but I'm t= oo > > > lazy to trace the commit path to confirm it. :) 'make www-site' (which > > > already exists in case there is a 3rd party tool that needs it) uses a > > > different method utilizing awk. I haven't tested which one is faster. > > >=20 > > > I'm also concerned about the proliferation of things being jammed into > > > the ports Makefile (and coincidentally, bpm). I've noticed that just > > > about every operation that portmaster does using 'make -V' has gotten > > > noticeably slower over the last 6-8 months, and the trend seems to be > > > getting worse instead of better. > >=20 > > make www-site already exists and will be made faster, and nothing else = will be > > added, but things will be removed... I don't see the proliferation here= but > > rather a cleanup. > >=20 > > Concerning the bpm, I have removed more old things and useless tests fr= om it > > that I have added! and if people were actively working on switching the= re ports > > to the new option framework then the fallback code could be removed and= this > > will speed up lots of operations. > >=20 > > >=20 > > > > Do anyone have any concern about this? > > >=20 > > > For all these reasons, and for the already-stated reason that it > > > severely lowers the value of 'cat pkg-descr' (which I do quite often, > > > and I'm sure other users do as well) I think this is a bad idea. > > >=20 > > > Doug > > >=20 >=20 > Here is a diff of the final impact on bpm (once WWW: is gone) >=20 > regards, > Bapt I forgot the link sory: http://people.freebsd.org/~bapt/www.diff regards, Bapt --+nBD6E3TurpgldQp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBv/LgACgkQ8kTtMUmk6EyAewCeLyBh31vMeQIGhjRdqYms/Bz1 WIkAn3m1wcSUQaqJ8/7NmLvwwx+utnpT =jjSR -----END PGP SIGNATURE----- --+nBD6E3TurpgldQp-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 09:48:54 2012 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72E6510656C1; Sat, 6 Oct 2012 09:48:54 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward15.mail.yandex.net (forward15.mail.yandex.net [IPv6:2a02:6b8:0:801::5]) by mx1.freebsd.org (Postfix) with ESMTP id E51998FC18; Sat, 6 Oct 2012 09:48:53 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward15.mail.yandex.net (Yandex) with ESMTP id 940679E1FE1; Sat, 6 Oct 2012 13:48:52 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id 6C92CE405D5; Sat, 6 Oct 2012 13:48:52 +0400 (MSK) Received: from 93.91.2.124.tel.ru (93.91.2.124.tel.ru [93.91.2.124]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTP id mqWuV0L6-mqWKWGmS; Sat, 6 Oct 2012 13:48:52 +0400 Message-ID: <506FFE84.1030202@passap.ru> Date: Sat, 06 Oct 2012 13:48:52 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Baptiste Daroussin References: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> <20121006081341.GC30675@ithaqua.etoilebsd.net> <506FF7C9.4020807@passap.ru> <20121006093933.GB71753@ithaqua.etoilebsd.net> In-Reply-To: <20121006093933.GB71753@ithaqua.etoilebsd.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: FreeBSD-PORTS Subject: Re: New Port Options 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, 06 Oct 2012 09:48:54 -0000 06.10.2012 13:39, Baptiste Daroussin пишет: > On Sat, Oct 06, 2012 at 01:20:09PM +0400, Boris Samorodov wrote: >> 06.10.2012 12:13, Baptiste Daroussin пишет: >> >>> My first proposition for syntax was: >>> .if !empty(PORT_OPTIONS:MFOO) >>> .endif >>> >>> and >>> .if empty(PORT_OPTIONS:MFOO) >>> .endif >> >> I'd prefer this one... >> >>> Lots of people stated they prefered the concise version: >>> .if ${PORT_OPTIONS:MFOO} >>> .endif >>> >>> the reverse of this one can be: >>> >>> .if !${PORT_OPTIONS:MFOO} >>> .endif >>> >>> instead of empty() if you prefer some maintainers uses it. >> >> ...since this one does not work with predefined options (DOCS, >> NLS, EXAMPLES) which are set by default but a user needs to >> unset them. > > Yes it does, or maybe I don't understand correctly what you are expecting :) Hm, I stand corrected. Should have made a syntax error while experimenting. Thanks! ;-) -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 10:30:43 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C76F106564A; Sat, 6 Oct 2012 10:30:43 +0000 (UTC) (envelope-from joao@matik.com.br) Received: from msrv.matik.com.br (msrv.matik.com.br [187.95.0.181]) by mx1.freebsd.org (Postfix) with ESMTP id 7A4FF8FC08; Sat, 6 Oct 2012 10:30:41 +0000 (UTC) Received: from pop1.hm.net.br (pop1.hm.net.br [186.222.204.232]) (authenticated bits=0) by msrv.matik.com.br (8.14.5/8.14.5) with ESMTP id q96AUWRE010969 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sat, 6 Oct 2012 07:30:34 -0300 (BRT) (envelope-from joao@matik.com.br) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.97.5 at msrv.matik.com.br X-DKIM: OpenDKIM Filter v2.5.2 msrv.matik.com.br q96AUWRE010969 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=matik.com.br; s=racoon; t=1349519436; bh=2s6w+ABcYr5nrzqtjZfR3eFLXcX3pwhy8u+WXyP4VZ8=; h=Date:From:To:CC:Subject:References:In-Reply-To; b=opCCGQNyMXhXTqD4nTn+lrL7hfr2HCueq6/VwUdRH9cbQLq/ZnZstCGXnh2xn14Wl xxae/TP1Re4szzayYN27VmdmwwWSm5ofN/rwSvEs6GaWABEoVshqu5zL1rtd9tWIkR fg6FhHJaGXOcbL5PBg45FT9YdXpHktbzEZOXEHXw= Authentication-Results: msrv.matik.com.br; sender-id=pass header.from=joao@matik.com.br; auth=pass (PLAIN); spf=pass smtp.mfrom=joao@matik.com.br Message-ID: <50700849.7080704@matik.com.br> Date: Sat, 06 Oct 2012 07:30:33 -0300 From: joaoBR User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Firefox/15.0.1 SeaMonkey/2.12.1 MIME-Version: 1.0 To: Kent Stewart References: <506F4D3D.8070509@matik.com.br> <201210052301.08268.kstewart@owt.com> In-Reply-To: <201210052301.08268.kstewart@owt.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-298.1 required=5.0 tests=AWL=-0.927,BAYES_00=-1.9,DKIM_SIGNED=0.1,DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,RCVD_IN_BRBL_LASTEXT=1.449,RCVD_IN_PBL=3.335,SPF_PASS=-0.001,USER_IN_DKIM_WHITELIST=-100,USER_IN_SPF_WHITELIST=-100,USER_IN_WHITELIST=-100 msrv.matik.com.br 1181; Body=1 Fuz1=1 Fuz2=1 [1 mail.matik.com.br.] [127.0.0.11] [127.0.0.2] [187.95.0.181] autolearn=no ASN AS28573 186.222.204.0/22 X-Spam-Checker-Version: SpamAssassin 3.3.2-hm_201202.c (2011-06-06) on msrv.matik.com.br Cc: Christopher Dawkins , kde@freebsd.org, jaapb@kerguelen.org, freebsd-ports@freebsd.org Subject: Re: [kde-freebsd] kdenetwork-4.8.4_2 and libotr 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, 06 Oct 2012 10:30:43 -0000 On 06/10/2012 03:01, Kent Stewart wrote: > On Friday 05 October 2012 14:12:29 joaoBR wrote: >> On 23/09/2012 18:36, Christopher Dawkins wrote: >>> I am sorry to bring this to your attention: you all do a lot of work >>> that considerably benefits me and many others. >>> >>> >>> But I cannot compile kdenetwork-4.8.4_2 because it seems to need libotr3. >>> >>> The advice in 20120908 seems irrelevant because I am not using >>> pidgin-otr, anyway, it cannot work because there is no libotr3 port or >>> directory. >> >> ... somebody else wrote >> >>> If you look at the current Makefile, it has >>> >>> otr.4:${PORTSDIR}/security/libotr3 \ >>> >>> I don't see how you all have been making it build with that setup.. >> >> seems you're not getting what's the deal >> >> otr.4 is from libotr3, the Makefile is ok > > You have it backwards. Libotr3 is for the version 3.x > > # $FreeBSD: ports/security/libotr/Makefile,v 1.30 2012/09/08 07:03:21 dougb > Exp $ > > PORTNAME= libotr > PORTVERSION= 4.0.0 > >> now you're messing it up completely ... the original quote is from kdenetwork4's Makefile and it was questioned to be incorrect but it is correct, the dependency otr.4 is from libotr3 you should pay more attention your answer has nothing to do with anything here []s -- João Martins (JoaoBR) Infomatik Development Team http://wipserver.matik.com.br +55 11 4249.2222 From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 11:00:11 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 174491065673 for ; Sat, 6 Oct 2012 11:00:11 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 49A818FC0C for ; Sat, 6 Oct 2012 11:00:09 +0000 (UTC) Received: (qmail 20825 invoked by uid 89); 6 Oct 2012 11:00:06 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.137.113.155) by mail.grem.de with ESMTPA; 6 Oct 2012 11:00:06 -0000 Date: Sat, 6 Oct 2012 13:00:05 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121006130005.07df923d@bsd64.grem.de> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Taking over maintainership of devel/py-ice, next steps 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, 06 Oct 2012 11:00:11 -0000 Hi, After some complications while submitting a patch to devel/py-ice (getting a patch containing UTF-8 characters through the PR system) the maintainer finally managed to apply the patch successfully, but also decided to give up maintainership. Since I'm already managing devel/ice and the two ports work closely together, I offered to take over maintainership. Tony (the maintainer) wrote "Ok this all worked fine so can commit and make yourself maintainer, thanks!" ( http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171645#reply9 ) I'm not the maintainer yet and I don't hold any commit bits, so I don't think I can do any of these things myself. So what is the exact process at this point? I understand how this works for abandoned ports, but this is new to me and I couldn't find anything about such a process in the Porter's Handbook[1], Contributing to the FreeBSD Ports Collection[2] or Writing FreeBSD Problem Reports[3]. Thanks, Michael 1. http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html 2. http://www.freebsd.org/doc/en_US.ISO8859-1/articles/contributing-ports/article.html 3. http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/article.html -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 11:27:13 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 369271065670 for ; Sat, 6 Oct 2012 11:27:13 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 723938FC08 for ; Sat, 6 Oct 2012 11:27:11 +0000 (UTC) Received: (qmail 21109 invoked by uid 89); 6 Oct 2012 11:27:10 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.137.113.155) by mail.grem.de with ESMTPA; 6 Oct 2012 11:27:10 -0000 Date: Sat, 6 Oct 2012 13:27:09 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121006132709.17830c67@bsd64.grem.de> In-Reply-To: <20121006002511.GA29596@ithaqua.etoilebsd.net> References: <20121006002511.GA29596@ithaqua.etoilebsd.net> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [REMINDER] Please convert your ports to the new options framework 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, 06 Oct 2012 11:27:13 -0000 On Sat, 6 Oct 2012 02:25:11 +0200 Baptiste Daroussin wrote: > Hi, > > There are still 1590 ports to be converted, more than 1600 has > already been converted, please consider converting yours. > > Here is a list of ports to be converted: > http://wiki.freebsd.org/Ports/Options/ConvertingToOptionsNG > > Here is the list of maintainers having ports to be converted: > http://people.freebsd.org/~bapt/optionsng-per-maintainer.txt > > regards, > Bapt There are currently 18 ports without a maintainer (MAINTAINER = ports@freebsd.org). I would volunteer working on converting those, assuming I'm not duplicating somebody else's work. I can't take over maintainership afterwards though. I assume submitting individual PRs is preferred? devel/binutils ports@FreeBSD.org graphics/xfig-devel ports@FreeBSD.org net/click ports@FreeBSD.org net/xorp-devel ports@FreeBSD.org polish/gnugadu2 ports@FreeBSD.org print/advi ports@FreeBSD.org security/libpreludedb ports@FreeBSD.org security/openssh-portable ports@FreeBSD.org sysutils/bacula2-server ports@FreeBSD.org sysutils/jfbterm ports@FreeBSD.org textproc/openvanilla-modules ports@FreeBSD.org textproc/xalan-c ports@FreeBSD.org textproc/xerces-c2 ports@FreeBSD.org textproc/xmlwrapp ports@FreeBSD.org www/cgiwrap ports@FreeBSD.org www/openacs ports@FreeBSD.org x11-toolkits/tk84 ports@FreeBSD.org x11-toolkits/tk86 ports@FreeBSD.org -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 11:48:15 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A7D11065680 for ; Sat, 6 Oct 2012 11:48:15 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 7F8B68FC1F for ; Sat, 6 Oct 2012 11:48:14 +0000 (UTC) Received: (qmail 21368 invoked by uid 89); 6 Oct 2012 11:48:13 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@80.137.113.155) by mail.grem.de with ESMTPA; 6 Oct 2012 11:48:13 -0000 Date: Sat, 6 Oct 2012 13:48:12 +0200 From: Michael Gmelin To: freebsd-ports@freebsd.org Message-ID: <20121006134812.597df5c1@bsd64.grem.de> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Portscout.org 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, 06 Oct 2012 11:48:15 -0000 Is there any chance to get portscout.org back? It hasn't been working in quite a while, but portscout.cc does and this situation hasn't change in the last 15 months (seems like miwi@ has problems getting DNS service for the domain) See also: http://miwi.bsdcrew.de/2011/07/portscout-is-back/ If not, the Porter's Handbook should probably be changed to contain the new link (only one appearance in the whole document). Cheers, Michael [developer@bsd64 ~]$ host portscout.org Host portscout.org not found: 3(NXDOMAIN) [developer@bsd64 ~]$ host www.portscout.org Host www.portscout.org not found: 3(NXDOMAIN) -- Michael Gmelin From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 12:02:27 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4CBC61065670 for ; Sat, 6 Oct 2012 12:02:27 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id C7F2A8FC25 for ; Sat, 6 Oct 2012 12:02:26 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1339512bkc.13 for ; Sat, 06 Oct 2012 05:02:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=9g09t00JbA/Eq9ZBqY100yIZyMa1Cl6UyIRldF/oWEc=; b=gc+M6IyJn3Tomzr9GXWSVXl9/cSHmPLwPStpRrdbDPEQVji+Ux/7woFuXr50wehQOM PzJs3QpYcn2FPusYA+6QHchnRCss4fxV102SIvvpArlnDfSAo7/2hCj+HJOBqGb5owoM Ah2yISKaP6Kc8iP49K8hmvqdzZpnfwH8y/seX3sJXP2VjsXWGYH9nU+rYfXoz0S99xkw tpwODFIqUxi3vJDf3rue9LK1K2tcgDZ/i3q1D2pzpE+vs55HUbonABPNT+YedFfIHXj4 kxANEsbm7f50r6K0uUyuOX+ZTutIWXllrYe/uJ4YLaGIlkIJELZuwe5eLptmLJJy2WWK ydxA== MIME-Version: 1.0 Received: by 10.204.148.72 with SMTP id o8mr3561738bkv.103.1349524945505; Sat, 06 Oct 2012 05:02:25 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Sat, 6 Oct 2012 05:02:25 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Sat, 6 Oct 2012 05:02:25 -0700 (PDT) In-Reply-To: <20121006132709.17830c67@bsd64.grem.de> References: <20121006002511.GA29596@ithaqua.etoilebsd.net> <20121006132709.17830c67@bsd64.grem.de> Date: Sat, 6 Oct 2012 13:02:25 +0100 Message-ID: From: Chris Rees To: Michael Gmelin Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org Subject: Re: [REMINDER] Please convert your ports to the new options framework 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, 06 Oct 2012 12:02:27 -0000 On 6 Oct 2012 12:27, "Michael Gmelin" wrote: > > > > On Sat, 6 Oct 2012 02:25:11 +0200 > Baptiste Daroussin wrote: > > > Hi, > > > > There are still 1590 ports to be converted, more than 1600 has > > already been converted, please consider converting yours. > > > > Here is a list of ports to be converted: > > http://wiki.freebsd.org/Ports/Options/ConvertingToOptionsNG > > > > Here is the list of maintainers having ports to be converted: > > http://people.freebsd.org/~bapt/optionsng-per-maintainer.txt > > > > regards, > > Bapt > > There are currently 18 ports without a maintainer (MAINTAINER = > ports@freebsd.org). > > I would volunteer working on converting those, assuming I'm not > duplicating somebody else's work. I can't take over maintainership > afterwards though. I assume submitting individual PRs is preferred? > > devel/binutils ports@FreeBSD.org > graphics/xfig-devel ports@FreeBSD.org > net/click ports@FreeBSD.org > net/xorp-devel ports@FreeBSD.org > polish/gnugadu2 ports@FreeBSD.org > print/advi ports@FreeBSD.org > security/libpreludedb ports@FreeBSD.org > security/openssh-portable ports@FreeBSD.org > sysutils/bacula2-server ports@FreeBSD.org > sysutils/jfbterm ports@FreeBSD.org > textproc/openvanilla-modules ports@FreeBSD.org > textproc/xalan-c ports@FreeBSD.org > textproc/xerces-c2 ports@FreeBSD.org > textproc/xmlwrapp ports@FreeBSD.org > www/cgiwrap ports@FreeBSD.org > www/openacs ports@FreeBSD.org > x11-toolkits/tk84 ports@FreeBSD.org > x11-toolkits/tk86 ports@FreeBSD.org Individual PRs allow workload to be spread. You'll find it all goes in quicker that way :) Chris From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 13:21:20 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8760106566C for ; Sat, 6 Oct 2012 13:21:20 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 722718FC08 for ; Sat, 6 Oct 2012 13:21:20 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so3050338pad.13 for ; Sat, 06 Oct 2012 06:21:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=GrO5NW1NtbeJgTH5bYmq/QtIE+8gWkyBmac2hRQ4MN8=; b=B46RoZUnNF9qgUQNuiVDMYMN8tgYLLT7SUtoIt77qU0uyiEH853bPeQfYJROYTIR0t 9Rufs1/Ltv4th/DPKohdEZ8NwqRbENWP+JkQNrLqrsEquxXjsW95WnHr+dlCZ2dDXFt+ dvfd7d3D1GkKVxro3oYbXbM4SctubeSOvXptI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=GrO5NW1NtbeJgTH5bYmq/QtIE+8gWkyBmac2hRQ4MN8=; b=hrSlS64hNxPOqFJtl5lszcbv4jMIGy0UvMd5NUHbu1oGQFc8tnuLw9K5XZcd8cty5w mC1Xh/D8obmIMHqGkAW/OnZpoGiKfka4ZOaSevfpTd1xYwSTJoQjA9oDW1E63RVvM30u xKaMWCRXxbNgWOkuW5BsFpQdBDTasWA1/EErHkKVx8QFK/OJT327taOGjkSMFNE4hjio YRLxJghsgLOXDWANgcty1hL2zUWoftM7WTBo/w3LkgegBnFoW5xhjQ9FITH+CH8n2dh5 eD8ySe9otQWmo/0lXqafbjk2PFw6tv8x11LroKdXeh17M7rcmilxa17Eu3mAqD0xD3l7 eAkw== Received: by 10.66.87.66 with SMTP id v2mr29040906paz.71.1349529678880; Sat, 06 Oct 2012 06:21:18 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.161.163 with HTTP; Sat, 6 Oct 2012 06:20:47 -0700 (PDT) In-Reply-To: <23.1B.17144.759FF605@smtp01.insight.synacor.com> References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121004110258.3a188bdb@scorpio> <20121004183002.GB70000@kontrol.kode5.net> <20121004151651.4a7bf445@scorpio> <506EB909.6070404@gmail.com> <23.1B.17144.759FF605@smtp01.insight.synacor.com> From: Eitan Adler Date: Sat, 6 Oct 2012 09:20:47 -0400 Message-ID: To: Thomas Mueller Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmZs8ZRieJabf6ICBf4b4eo01YgAbvdMYQt0zZc76v16RCk7kJmrx7r79aLQs0jor1TZqJ/ Cc: Volodymyr Kostyrko , freebsd-ports@freebsd.org Subject: Re: flashplugin 11.2r202.238 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, 06 Oct 2012 13:21:20 -0000 On 6 October 2012 05:26, Thomas Mueller wrote: > from Volodymyr Kostyrko : > >> I am still curious how one rebuilds and reinstalls a corrupted port >> installation when backing up would not be desired. Maybe >> t works" is not about flash plugin and never was. > >> 1. Each update fixes another exploit. What about code quality? Would >> there be any progress in it? >> 2. https://github.com/kripken/BananaBread/ works on my computer. Yet my >> computer is too slow to run flash scrollers. Flash is ancient, slow and >> ugly. >> 3. I can run current flash on my computer under windows, but linux >> version has already dumped my hardware. I ought to stick to older one >> for flash support. >> 4. Have you ever tried hitting adobe support forums? Your yell would be >> forgotten quickly. And FreeBSD never was supported by flash. >> 5. Adobe sees no future in flash. End of support of npapi for Linux >> version was already announced. > >> There are a number of projects that try to deal with flash like swfdec, >> gnash or lightscribe. I still think emscripten is a right way to go. > > You say Adobe sees no future in Flash? Yes: http://forwardthinking.pcmag.com/none/290436-why-adobe-is-deflating-flash-html5 > Do you mean for Linux or for MS-Windows and Mac OS too? Both. > What would replace Flash? WOuld it be HTML 5? The latter. -- Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 13:33:02 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 41AF8106566B for ; Sat, 6 Oct 2012 13:33:02 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0BF168FC16 for ; Sat, 6 Oct 2012 13:33:01 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so3055860pad.13 for ; Sat, 06 Oct 2012 06:33:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=lkjS4Cc6ft3R7eO8HVXsXJ7ozwyz2jymjsZJZgKEbxw=; b=lzRncfE9IN8Izh+aC1uvMBcEjNEVY6PZ6Yd2e+vF2OvfCXgMQyMn8qACL9a34esNNG C2l7lLrwYmPGfLeFzUa+C602ZRixo+2g8u+75KAEXSC9KN2r1aZ0ncb9QHV9yPW+wNar WAsk1GSER02Q1RNRd6BR8QyL/D7KPJq7TMaac= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding:x-gm-message-state; bh=lkjS4Cc6ft3R7eO8HVXsXJ7ozwyz2jymjsZJZgKEbxw=; b=i5FlgxJQEphHewg6IWnWy0pv3Y/tdXEN00lvWQfjEfnxPyL+yBskhy2szuYuE9qGCW WLH2dJankKu2iPNVWwycVfrDglJBG4HF5Gf+iAO00rEudYqAjiRIUYNcO7WYcxLk944M DmwR9ttGAN0Y6pRx7JoPtBF+83kMggXrSoZCRwzncimMoQOj7AlxkmsxUqtE/cFo9hXQ /5nLG8lgQPGfrQn6NG72oRAt0313x0fMcBCiXcUWAOfSnKoSixepKkELB+JOjBnITdBi EAf+ouRHBOKaxkAAp+JBdIXV9kBrYc6NjdPVQDWWBNEVYtrcLW89ZM9BrKz9UEfZo2or ot6A== Received: by 10.68.222.105 with SMTP id ql9mr38457235pbc.97.1349530381313; Sat, 06 Oct 2012 06:33:01 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.161.163 with HTTP; Sat, 6 Oct 2012 06:32:31 -0700 (PDT) In-Reply-To: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> References: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> From: Eitan Adler Date: Sat, 6 Oct 2012 09:32:31 -0400 Message-ID: To: Doug Hardie Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQnu7fLUt7ivD2uj4XTSwVK0wzlhlcVrzgLELWS9capkMFZsKLNCLITw7rZfPPuIdsWlEnYR Cc: FreeBSD-PORTS Subject: Re: New Port Options 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, 06 Oct 2012 13:33:02 -0000 On 6 October 2012 01:01, Doug Hardie wrote: > I just converted a port over to the new options structure and have a few = observations. I have not been involved in any of the discussions about the= structure as I didn't have the time to get involved. However, a couple th= ings came to mind during the process: Thank you very much for this mail. Since the people writing the documentation are often the people "very involved" it can be hard to understand what may confuse someone that isn't insane^W^W doesn't work on ports all the time. > 1. The Port handbook is actually quite good in the information it provid= es. However, it does presume that you know a few things about the port str= ucture that are probably common knowledge to anyone involved with it, but n= ot to those of us who just "use" it. The first update I made to the Makefi= le cause a slew of make errors that were pretty much useless. They meant n= othing to me. My first thought was that somehow I had munged one of the in= cludes and managed to include some random file rather than the right one. make(1) errors can be pretty obtuse at times. It is hard to account for all the errors here, but is there something specific that would have helped you? > My second idea was that I had typed the option names wrong, but that didn= 't seem to fit with the error messages either. After quite a while of read= ing the handbook, I noticed that in the PORT_OPTIONS clause you have to pre= cede the option name with a M. That is not at all obvious and is easily mi= ssed. Why an M is also baffling. I am sure there is a reason other then it= just won't work otherwise. make(1) allows processing on variable contents. In particular the 'M' opti= on: :Mpattern Select only those words that match the rest of the modifie= r. The standard shell wildcard characters (`*', `?', and `[]'= ) may be used. The wildcard characters may be escaped with = a backslash (`\'). This should be made more clear in the handbook. > 2. The syntax for a conditional expression for an option that is selecte= d is completely different from that for an option that is not selected. Th= at is just weird. The use of {} for one and () for the other again must ha= ve some reason other than it just won't work otherwise. No clue is given i= n the handbook. See bapt@'s comments. That said, it should be made more clear ;) > 3. The examples are a bit difficult to distinguish between {} and (). I= had to look quite a few times before I figured that out. Was this a font issue? Is there something we could do to help? Perhaps add more spacing? > 4. The handbook shows for submitting a change to a port the use of a reg= ular diff. My recollection is that the last time a unified diff was reques= ted so that things like the file names show. This is likely an oversight. Unified diffs are much preferred. I've sent in a patch for approval to correct this issue. > I only maintain one port so the effort to make the changes would have bee= n quite minor for additional ports. As I said above, your perspective is needed when it comes to the documentation. > Its really not that big a change from the maintainer's point of view This is good to know :) --=20 Eitan Adler From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 13:34:49 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 003C51065670 for ; Sat, 6 Oct 2012 13:34:48 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 765B38FC0A for ; Sat, 6 Oct 2012 13:34:47 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1363020bkc.13 for ; Sat, 06 Oct 2012 06:34:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=gjP35t8g4RHlKfAOa2CwekbK0XPMxWKQkf6Rma8fX5c=; b=aaajv+vfnJNLtd9fwuozeaPKAZF7UqnjddTSAFVlf0oqChyUFwaA3bJcfQAZEN0mXu Z/I0McidETCAitWrev/CvU8yOoaWYFIP8VoD8fZR8tpPiaYZmB6KJ7sBeY6gHM+vsk4z 0Gkil3UadoQWbMDgRZpPDFKTkjVMSuDSLKtg8AVicHFLVJPO3cSMZR6YaI5PJonmTq3p lbDeIDLnwEcRiGsufj/3pnN/Kx/5F+bshn/Xp+Y7pSXHBahNlNdxhUoc5wepCR6z++8B fnFWHmQNlK7xpUn5VwYKRvlITEvLy8XCuTldWvXF66NAobo1/FyQ53pj2ehNMrQLPRid B7tQ== MIME-Version: 1.0 Received: by 10.204.149.135 with SMTP id t7mr5948bkv.103.1349530486909; Sat, 06 Oct 2012 06:34:46 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Sat, 6 Oct 2012 06:34:46 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Sat, 6 Oct 2012 06:34:46 -0700 (PDT) In-Reply-To: <20121004151651.4a7bf445@scorpio> References: <20121001143321.461de2b2@scorpio> <506A9E3E.1020209@gmail.com> <506D8F5E.2020800@freebsdnorth.com> <20121004110258.3a188bdb@scorpio> <20121004183002.GB70000@kontrol.kode5.net> <20121004151651.4a7bf445@scorpio> Date: Sat, 6 Oct 2012 14:34:46 +0100 Message-ID: From: Chris Rees To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: flashplugin 11.2r202.238 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, 06 Oct 2012 13:34:49 -0000 On 4 Oct 2012 20:17, "Jerry" wrote: > > On Thu, 4 Oct 2012 19:30:02 +0100 > Jamie Paul Griffin articulated: > > > Yes, it is a bit of a PITA isn't it. I wish flashplayer could be > > replaced be something better that works on UNIX and all platforms for > > that matter. Maybe HTML 5 will enable people to do without this crap. > > This isn't a matter of replacing it, it is a matter of making it work. > It works fine on Windows and Ubuntu and from what I have been told, > most other flavors of Linux. Therefore it doesn't take a frigging > Einstein to deduce where the problem lies. Of course, it is always > easier to blame the other guy. Patches always welcome. Or you can get a refund. Chris From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 14:14:47 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3E891065670 for ; Sat, 6 Oct 2012 14:14:47 +0000 (UTC) (envelope-from pathiaki2@yahoo.com) Received: from nm40-vm6.bullet.mail.ne1.yahoo.com (nm40-vm6.bullet.mail.ne1.yahoo.com [98.138.229.182]) by mx1.freebsd.org (Postfix) with SMTP id 9D21C8FC12 for ; Sat, 6 Oct 2012 14:14:47 +0000 (UTC) Received: from [98.138.90.57] by nm40.bullet.mail.ne1.yahoo.com with NNFMP; 06 Oct 2012 14:14:41 -0000 Received: from [98.138.89.245] by tm10.bullet.mail.ne1.yahoo.com with NNFMP; 06 Oct 2012 14:14:41 -0000 Received: from [127.0.0.1] by omp1059.mail.ne1.yahoo.com with NNFMP; 06 Oct 2012 14:14:41 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 581228.45812.bm@omp1059.mail.ne1.yahoo.com Received: (qmail 20856 invoked by uid 60001); 6 Oct 2012 14:14:40 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1349532880; bh=9Fy0NhwRBKe8Rch6Em+bIEXkMQit9mjeTmdmhncL+8g=; h=X-YMail-OSG:Received:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=msldCskWvdizrYguVM7pCZmCRwV54ySdzR6KyYUJ0DzY+SOnw7jv315TSRsroBoKBMj0JdIox4vemUoFR6RE/4ZKVYsrmALeEnNaAZiYjboxZAPWQTUS0GuER6v0U8iUkbgrjoS6ufOTTW3UejCMz29ENHD8cFTAzql9mpDOxSY= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=UAfJV1rXOIwcAxLTDFWg4BBXqFAiRphalE1W2I81TyQ2T0yEOsB0aF6XwFbYh1QtjC+hKNPT2RMPyC6v1bCmpSc8XMoVD5ziU+5Lul3P/sks9xpuKsd5hVhmJmQ93aDJ1Rz2vbGMDJZcwTbWen92TX5xqi9hybutRqFNzzY4atE=; X-YMail-OSG: S4QBee4VM1k3A2JD0mJSXWRsRPGLYeMkY0gO1TAnKyfITQy 60MktyKPnOJp4CgJQa2I_yPcl08XcpN4Ij20.FzdssJijDOyurg6LI8x9Usr dPcSAQVrpodSTlr1wiSL3H1tusEWyZtFYCQZL3P6jYes4BXqP3Bu.o3IpYBM 16ZjeJ.kafJMxWPsU4bvZSyYxvDYFLhit7C9YEDaRLemMP99adP3XyRldR1q BBEg6SB2pfIOBozaCcEOaLfTKlnHKztgdUTk29FLUC27vcOUGPKrjysTDiy3 JA9uxMIJXSOGPMmf.aeSO9NXvjhO7q0jT.rXdfz_wuRVGlZjFBpJVALVzkr2 LyUruQHyjzTVCmV213ZOzYtgN27WlXK51880l_L9YoCLADO6D4XgxXlJrgrZ nTp47RHUJSCkCdUleF8LvEfeCkBuFL1SfST2zia.n4QW4SNHKk6n8CWa.cjB 23ZJiMh9HxA6jRire.SooJNMa6nJDvH3BKYk_OJQSm4Y7ASry Received: from [71.10.241.250] by web110510.mail.gq1.yahoo.com via HTTP; Sat, 06 Oct 2012 07:14:40 PDT X-Mailer: YahooMailWebService/0.8.122.442 References: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> Message-ID: <1349532880.5988.YahooMailNeo@web110510.mail.gq1.yahoo.com> Date: Sat, 6 Oct 2012 07:14:40 -0700 (PDT) From: Paul Pathiakis To: Chris Rees In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "ports@freebsd.org" , Kris Moore Subject: Re: Ports request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Pathiakis List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 14:14:48 -0000 I have had a really difficult time getting wine to run on PC-BSD and FreeBS= D. =A0Nothing seems to work correctly. =A0Is there a simple document to get= this to work?=0A=0AIf I can get it to work, there's probably a good chance= I can move the boy (and others) over to PC-BSD.=0A=0AP.=0A=0A=0A__________= ______________________=0A From: Chris Rees =0ATo: Paul P= athiakis =0ACc: "ports@freebsd.org" ; Kris Moore =0ASent: Saturday, October 6, 2012 2:45 AM= =0ASubject: Re: Ports request=0A =0AOn 6 October 2012 04:52, Paul Pathiakis= wrote:=0A> Good day, ports!=0A>=0A> Something that I= have noticed in the world of home desktops....=A0 although *BSD is total s= erver package and I can do many things.....=0A> The StEam platform from Val= Ve corp is a large step in gaming at this point.=0A>=0A> I have a 13 year o= ld who has a slew of friends on this gaming platform.=A0 Minecraft was a hu= ge leap for gaming on the desktop on PC-BSD.=A0 My son loves using it on PC= -BSD but STEAM is where he is spending more than half his time.... on Windo= ze!!=0A>=0A> StEam is in the process of moving over to Linux. Please don't = fall behind in the effort of bringing this platform to BSD.=0A=0ADon't be f= ooled-- the people responsible for bringing Steam to Linux=0Aare the guys a= t Valve, not the "Linux people", whoever they are.=0A=0ABeing non-free soft= ware, we are almost powerless in porting it.=A0 It=0Adoes run great under W= ine however.=0A=0AChris From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 15:29:07 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13B4A106566C for ; Sat, 6 Oct 2012 15:29:07 +0000 (UTC) (envelope-from enlil65@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id C405C8FC17 for ; Sat, 6 Oct 2012 15:29:06 +0000 (UTC) Received: by mail-vb0-f54.google.com with SMTP id v11so3695796vbm.13 for ; Sat, 06 Oct 2012 08:29:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=9MkYBEqXqmcrDFjKP5u6O7x5rwgzwWHnT93CfXANqEQ=; b=Ym01UQ80e2GWB7tt4otpsLxOyvYCFkGw/I86M6VSaqBz1S4mFT1pQRiQWmQRWtMLQl RQ3DdKNAcvJyDM8S1KNRcFygD+Zax74MYAjv9iJD6kQqbbQ0DLwpXla22ojKlmKzzZot cBGG3JqxbMpSL+gJ20Az7tgTZamG4tANpGgvtwKPFTxIUOdfxa4U2hdCDCmmSANN9AE6 oZwCdbKvXhm5LJuacri6hCcjZyMvY7WHUXrMnWIYEInduqGxJfZDqTng1DQYTe1NrnDX LAHMEK5HbilriM6MKDFTC9Gi1Ue7JxWWy4x2Hc0KCKulR6yCZpxZ/AFcUzoaN/Ty7eMC UPlQ== MIME-Version: 1.0 Received: by 10.52.73.104 with SMTP id k8mr5557241vdv.115.1349537345988; Sat, 06 Oct 2012 08:29:05 -0700 (PDT) Received: by 10.58.132.210 with HTTP; Sat, 6 Oct 2012 08:29:05 -0700 (PDT) Date: Sat, 6 Oct 2012 10:29:05 -0500 Message-ID: From: Peggy Wilkins To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Which java version: confusion 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, 06 Oct 2012 15:29:07 -0000 I have two java ports installed on several of my systems: % cat /usr/local/etc/javavms /usr/local/diablo-jdk1.6.0/bin/java # DiabloCaffe1.6.0 /usr/local/jdk1.6.0/bin/java # FREEBSD-JDK1.6.0 It seems that when I update of one of the versions, the version executed by default turns out to be "the latest version installed". For example, on one of my systems: % java -version openjdk version "1.6.0_32" OpenJDK Runtime Environment (build 1.6.0_32-b25) OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode) But after updating diablo-jdk-1.6.0.07.02_19 to diablo-jdk-1.6.0.07.02_20 I am now getting this instead: % java -version java version "1.6.0_07" Diablo Java(TM) SE Runtime Environment (build 1.6.0_07-b02) Diablo Java HotSpot(TM) 64-Bit Server VM (build 10.0-b23, mixed mode) I have not set $JAVA_HOME. Am I required to set it in order to dependably get one version vs. the other by default? Is there a way to set one of them to be preferred if JAVA_HOME isn't set? I don't understand why simply updating one of the installed versions would result in a switch of which version is preferred. I assume I am simply clueless about something I'm supposed to know but don't... From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 15:40:50 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A605106566C; Sat, 6 Oct 2012 15:40:50 +0000 (UTC) (envelope-from noidmvp@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id C3E738FC12; Sat, 6 Oct 2012 15:40:49 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so8331398iea.13 for ; Sat, 06 Oct 2012 08:40:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=ZLDXWtlAPmNPeAqOw8CFrkR4rpoR4p5DshMh5Et91/A=; b=GSfKy6Buzs6MHiNxxlf+dDfPdx9FqtbUFCLfCu13VEwBVnbirynPS0EZ2vVFB7Qoip 0fzRruBzrhqqLLx82REcVYdZPVLnHwwJW5doNvsW1iJmKhgRFVBjWtLsZw9bE5KqPKyI z2Qw/dr87b/kIPyZPQ0uQVTONntqsJ4EMxA7QoY/0rdS+w/2jm+XoCSCeUr2cif+Vsci /D4ssh83GViL1IjEbN/aQ5J1rq6on5KkhYXmPZItOZybrKQRQPNJKvMAEwlQcnoYQB1/ 4sHma8+zAvLlIrZaGfn0bw6Wv0glfBn+hNk6FWQgeuuljV0TruCBSi9syZULSOPIya4C BpxA== MIME-Version: 1.0 Received: by 10.50.171.4 with SMTP id aq4mr3935795igc.72.1349538048889; Sat, 06 Oct 2012 08:40:48 -0700 (PDT) Received: by 10.231.58.149 with HTTP; Sat, 6 Oct 2012 08:40:48 -0700 (PDT) In-Reply-To: <1349532880.5988.YahooMailNeo@web110510.mail.gq1.yahoo.com> References: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> <1349532880.5988.YahooMailNeo@web110510.mail.gq1.yahoo.com> Date: Sat, 6 Oct 2012 12:40:48 -0300 Message-ID: From: marcos alves To: Paul Pathiakis Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Chris Rees , "ports@freebsd.org" , Kris Moore Subject: Re: Ports request 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, 06 Oct 2012 15:40:50 -0000 Wine itself or games under wine? What are the issues? 2012/10/6 Paul Pathiakis > I have had a really difficult time getting wine to run on PC-BSD and > FreeBSD. Nothing seems to work correctly. Is there a simple document to > get this to work? > > If I can get it to work, there's probably a good chance I can move the boy > (and others) over to PC-BSD. > > P. > > > ________________________________ > From: Chris Rees > To: Paul Pathiakis > Cc: "ports@freebsd.org" ; Kris Moore > Sent: Saturday, October 6, 2012 2:45 AM > Subject: Re: Ports request > > On 6 October 2012 04:52, Paul Pathiakis wrote: > > Good day, ports! > > > > Something that I have noticed in the world of home desktops.... > although *BSD is total server package and I can do many things..... > > The StEam platform from ValVe corp is a large step in gaming at this > point. > > > > I have a 13 year old who has a slew of friends on this gaming platform. > Minecraft was a huge leap for gaming on the desktop on PC-BSD. My son > loves using it on PC-BSD but STEAM is where he is spending more than half > his time.... on Windoze!! > > > > StEam is in the process of moving over to Linux. Please don't fall > behind in the effort of bringing this platform to BSD. > > Don't be fooled-- the people responsible for bringing Steam to Linux > are the guys at Valve, not the "Linux people", whoever they are. > > Being non-free software, we are almost powerless in porting it. It > does run great under Wine however. > > Chris > _______________________________________________ > 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 Sat Oct 6 15:46:55 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA323106566B; Sat, 6 Oct 2012 15:46:55 +0000 (UTC) (envelope-from FreeBSD@shaneware.biz) Received: from ipmail06.adl6.internode.on.net (ipmail06.adl6.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:6:6]) by mx1.freebsd.org (Postfix) with ESMTP id D6FAE8FC0C; Sat, 6 Oct 2012 15:46:54 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ap8EAPpQcFDLevdH/2dsb2JhbABFu2GESYIgAQEEAScRQRALGAkTAw8JAwIBAgFFBg0BBwEBh3sFuSqLT4YQA4hWnUOCfYFT Received: from ppp247-71.static.internode.on.net (HELO leader.local) ([203.122.247.71]) by ipmail06.adl6.internode.on.net with ESMTP; 07 Oct 2012 01:16:53 +0930 Message-ID: <507050BE.4050905@ShaneWare.Biz> Date: Sun, 07 Oct 2012 01:09:42 +0930 From: Shane Ambler User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120918 Thunderbird/15.0.1 MIME-Version: 1.0 To: Tijl Coosemans References: <506B3E9A.1000905@ShaneWare.Biz> <506EEA7C.2020307@coosemans.org> In-Reply-To: <506EEA7C.2020307@coosemans.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: gerald@freebsd.org, FreeBSD-ports Subject: Re: Possible regression in i386 build with gcc 4.6 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, 06 Oct 2012 15:46:55 -0000 On 05/10/2012 23:41, Tijl Coosemans wrote: > On 02-10-2012 21:20, Shane Ambler wrote: >> I found a situation where gcc v4.2 compiles a i386 working binary and >> v4.6 doesn't. (Currently 4.7 and 4.8 fail to build this code) I have >> verified that this happens with 8.2/8.3/9.0 i386 systems. x86_64 >> versions build without issue as does clang i386/x86_64. >> It appears that the x86_64 target of gcc offers gcc atomics while the >> i386 target doesn't - and this appears to be a freebsd specific setup, >> the i386 targets then fall back to using tbb atomics. >> >> inline long long >> atomic_exchange_and_add (volatile long long *at, long long x) >> { >> #ifdef USE_GCC_ATOMICS >> return __sync_fetch_and_add (at, x); >> #elif USE_TBB >> atomic *a = (atomic *)at; >> return a->fetch_and_add (x); >> #elif defined(__APPLE__) >> >> #endif >> } > > Atomic operations on long long require cmpxchg8b instruction which was > added to the i586, so if you add -march=i586 to CFLAGS you should be > able to use gcc atomics on FreeBSD/i386 as well. > The arch setting isn't the issue - gcc compiled on freebsd for 32bit x86 target doesn't provide gcc atomics. So __sync_fetch_and_add doesn't exist. While adding support for gcc atomics to the i386 target would be good, I would assume there is a reason that it is disabled on FreeBSD (that reason may or may not be resolved now). The point I wanted to make in this email is that for some reason gcc46 compiles the tbb alternative in a way that causes a seg fault when gcc42 can compile it fine. And to maybe get the gcc atomics support re-evaluated. But you did give me an idea or two - the first of adding some asm code is beyond me but I then went and found that go-semacquire.c from gcc46 source has code for __sync_fetch_and_add_4 (using pthread mutex locks) so I used that to create a patch that gets the gcc46 build working. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 15:53:14 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99138106564A for ; Sat, 6 Oct 2012 15:53:14 +0000 (UTC) (envelope-from enlil65@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 526128FC0A for ; Sat, 6 Oct 2012 15:53:13 +0000 (UTC) Received: by mail-vc0-f182.google.com with SMTP id fw7so3947204vcb.13 for ; Sat, 06 Oct 2012 08:53:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=KeIJVLZxC0DFVjR25wGgUL8OFTnIORjqTmCpTU9lIEk=; b=BgJUbO5omWJHrmHZw6Mr8DHbS5R/9OwxWK96X8tJg2UdXIvskRcM/5HeVm3JNg96Lo 6pR6th0oq5eogMTzk7DoSDtre9RdQdLH9oGqLwayXpzwdzrrJaoTv+/syM0zUDpky7FD K2NDq3FmKoLf7NPNL0DaoPOQd8bn/NySnteHMeuALYKioVZYKORX5E0FOaT0avWPwdo3 R/8CA90PYLDCM0ReOab2GuV0O9vG2MGuwRjMUn3+T9nPx90IUy/Wu7x2kBQL4xV4IoLQ MI2cIO/bxJE7NxZjc0q5s0/LKz2K7g9HQ89CsVz9072oM5lt5uh2zaJ6i0ETHZ6a9ObT vQbw== MIME-Version: 1.0 Received: by 10.58.116.212 with SMTP id jy20mr6373213veb.5.1349538787209; Sat, 06 Oct 2012 08:53:07 -0700 (PDT) Received: by 10.58.132.210 with HTTP; Sat, 6 Oct 2012 08:53:07 -0700 (PDT) Date: Sat, 6 Oct 2012 10:53:07 -0500 Message-ID: From: Peggy Wilkins To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: Which java version: confusion: SOLVED 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, 06 Oct 2012 15:53:14 -0000 On Sat, Oct 6, 2012 at 10:29 AM, Peggy Wilkins wrote: > I have two java ports installed on several of my systems: > > % cat /usr/local/etc/javavms > /usr/local/diablo-jdk1.6.0/bin/java # DiabloCaffe1.6.0 > /usr/local/jdk1.6.0/bin/java # FREEBSD-JDK1.6.0 > > It seems that when I update of one of the versions, the version > executed by default turns out to be "the latest version installed". > For example, on one of my systems: > > % java -version > openjdk version "1.6.0_32" > OpenJDK Runtime Environment (build 1.6.0_32-b25) > OpenJDK 64-Bit Server VM (build 20.0-b12, mixed mode) > > But after updating diablo-jdk-1.6.0.07.02_19 to > diablo-jdk-1.6.0.07.02_20 I am now getting this instead: > > % java -version > java version "1.6.0_07" > Diablo Java(TM) SE Runtime Environment (build 1.6.0_07-b02) > Diablo Java HotSpot(TM) 64-Bit Server VM (build 10.0-b23, mixed mode) > > I have not set $JAVA_HOME. Am I required to set it in order to > dependably get one version vs. the other by default? Is there a way > to set one of them to be preferred if JAVA_HOME isn't set? I don't > understand why simply updating one of the installed versions would > result in a switch of which version is preferred. > > I assume I am simply clueless about something I'm supposed to know but don't... I withdraw this question now. Reading the above more carefully, I see that I am confusing two different systems and I misread that I had openjdk installed when I obviously did not. I absentmindedly pasted output from the wrong system. That was the source of my confusion. I apologize for wasting everyone's time with this public display of cluelessness! From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 16:54:59 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 779DB106566C; Sat, 6 Oct 2012 16:54:59 +0000 (UTC) (envelope-from tijl@coosemans.org) Received: from mailrelay005.isp.belgacom.be (mailrelay005.isp.belgacom.be [195.238.6.171]) by mx1.freebsd.org (Postfix) with ESMTP id C695F8FC1B; Sat, 6 Oct 2012 16:54:58 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av8EABxicFBbsRJX/2dsb2JhbABFu2GDQYEJgiABAQQBJy8iAQULCw4KCRYPCQMCAQIBJx4GDQEHAQGHewq5HotPhhADjm6BIJYLgm+BYQ Received: from 87.18-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.18.87]) by relay.skynet.be with ESMTP; 06 Oct 2012 18:54:48 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.5/8.14.5) with ESMTP id q96Gsl96003052; Sat, 6 Oct 2012 18:54:48 +0200 (CEST) (envelope-from tijl@coosemans.org) Message-ID: <50706251.7070801@coosemans.org> Date: Sat, 06 Oct 2012 18:54:41 +0200 From: Tijl Coosemans User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120920 Thunderbird/15.0.1 MIME-Version: 1.0 To: Shane Ambler References: <506B3E9A.1000905@ShaneWare.Biz> <506EEA7C.2020307@coosemans.org> <507050BE.4050905@ShaneWare.Biz> In-Reply-To: <507050BE.4050905@ShaneWare.Biz> X-Enigmail-Version: 1.4.3 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigA5DF7AB869ED21B54E01D351" Cc: gerald@freebsd.org, FreeBSD-ports Subject: Re: Possible regression in i386 build with gcc 4.6 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, 06 Oct 2012 16:54:59 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigA5DF7AB869ED21B54E01D351 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 06-10-2012 17:39, Shane Ambler wrote: > On 05/10/2012 23:41, Tijl Coosemans wrote: >> On 02-10-2012 21:20, Shane Ambler wrote: >>> I found a situation where gcc v4.2 compiles a i386 working binary and= >>> v4.6 doesn't. (Currently 4.7 and 4.8 fail to build this code) I have >>> verified that this happens with 8.2/8.3/9.0 i386 systems. x86_64 >>> versions build without issue as does clang i386/x86_64. >>>=20 >>> It appears that the x86_64 target of gcc offers gcc atomics while the= >>> i386 target doesn't - and this appears to be a freebsd specific setup= , >>> the i386 targets then fall back to using tbb atomics. >>> >>> inline long long >>> atomic_exchange_and_add (volatile long long *at, long long x) >>> { >>> #ifdef USE_GCC_ATOMICS >>> return __sync_fetch_and_add (at, x); >>> #elif USE_TBB >>> atomic *a =3D (atomic *)at; >>> return a->fetch_and_add (x); >>> #elif defined(__APPLE__) >>> >>> #endif >>> } >> >> Atomic operations on long long require cmpxchg8b instruction which was= >> added to the i586, so if you add -march=3Di586 to CFLAGS you should be= >> able to use gcc atomics on FreeBSD/i386 as well. >=20 > The arch setting isn't the issue - gcc compiled on freebsd for 32bit > x86 target doesn't provide gcc atomics. So __sync_fetch_and_add > doesn't exist. While adding support for gcc atomics to the i386 > target would be good, I would assume there is a reason that it is > disabled on FreeBSD (that reason may or may not be resolved now). The __sync built-ins exist in both base and ports gcc, but __sync_fetch_and_add_8 needs at least -march=3Di586. > The point I wanted to make in this email is that for some reason > gcc46 compiles the tbb alternative in a way that causes a seg fault > when gcc42 can compile it fine. And to maybe get the gcc atomics > support re-evaluated. >=20 > But you did give me an idea or two - the first of adding some asm > code is beyond me but I then went and found that go-semacquire.c from > gcc46 source has code for __sync_fetch_and_add_4 (using pthread mutex > locks) so I used that to create a patch that gets the gcc46 build > working. --------------enigA5DF7AB869ED21B54E01D351 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iF4EAREIAAYFAlBwYlcACgkQfoCS2CCgtit5tAD/XZcG7f/jMQcCpQeHKLR40JR7 bymbZtEDHJNJfGAJDQEBAITB9WT4iwmU/4KfG1PzISh2eBCF5jJkVcMxkzYa08QC =1EA3 -----END PGP SIGNATURE----- --------------enigA5DF7AB869ED21B54E01D351-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 17:48:59 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F0401065672 for ; Sat, 6 Oct 2012 17:48:59 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from zoom.lafn.org (zoom.lafn.org [108.92.93.123]) by mx1.freebsd.org (Postfix) with ESMTP id 4A2748FC16 for ; Sat, 6 Oct 2012 17:48:59 +0000 (UTC) Received: from [10.0.1.2] (pool-98-112-217-228.lsanca.fios.verizon.net [98.112.217.228]) (authenticated bits=0) by zoom.lafn.org (8.14.3/8.14.2) with ESMTP id q96HmtYW033527; Sat, 6 Oct 2012 10:48:56 -0700 (PDT) (envelope-from bc979@lafn.org) Mime-Version: 1.0 (Apple Message framework v1283) Content-Type: text/plain; charset=us-ascii From: Doug Hardie In-Reply-To: Date: Sat, 6 Oct 2012 10:48:55 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: <71FE6F55-920F-4F59-9242-AAACB5FAACFE@lafn.org> References: <6B7F31C1-0A5C-4B65-AC5B-BCCE21817692@lafn.org> To: Eitan Adler X-Mailer: Apple Mail (2.1283) X-Virus-Scanned: clamav-milter 0.97 at zoom.lafn.org X-Virus-Status: Clean Cc: FreeBSD-PORTS Subject: Re: New Port Options 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, 06 Oct 2012 17:48:59 -0000 On 6 October 2012, at 06:32, Eitan Adler wrote: > On 6 October 2012 01:01, Doug Hardie wrote: >> I just converted a port over to the new options structure and have a = few observations. I have not been involved in any of the discussions = about the structure as I didn't have the time to get involved. However, = a couple things came to mind during the process: >=20 > Thank you very much for this mail. Since the people writing the > documentation are often the people "very involved" it can be hard to > understand what may confuse someone that isn't insane^W^W doesn't work > on ports all the time. For me (and possibly others) the makefile is a necessary "evil" to get = things to work. Its not something we spend any more time on than = necessary. >=20 >> 1. The Port handbook is actually quite good in the information it = provides. However, it does presume that you know a few things about the = port structure that are probably common knowledge to anyone involved = with it, but not to those of us who just "use" it. The first update I = made to the Makefile cause a slew of make errors that were pretty much = useless. They meant nothing to me. My first thought was that somehow I = had munged one of the includes and managed to include some random file = rather than the right one. >=20 > make(1) errors can be pretty obtuse at times. It is hard to account > for all the errors here, but is there something specific that would > have helped you? Thats really difficult to say at this point - now that I have read all = the comments and understand whats actually happening. I had a number of = options and there were complaints about single letters. Eventually I = noticed that they matched the first letter of each option. That led me = to the M in the example. >=20 >> My second idea was that I had typed the option names wrong, but that = didn't seem to fit with the error messages either. After quite a while = of reading the handbook, I noticed that in the PORT_OPTIONS clause you = have to precede the option name with a M. That is not at all obvious = and is easily missed. Why an M is also baffling. I am sure there is a = reason other then it just won't work otherwise. >=20 > make(1) allows processing on variable contents. In particular the 'M' = option: >=20 > :Mpattern Select only those words that match the rest of the = modifier. > The standard shell wildcard characters (`*', `?', and = `[]') > may be used. The wildcard characters may be escaped = with a > backslash (`\'). >=20 >=20 > This should be made more clear in the handbook. Perhaps a note in the handbook prior to the examples that when = referencing an option name, the letter M must be prepended because of = the way make works. Forgetting to include the M will cause some really = weird error messages. >=20 >> 2. The syntax for a conditional expression for an option that is = selected is completely different from that for an option that is not = selected. That is just weird. The use of {} for one and () for the = other again must have some reason other than it just won't work = otherwise. No clue is given in the handbook. >=20 > See bapt@'s comments. That said, it should be made more clear ;) I would have used some of the alternate expressions if I had known about = them. I will never remember what those mean the next time I have to = look at the makefile. >=20 >> 3. The examples are a bit difficult to distinguish between {} and = (). I had to look quite a few times before I figured that out. >=20 > Was this a font issue? Is there something we could do to help? Perhaps > add more spacing? Perhaps its a font issue, but I am not sure I would have noticed it the = first time anyway. I was just quickly scanning to see what needed to be = done. I make no pretense of understanding makefiles. I just use them. = Perhaps a note where the constructs are introduced would catch the = reader's attention. >=20 >> 4. The handbook shows for submitting a change to a port the use of a = regular diff. My recollection is that the last time a unified diff was = requested so that things like the file names show. >=20 > This is likely an oversight. Unified diffs are much preferred. I've > sent in a patch for approval to correct this issue. >=20 >> I only maintain one port so the effort to make the changes would have = been quite minor for additional ports. >=20 > As I said above, your perspective is needed when it comes to the > documentation. >=20 >> Its really not that big a change from the maintainer's point of view >=20 > This is good to know :) I was originally dreading going into a complex makefile that I inherited = and have never opened up before. I put this off as long as I could get = away with because of that. It turned out to be fairly simple once I = knew how to do it right. >=20 >=20 >=20 > --=20 > Eitan Adler >=20 From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 18:14:58 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF69C106566B; Sat, 6 Oct 2012 18:14:57 +0000 (UTC) (envelope-from andrej.zverev@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id A5F4F8FC08; Sat, 6 Oct 2012 18:14:57 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so8560405iea.13 for ; Sat, 06 Oct 2012 11:14:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=Fr0HKAscOass2OkQBOPin95C4VvIe5UnwishjQDA+WY=; b=u61nbFa1SVzenFPoF6oLSy4vjnnFG91oEwVtcFSl7goDm+QkskeYAFvHU2LLWpEyYH nYR7wXiE/6XrjLiVq8QmZY+n6y/CTYGWzLPWYiB74bfP5TyEijiSiPvdT6LgBAdngjOL q8N0phWM9JZDoRAROeRpdAExVlpy6DjEEYeZkl8MRVQYiVNGUUlmuhjW+LPYFnDN2kTe hKWcAzEcWzqL9RHej1b/u/cRNFPaRLQFDXbbJS9YVZOfkSXtAaBKHaHgTv7m7y5rCR74 yQqAq26X9KNu8Fv5jnCLH5Onbgb22DcDE+i6bJvMyv93Gf1oPBxhEFqAztbBXXFka7oO T8UA== MIME-Version: 1.0 Received: by 10.50.178.40 with SMTP id cv8mr4264035igc.0.1349547297048; Sat, 06 Oct 2012 11:14:57 -0700 (PDT) Sender: andrej.zverev@gmail.com Received: by 10.64.89.42 with HTTP; Sat, 6 Oct 2012 11:14:56 -0700 (PDT) Date: Sat, 6 Oct 2012 22:14:56 +0400 X-Google-Sender-Auth: d6wPe_x6zNQK4jxc049OvYLRQRg Message-ID: From: Andrej Zverev To: ports@freebsd.org, perl@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: [HEADS UP] Deprecation and removal of lang/perl5.8 and lang/perl5.10 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, 06 Oct 2012 18:14:58 -0000 Hello, Perl versions 5.8 and 5.10 are considered EOS[1][2]. We are considering perl5.8 and perl5.10 deprecated. They are scheduled for removal from the ports tree in four months (January 31, 2013). You must upgrade your perl installation to newer versions (5.14 - default / 5.16) which are currently available in ports tree. All support for older perl versions will also be removed from the p5-* ports. [1] - http://www.cpan.org/src/README.html [2] - yes, I know about about 5.12, but it is not as old From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 20:44:59 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id 6E63C106567C; Sat, 6 Oct 2012 20:44:59 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 89E9114ECC6; Sat, 6 Oct 2012 20:44:42 +0000 (UTC) Message-ID: <5070983A.8090901@FreeBSD.org> Date: Sat, 06 Oct 2012 13:44:42 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20121001 Thunderbird/15.0.1 MIME-Version: 1.0 To: Matthew Seaman References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <506F9275.3090106@FreeBSD.org> <506FDA99.9060907@FreeBSD.org> In-Reply-To: <506FDA99.9060907@FreeBSD.org> X-Enigmail-Version: 1.4.4 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, Baptiste Daroussin Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 20:44:59 -0000 On 10/06/2012 00:15, Matthew Seaman wrote: > Putting the WWW information into the port Makefile means that portindex > only has to deal with about half as many files I have the same response to you and Baptiste. I get what you're saying, but what we gain by putting it in the Makefile does not make up for what we lose by reducing the value of 'cat pkg-descr'. -- I am only one, but I am one. I cannot do everything, but I can do something. And I will not let what I cannot do interfere with what I can do. -- Edward Everett Hale, (1822 - 1909) From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 21:02:16 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id 695DA1065670; Sat, 6 Oct 2012 21:02:16 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 80F4414E1C8; Sat, 6 Oct 2012 21:02:02 +0000 (UTC) Message-ID: <50709C4A.3030305@FreeBSD.org> Date: Sat, 06 Oct 2012 14:02:02 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20121001 Thunderbird/15.0.1 MIME-Version: 1.0 To: Baptiste Daroussin References: <20121005140534.GB61272@ithaqua.etoilebsd.net> <506F9275.3090106@FreeBSD.org> <20121006080409.GA30675@ithaqua.etoilebsd.net> In-Reply-To: <20121006080409.GA30675@ithaqua.etoilebsd.net> X-Enigmail-Version: 1.4.4 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: [CHANGE PROPOSAL] Moving WWW from pkg-descr to Makefile 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, 06 Oct 2012 21:02:16 -0000 On 10/06/2012 01:04, Baptiste Daroussin wrote: > Concerning the bpm, I have removed more old things and useless tests from it > that I have added! I haven't done a line by line count, but even if you're right, that doesn't help when the code you add is so inefficient. For example, you still haven't fixed this mess for PKGCONFIG: .if ${USE_PKGCONFIG:L} == yes USE_PKGCONFIG= build .endif instead of just using: .if ${USE_PKGCONFIG:L} == yes || ${USE_PKGCONFIG:L} == build I pointed that out to you shortly after you committed it in July. And no, don't bother with your typical "send a patch" response. I already told you I'm not going to waste my time sending patches for trivial items to fix your code. > and if people were actively working on switching there ports > to the new option framework then the fallback code could be removed and this > will speed up lots of operations. I have no intention of inflicting the new OPTIONS on my users until it's fully backwards compatible (as you promised on day 1) and bug free for a while. You've only just this week gotten around to fixing command line compatibility, so let's wait and see how that pans out. -- I am only one, but I am one. I cannot do everything, but I can do something. And I will not let what I cannot do interfere with what I can do. -- Edward Everett Hale, (1822 - 1909) From owner-freebsd-ports@FreeBSD.ORG Sat Oct 6 21:36:16 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CA66106564A for ; Sat, 6 Oct 2012 21:36:16 +0000 (UTC) (envelope-from pathiaki2@yahoo.com) Received: from nm3-vm0.bullet.mail.sp2.yahoo.com (nm3-vm0.bullet.mail.sp2.yahoo.com [98.139.90.230]) by mx1.freebsd.org (Postfix) with SMTP id 26DA68FC12 for ; Sat, 6 Oct 2012 21:36:15 +0000 (UTC) Received: from [98.139.91.65] by nm3.bullet.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 21:36:09 -0000 Received: from [98.139.91.30] by tm5.bullet.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 21:36:09 -0000 Received: from [127.0.0.1] by omp1030.mail.sp2.yahoo.com with NNFMP; 06 Oct 2012 21:36:09 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 6374.44608.bm@omp1030.mail.sp2.yahoo.com Received: (qmail 86284 invoked by uid 60001); 6 Oct 2012 21:36:08 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1349559368; bh=OwERCJjMMQH82LaU1G3hdJ6b3n+6znGx7FuM5P51rag=; h=X-YMail-OSG:Received:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=ISi/Hy7l+RhgEzblQGz2+e69dViu/zVVfpQO9TdGguy14uTH98zdHS8vPZZqYCdN0+cqVJ4+NLDGOHoY/dEmqzYCqS9On+gMTHEOWR08tqQdBqN6GglAE4vzbDltEJYVQ/HmFFQ0f5JKbJmL1D9QlElTmy91RRgG+ugAw6MPvm0= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:References:Message-ID:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type; b=zKutZowz8zoBhI74XDXmtLFpwgDtaH3IzzofIA3EIhoVC1+cfyUTPf6bBs2aVee5oT5WA2dluqAjcNhEWgP8b1VojMo4+z7Bsy+Rd5rIpovolUkt1p7Sf8feMoeIjbHA34vg3ucyuErQx2uOWHn1gO4rj8XVAcGAawobtleMdqQ=; X-YMail-OSG: 2oa778EVM1nXBcQRyWdZ_1M4O8K2xUsbWKwRjLalMQ_DFgm wQDudMpDvRZbjqV6Mi.Bkwajw3T_VZnw4iK_o9Me6a0Z0u9F5lubRZCLDx53 FJlrKMKHj9v0x6kvbQbfJmEtUwUf5BKFCf7sl4LpcCCF_QaHy6nx0HxHbhGh 5aRdTrc8.lTnyexI6YE0fVYK5XCjkXV9VlgLO8PEDxhP_ON9ycjA8DmHu8zI WDl9o20OvEY1EH_xnbAifwKnI4luybqmYzBuSiKdIqpfgO80SU6dZcpRQCQ3 gJyDuk0rumvMh8.YWBoKH8oO0YEH9wWbR0JFPubpVp29JXQY76qGiNmohEP8 X2K_7ZR1lljDm6a4EEea_JrJHa4CS1jZoORg9DguBhfvIztM6.3lSofM6uh5 FNDDrvxtfUVQqP__HzegQ9m9vviye1VYAdt1we4np1fp49TCR5.5Ta4KjRii wVh7rpz0JUqBpE2DR_BN.zA2zlQDZ0LID6f.xwkPLdN0W9Gn0 Received: from [71.10.241.250] by web110514.mail.gq1.yahoo.com via HTTP; Sat, 06 Oct 2012 14:36:07 PDT X-Mailer: YahooMailWebService/0.8.122.442 References: <1349495564.97529.YahooMailNeo@web110513.mail.gq1.yahoo.com> <1349532880.5988.YahooMailNeo@web110510.mail.gq1.yahoo.com> Message-ID: <1349559367.85742.YahooMailNeo@web110514.mail.gq1.yahoo.com> Date: Sat, 6 Oct 2012 14:36:07 -0700 (PDT) From: Paul Pathiakis To: marcos alves In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Chris Rees , "ports@freebsd.org" , Kris Moore Subject: Re: Ports request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Pathiakis List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 21:36:16 -0000 All the platforms that I run on, FreeBSD and PC-BSD, are all 64 bit. =A0My = son is running 64 bit versions of Windoze 7. =A0The machines have 8 GB and = dual core processors. =A0(AMD Procs). =A0=0A=0AI seem to have to problems:= =0A=0A1) Installing and running wine correctly.=0A2) Getting the games to i= nstall and run correctly.=0A=0AThe problem with WinE and getting something = to run under it is problematic as something not running under WinE could be= a bad install/config of WinE or the software I'm trying to run under WinE.= =A0=0A=0AThanks for the help on resolving this.=0A=0AI'd really like to ru= n anything/everything under WinE for Windoze apps. =A0=0A=0AP.=0A=0A=0A____= ____________________________=0A From: marcos alves =0ATo= : Paul Pathiakis =0ACc: Chris Rees ; "ports@freebsd.org" ; Kris Moore =0A= Sent: Saturday, October 6, 2012 11:40 AM=0ASubject: Re: Ports request=0A = =0A=0AWine itself or games under wine? What are the issues?=0A=0A=0A2012/10= /6 Paul Pathiakis =0A=0AI have had a really difficult = time getting wine to run on PC-BSD and FreeBSD. =A0Nothing seems to work co= rrectly. =A0Is there a simple document to get this to work?=0A>=0A>If I can= get it to work, there's probably a good chance I can move the boy (and oth= ers) over to PC-BSD.=0A>=0A>P.=0A>=0A>=0A>=0A>_____________________________= ___=0A>=A0From: Chris Rees =0A>To: Paul Pathiakis =0A>Cc: "ports@freebsd.org" ; Kris Moore = =0A>Sent: Saturday, October 6, 2012 2:45 AM=0A>Subject: Re:= Ports request=0A>=0A>=0A>On 6 October 2012 04:52, Paul Pathiakis wrote:=0A>> Good day, ports!=0A>>=0A>> Something that I have n= oticed in the world of home desktops....=A0 although *BSD is total server p= ackage and I can do many things.....=0A>> The StEam platform from ValVe cor= p is a large step in gaming at this point.=0A>>=0A>> I have a 13 year old w= ho has a slew of friends on this gaming platform.=A0 Minecraft was a huge l= eap for gaming on the desktop on PC-BSD.=A0 My son loves using it on PC-BSD= but STEAM is where he is spending more than half his time.... on Windoze!!= =0A>>=0A>> StEam is in the process of moving over to Linux. Please don't fa= ll behind in the effort of bringing this platform to BSD.=0A>=0A>Don't be f= ooled-- the people responsible for bringing Steam to Linux=0A>are the guys = at Valve, not the "Linux people", whoever they are.=0A>=0A>Being non-free s= oftware, we are almost powerless in porting it.=A0 It=0A>does run great und= er Wine however.=0A>=0A>Chris=0A>__________________________________________= _____=0A>freebsd-ports@freebsd.org mailing list=0A>http://lists.freebsd.org= /mailman/listinfo/freebsd-ports=0A>To unsubscribe, send any mail to "freebs= d-ports-unsubscribe@freebsd.org"=0A>