From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 08:18:43 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E3E02D8 for ; Sun, 14 Jun 2015 08:18:43 +0000 (UTC) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Received: from hermes.heuristicsystems.com.au (hermes.heuristicsystems.com.au [203.41.22.115]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "hermes.heuristicsystems.com.au", Issuer "Heuristic Systems Type 4 Host CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9E1145E5 for ; Sun, 14 Jun 2015 08:18:41 +0000 (UTC) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Received: from [10.0.5.3] (ewsw01.hs [10.0.5.3]) (authenticated bits=0) by hermes.heuristicsystems.com.au (8.14.6/8.13.6) with ESMTP id t5E8H91F069018 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Sun, 14 Jun 2015 18:17:15 +1000 (EST) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Message-ID: <557D3883.8030306@heuristicsystems.com.au> Date: Sun, 14 Jun 2015 18:17:07 +1000 From: Dewayne Geraghty User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: "freebsd-ports@freebsd.org" Subject: libressl vs openssl - surprises Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 08:18:43 -0000 Having read that PC-BSD are/have moved to using libressl in their base system, it was time to have a look. So I updated my ports tree, built in sequence openssl, tested and then built libressl and tested. Platform xeon 1230Lv3 (1.8GHz, 8 logical cores), FreeBSD 10.1 built fresh last night. Summary: openssl aes256 encrypt/decrypt 160MB file: 0.686157 secs (244509876 bytes/sec) libressl aes256 encrypt/decrypt 160MB file: 1.768195 secs (94883282 bytes/sec) openssl speed -evp aes-256-cbc: 74691.70k 288535.11k 876427.49k 5323319.66k 29095886.85k libressl, speed -evp aes-256-cbc: 95036.12k 103030.42k 104839.86k 105190.19k 105840.81k Please note that I added the following to each Makefile, immediately after CPE_VENDOR line CFLAGS+="-O3" I also have the options for openssl "sse2 shared threads". There are no options for libressl. As I use crypto/ssl extensively it seems that migrating to the libressl port will reduce the performance of dependent ports. Are others seeing similar performance? Does anyone have any suggestions for raising the performance of libressl? On the bright side, libressl includes ChaCha20-Poly1305 and other ciphers contrary to the openbsd man page. Refs: 1. http://blog.pcbsd.org/2015/03/a-look-at-the-upcoming-features-for-10-1-2/ 2. https://forums.freebsd.org/threads/replace-openssl-with-libressl.47203/ use of OPENSSL_PORT=security/libressl Detail: I ran the speed and encrypt/decrypt cycle three times for each and took the middle score from each for comparison. For reference dd if=/dev/zero bs=1m count=160 > /dev/null ; # 0.016084 secs (10431025952 bytes/sec) openssl ---------- dd if=/dev/zero bs=1m count=160 | openssl enc -e -aes-256-cbc -pass pass:p1 | openssl enc -aes-256-cbc -d -pass pass:p1 > /dev/null 160+0 records in 160+0 records out 167772160 bytes transferred in 0.686157 secs (244509876 bytes/sec) openssl speed -evp aes-256-cbc Doing aes-256-cbc for 3s on 16 size blocks: 1568234 aes-256-cbc's in 0.34s Doing aes-256-cbc for 3s on 64 size blocks: 1479306 aes-256-cbc's in 0.33s Doing aes-256-cbc for 3s on 256 size blocks: 1203590 aes-256-cbc's in 0.35s Doing aes-256-cbc for 3s on 1024 size blocks: 690433 aes-256-cbc's in 0.13s Doing aes-256-cbc for 3s on 8192 size blocks: 138740 aes-256-cbc's in 0.04s OpenSSL 1.0.2c 12 Jun 2015 built on: reproducible build, date unspecified options:bn(64,64) md2(int) rc4(ptr,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx) compiler: /usr/local/libexec/ccache/cc -I. -I.. -I../include -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -pthread -D_THREAD_SAFE -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DL_ENDIAN -Wall -O2 -pipe -g0 -ggdb0 -DSTRIP_FBSDID -O3 -march=core-avx-i -O3 -fno-strict-aliasing The 'numbers' are in 1000s of bytes per second processed. type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes aes-256-cbc 74691.70k 288535.11k 876427.49k 5323319.66k 29095886.85k libressl --------- # dd if=/dev/zero bs=1m count=160 | openssl enc -e -aes-256-cbc -pass pass:p1 | openssl enc -aes-256-cbc -d -pass pass:p1 > /dev/null 160+0 records in 160+0 records out 167772160 bytes transferred in 1.768195 secs (94883282 bytes/sec) # openssl speed -evp aes-256-cbc Doing aes-256-cbc for 3s on 16 size blocks: 18097699 aes-256-cbc's in 3.05s Doing aes-256-cbc for 3s on 64 size blocks: 4829551 aes-256-cbc's in 3.00s Doing aes-256-cbc for 3s on 256 size blocks: 1241390 aes-256-cbc's in 3.03s Doing aes-256-cbc for 3s on 1024 size blocks: 310582 aes-256-cbc's in 3.02s Doing aes-256-cbc for 3s on 8192 size blocks: 38861 aes-256-cbc's in 3.01s LibreSSL 2.1.7 built on: date not available options:bn(64,64) rc4(ptr,int) des(idx,cisc,16,int) aes(partial) idea(int) blowfish(idx) compiler: information not available The 'numbers' are in 1000s of bytes per second processed. type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes aes-256-cbc 95036.12k 103030.42k 104839.86k 105190.19k 105840.81k From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 14:04:08 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 264268A3 for ; Sun, 14 Jun 2015 14:04:08 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A3B10E75 for ; Sun, 14 Jun 2015 14:04:07 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from liminal.local ([199.119.128.114]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.15.1/8.15.1) with ESMTPSA id t5EE3sUs001985 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Sun, 14 Jun 2015 15:03:55 +0100 (BST) (envelope-from matthew@FreeBSD.org) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.9.2 smtp.infracaninophile.co.uk t5EE3sUs001985 Authentication-Results: smtp.infracaninophile.co.uk/t5EE3sUs001985; dkim=none reason="no signature"; dkim-adsp=none; dkim-atps=neutral X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host [199.119.128.114] claimed to be liminal.local Message-ID: <557D89B9.7000502@FreeBSD.org> Date: Sun, 14 Jun 2015 10:03:37 -0400 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: OpenSSL Security Advisory [11 Jun 2015] References: <201506131950.t5DJooEA021169@gw.catspoiler.org> <557CB34E.9090708@sorbs.net> <557CBFC2.6040003@sorbs.net> In-Reply-To: <557CBFC2.6040003@sorbs.net> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="POdUrNFvxkQP58lbcET97vnkep1WRdwhn" X-Virus-Scanned: clamav-milter 0.98.7 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 14:04:08 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --POdUrNFvxkQP58lbcET97vnkep1WRdwhn Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 13/06/2015 19:41, Michelle Sullivan wrote: > How about one for how to make your own portsnap ? :P Presumably you're wanting to re-distribute local modifications to the ports tree sources around your machines? One relatively easy way to do that is to grab the ports from GitHub -- https://github.com/freebsd/freebsd-ports to a machine you designate as your local github master. You can create your own branch for your modifications and distribute that around your systems. Plus you get all the normal merging and revision control features of git. Although personally I tend not to put a ports tree on anything except a package building server nowadays. Cheers, Matthew --POdUrNFvxkQP58lbcET97vnkep1WRdwhn 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.20 (Darwin) iQJ8BAEBCgBmBQJVfYm6XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATJjcP/21a/Oz3C6jABj4QucvjlYJa 3ova2Ry9DSA+rK7MbA0BV9IkC5kRA9CY7kyxMcg9/ZxKjbwKCtCniZo6CgSAowmv UO8XQhSZx01LpYUmifEOoC9nrKT19Q1TCd/W8CtePrTl8RsJuffAXk9vMyFQE7+6 zf02Nj9l2A8q+myNyggfa+sF52mNw7vXq6SR/HzM3qqas98r5ytykB3UAKTdX14e YXgYQB1Iny+6vmpaDWbVD2a7n6zmz7LTMwKLGoubquELp2vPdCsXH180eCQIt5wh XoRzVk9dRuKo5FSrdcfv1MTIopqg6wmBNx97F4+Z/c25+ZSrIJpPXWHEztKaCEyR k2rble8QkhipkjsZq4gchXgC27mOA8lNqcroTfEIHc01pgTJ3B4nowcohEEl9EMb FMi0HgrKhapmhxZm61uDPo/CxzlQQ9sX0G59/NnwgNQO6GOO3J3kQLP/9MP6+HRQ JfXZ/yKHmXFFTHjMiZcmFC9yaWFPieOMWKMbOoOBS5BHOInjqaH8LkKkCBNo9Qpp 0VuCENoJy336SsNU06OFRWfXs4Bi5RL6gm9lFVT86OkBR0NKvfruidfvNOxxkgon QbNGo2xVnQifjDm9Lz18iPDmvKr8XOfwfblyViYtdtRoqy/j+7nlp7guplXCJ+yh 6mZYwFyTSX4ffNQibjEm =/mzO -----END PGP SIGNATURE----- --POdUrNFvxkQP58lbcET97vnkep1WRdwhn-- From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 14:36:17 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42753561; Sun, 14 Jun 2015 14:36:17 +0000 (UTC) (envelope-from michelle@sorbs.net) Received: from hades.sorbs.net (hades.sorbs.net [67.231.146.201]) by mx1.freebsd.org (Postfix) with ESMTP id 304987CE; Sun, 14 Jun 2015 14:36:16 +0000 (UTC) (envelope-from michelle@sorbs.net) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from isux.com (firewall.isux.com [213.165.190.213]) by hades.sorbs.net (Oracle Communications Messaging Server 7.0.5.29.0 64bit (built Jul 9 2013)) with ESMTPSA id <0NPX00G08VHPUZ00@hades.sorbs.net>; Sun, 14 Jun 2015 07:41:51 -0700 (PDT) Message-id: <557D9158.9060309@sorbs.net> Date: Sun, 14 Jun 2015 16:36:08 +0200 From: Michelle Sullivan User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.24) Gecko/20100301 SeaMonkey/1.1.19 To: Matthew Seaman Cc: freebsd-ports@freebsd.org Subject: Re: OpenSSL Security Advisory [11 Jun 2015] References: <201506131950.t5DJooEA021169@gw.catspoiler.org> <557CB34E.9090708@sorbs.net> <557CBFC2.6040003@sorbs.net> <557D89B9.7000502@FreeBSD.org> In-reply-to: <557D89B9.7000502@FreeBSD.org> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 14:36:17 -0000 Matthew Seaman wrote: > On 13/06/2015 19:41, Michelle Sullivan wrote: > >> How about one for how to make your own portsnap ? :P >> > > Presumably you're wanting to re-distribute local modifications to the > ports tree sources around your machines? > > One relatively easy way to do that is to grab the ports from GitHub -- > > https://github.com/freebsd/freebsd-ports > > to a machine you designate as your local github master. You can create > your own branch for your modifications and distribute that around your > systems. Plus you get all the normal merging and revision control > features of git. > > Although personally I tend not to put a ports tree on anything except a > package building server nowadays. > > Cheers, > > Matthew > > I have my own SVN server however it's incredibly slow when compared to portsnap ... would like to know how the portsnap server is built so I can portsnap my own tree... Michelle -- Michelle Sullivan http://www.mhix.org/ From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 18:49:50 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6046923; Sun, 14 Jun 2015 18:49:50 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-la0-x232.google.com (mail-la0-x232.google.com [IPv6:2a00:1450:4010:c03::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2F8458A4; Sun, 14 Jun 2015 18:49:50 +0000 (UTC) (envelope-from tingox@gmail.com) Received: by lacny3 with SMTP id ny3so25729313lac.3; Sun, 14 Jun 2015 11:49:48 -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:cc:content-type; bh=T0g1f+qgr5iDajs+ED7nn8DAgh1cwyJTyXIdC2vyHp8=; b=KjkxcZPQ4hoYunc/NWu4EY4yXXewUtIWShzRpurboLqQdn+ROVFoT0dGVVdtSQH3Ig WOwIVoh4YBsQt1PbCQIMHg/KkYl10LDUMkr/ODk9bZo9Tgk1QGW6CCxMAwKOELyPprEa eKJIRdfp6DQZCZpmYEmvvQqGUXt6uxHvI8h2D8kOXoLXNWbAKBBBluq9RDpjyefAuuXS qdiuZzDljtsN7ZKnZfUKmOGd2P1VzskfsSml4YqWsmTgMrAX+hPUa1GVI+4H+J+DoZUK XKf+1Bxvflp7HPkF+QKaGoRPUNvGuO3J6rv1F39vmIJNRCVfJO3zOjT9LOGmdxSSm9w9 Uvcw== MIME-Version: 1.0 X-Received: by 10.152.37.228 with SMTP id b4mr23552470lak.117.1434307788222; Sun, 14 Jun 2015 11:49:48 -0700 (PDT) Received: by 10.25.61.209 with HTTP; Sun, 14 Jun 2015 11:49:48 -0700 (PDT) Date: Sun, 14 Jun 2015 20:49:48 +0200 Message-ID: Subject: gscan2pdf 1.3.1 has unsatisfied dependencies From: Torfinn Ingolfsen To: FreeBSD Ports ML Cc: "Danilo E. Gondolfo" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 18:49:50 -0000 Hello, The latest gscan2pdf in the ports tree is 1.3.1: root@kg-core1# portversion -v gscan* [Reading data from pkg(8) ... - 825 packages found - done] gscan2pdf-1.3.1 = up-to-date with port It fails in two places: tingo@kg-core1$ gscan2pdf --device epson2:net:10.1.161.8 Can't locate Linux/Distribution.pm in @INC (you may need to install the Linux::Distribution module) (@INC contains: /usr/local/lib/perl5/site_perl/mach/5.18 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.18/mach /usr/local/lib/perl5/5.18 /usr/local/lib/perl5/site_perl/5.18 /usr/local/lib/perl5/site_perl/5.18/mach .) at /usr/local/bin/gscan2pdf line 84. BEGIN failed--compilation aborted at /usr/local/bin/gscan2pdf line 84. I have reported this on the gscan2pdf mailing list, as I don't think we have (or should have) that perl module on FreeBSD. For now, I just commented out the offending code. Next up is this: tingo@kg-core1$ gscan2pdf --device epson2:net:10.1.161.8 Can't locate Filesys/Df.pm in @INC (you may need to install the Filesys::Df module) (@INC contains: /usr/local/lib/perl5/site_perl/mach/5.18 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.18/mach /usr/local/lib/perl5/5.18 /usr/local/lib/perl5/site_perl/5.18 /usr/local/lib/perl5/site_perl/5.18/mach .) at /usr/local/bin/gscan2pdf line 85. BEGIN failed--compilation aborted at /usr/local/bin/gscan2pdf line 85. Which is fixed by installing p5-Filesys-Df. Testing done on: tingo@kg-core1$ uname -a FreeBSD kg-core1.kg4.no 9.3-STABLE FreeBSD 9.3-STABLE #0 r273918: Fri Oct 31 22:52:44 CET 2014 root@kg-core1.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 HTH -- Regards, Torfinn Ingolfsen From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 20:38:43 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 221D0F9A for ; Sun, 14 Jun 2015 20:38:43 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-la0-x22e.google.com (mail-la0-x22e.google.com [IPv6:2a00:1450:4010:c03::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F80831E for ; Sun, 14 Jun 2015 20:38:42 +0000 (UTC) (envelope-from tingox@gmail.com) Received: by lagh1 with SMTP id h1so4786490lag.0 for ; Sun, 14 Jun 2015 13:38:40 -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=OSXz+0bJWeJM8mDZMxYMsHMn4PAcrmUo8RA9rUgCLns=; b=kSbMh/MQ06UBYwhP9qSY7Ns0bAY7oSN5RMaV8cVxSLKov9ACSynWqDocvAlGOObFYh 6RB8rH8C8+xhuU2UBHY3lOzHiQSzTZ24KipbejZS90PRaOh9SCWsJtV56mBxBoU7X916 J50HZkcQCzSzNHuft0CkXEfVBNpqNI5Urv3ZJTAG2ZrJ0A9q/KDq2TNQ5OSyqzJCbELg TTzTVLcIhBSB4Tc5APrfu9/wRlO+e33wqU+CsN0GCR2HoFk0qTKMqURqBNp7aUMgKyrd F+5Hpv3kjhaj7FyZa+zHL+tcsA2V3M9zNZ5lKPclZBwmTLhHTU7mz3Ryp/dRN49Tj80H Aq6Q== MIME-Version: 1.0 X-Received: by 10.152.20.99 with SMTP id m3mr24198590lae.20.1434314320495; Sun, 14 Jun 2015 13:38:40 -0700 (PDT) Received: by 10.25.61.209 with HTTP; Sun, 14 Jun 2015 13:38:40 -0700 (PDT) Date: Sun, 14 Jun 2015 22:38:40 +0200 Message-ID: Subject: cups-base fails in linking ippfind From: Torfinn Ingolfsen To: FreeBSD Ports ML Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 20:38:43 -0000 Latest cups-base fails: gmake[1]: Entering directory '/usr/ports/print/cups-base/work/cups-2.0.3/test' echo Compiling ippfind.c... echo Compiling ippserver.c... Compiling ippfind.c... cc -Wall -Wno-format-y2k -Wunused -fPIC -Os -g -fstack-protector -I.. -D_CUPS_SOURCE -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include -DDBUS_API_SUBJECT_TO_CHANGE -D_REENTRANT -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -I/usr/local/include/p11-kit-1 -D_LARGEFILE_SOURCE -D_THREAD_SAFE -D_REENTRANT -c -o ippfind.o ippfind.c echo Compiling ipptool.c... Compiling ippserver.c... cc -Wall -Wno-format-y2k -Wunused -fPIC -Os -g -fstack-protector -I.. -D_CUPS_SOURCE -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include -DDBUS_API_SUBJECT_TO_CHANGE -D_REENTRANT -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -I/usr/local/include/p11-kit-1 -D_LARGEFILE_SOURCE -D_THREAD_SAFE -D_REENTRANT -c -o ippserver.o ippserver.c Compiling ipptool.c... cc -Wall -Wno-format-y2k -Wunused -fPIC -Os -g -fstack-protector -I.. -D_CUPS_SOURCE -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include -DDBUS_API_SUBJECT_TO_CHANGE -D_REENTRANT -D_THREAD_SAFE -pthread -I/usr/local/include -I/usr/local/include -I/usr/local/include/p11-kit-1 -D_LARGEFILE_SOURCE -D_THREAD_SAFE -D_REENTRANT -c -o ipptool.o ipptool.c ippserver.c: In function 'ipp_cancel_job': ippserver.c:2864: warning: null format string ippserver.c: In function 'ipp_close_job': ippserver.c:2919: warning: null format string ippserver.c: In function 'ipp_create_job': ippserver.c:2972: warning: null format string ippserver.c: In function 'ipp_get_job_attributes': ippserver.c:3004: warning: null format string ippserver.c: In function 'ipp_get_jobs': ippserver.c:3159: warning: null format string ippserver.c: In function 'ipp_get_printer_attributes': ippserver.c:3211: warning: null format string ippserver.c: In function 'ipp_identify_printer': ippserver.c:3389: warning: null format string ippserver.c: In function 'ipp_print_job': ippserver.c:3526: warning: null format string ippserver.c: In function 'ipp_print_uri': ippserver.c:3838: warning: null format string ippserver.c: In function 'ipp_send_document': ippserver.c:4040: warning: null format string ippserver.c: In function 'ipp_send_uri': ippserver.c:4409: warning: null format string ippserver.c: In function 'ipp_validate_job': ippserver.c:4430: warning: null format string echo Linking ippfind... Linking ippfind... cc -L../cgi-bin -L../cups -L../filter -L../ppdc -L../scheduler -L/usr/local/lib -fstack-protector -Wl,-R/usr/local/lib -Wall -Wno-format-y2k -Wunused -fPIC -Os -g -fstack-protector -o ippfind ippfind.o -lcups -L/usr/local/lib -lavahi-common -lavahi-client -lz -lpthread -lm -lcrypt -liconv -liconv -lz echo Linking ippfind-static... Linking ippfind-static... cc -L../cgi-bin -L../cups -L../filter -L../ppdc -L../scheduler -L/usr/local/lib -fstack-protector -Wl,-R/usr/local/lib -Wall -Wno-format-y2k -Wunused -fPIC -Os -g -fstack-protector -o ippfind-static ippfind.o ../cups/libcups.a \ -L/usr/local/lib -lgnutls -L/usr/local/lib -lavahi-common -lavahi-client -lpthread -lm -lcrypt -liconv -liconv -lz -lz ../cups/libcups.a(http-support.o): In function `_httpResolveURI': /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1702: undefined reference to `DNSServiceCreateConnection' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1711: undefined reference to `DNSServiceResolve' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1855: undefined reference to `DNSServiceRefDeallocate' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1741: undefined reference to `DNSServiceRefSockFD' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1785: undefined reference to `DNSServiceResolve' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1811: undefined reference to `DNSServiceResolve' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1833: undefined reference to `DNSServiceProcessResult' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1845: undefined reference to `DNSServiceRefDeallocate' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1847: undefined reference to `DNSServiceRefDeallocate' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1849: undefined reference to `DNSServiceRefDeallocate' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1852: undefined reference to `DNSServiceRefDeallocate' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:1798: undefined reference to `DNSServiceResolve' ../cups/libcups.a(http-support.o): In function `http_resolve_cb': /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:2158: undefined reference to `TXTRecordGetValuePtr' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:2215: undefined reference to `TXTRecordGetValuePtr' /usr/ports/print/cups-client/work/cups-2.0.3/cups/http-support.c:2202: undefined reference to `TXTRecordGetValuePtr' Makefile:180: recipe for target 'ippfind' failed gmake[1]: *** [ippfind] Error 1 gmake[1]: *** Waiting for unfinished jobs.... gmake[1]: Leaving directory '/usr/ports/print/cups-base/work/cups-2.0.3/test' Makefile:31: recipe for target 'all' failed gmake: *** [all] Error 1 ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** [do-build] Error code 1 Stop in /usr/ports/print/cups-base. *** [stage] Error code 1 Stop in /usr/ports/print/cups-base. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20150614-72897-144zwyb env UPGRADE_TOOL=portupgrade UPGRADE_PORT=cups-base-1.7.3_3 UPGRADE_PORT_VER=1.7.3_3 make ** Fix the problem and try again. ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! print/cups-base (cups-base-1.7.3_3) (linker error) This on: tingo@kg-core1$ uname -a FreeBSD kg-core1.kg4.no 9.3-STABLE FreeBSD 9.3-STABLE #0 r273918: Fri Oct 31 22:52:44 CET 2014 root@kg-core1.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 HTH -- Regards, Torfinn Ingolfsen From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 20:49:25 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6577120C for ; Sun, 14 Jun 2015 20:49:25 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-lb0-x22c.google.com (mail-lb0-x22c.google.com [IPv6:2a00:1450:4010:c04::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E14DC788 for ; Sun, 14 Jun 2015 20:49:24 +0000 (UTC) (envelope-from tingox@gmail.com) Received: by lbbqq2 with SMTP id qq2so42596323lbb.3 for ; Sun, 14 Jun 2015 13:49:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Fb2IsidWbCXLFoB+RRPzolaBZU1LrmzkfbjnelRiMVU=; b=KdJ8j4dHhdZ/H3tzt1+MN86PMCYeWjBzwzo2s6t2EmWBzIOOwRqymuxZ9TlyKrrbgX Xncp35QJSNEPQ2RKWLETA+HdaX0KLghD2B+ImI25w8MdHUtFooJmx/WkbhzeSKPPnsqG MF/2mSKuEe1FfLux73xOk5+T4qOhH4WkMoN63czgITkb4mtmnaIpjOo1fXPNp9nMNBg4 PByT9tzkWxs7QKsgGLJFWoXjLe+9zt+5sxt+ACpaT9dhsXWQbkutoyv0AjS1KdoDLG+f N94BjiV98OG6Ja+L+cnd1lRvBJTyAQ/nd7MXMKGU7CwM8gaSkRZmQFZ3/y3HjOEotLfg 9P2Q== MIME-Version: 1.0 X-Received: by 10.152.88.68 with SMTP id be4mr5251206lab.76.1434314961399; Sun, 14 Jun 2015 13:49:21 -0700 (PDT) Received: by 10.25.61.209 with HTTP; Sun, 14 Jun 2015 13:49:21 -0700 (PDT) In-Reply-To: References: Date: Sun, 14 Jun 2015 22:49:21 +0200 Message-ID: Subject: Re: cups-base fails in linking ippfind From: Torfinn Ingolfsen To: FreeBSD Ports ML Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 20:49:25 -0000 On Sun, Jun 14, 2015 at 10:38 PM, Torfinn Ingolfsen wrote: > Latest cups-base fails: > Ok, changing options so AVAHI is off and MDNSRESPONDER is on helps. :) Now it compiles and installs. -- Regards, Torfinn From owner-freebsd-ports@FreeBSD.ORG Sun Jun 14 21:10:37 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC0B7CE2; Sun, 14 Jun 2015 21:10:37 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-lb0-x229.google.com (mail-lb0-x229.google.com [IPv6:2a00:1450:4010:c04::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68FF7CD9; Sun, 14 Jun 2015 21:10:37 +0000 (UTC) (envelope-from tingox@gmail.com) Received: by lbbqq2 with SMTP id qq2so42735734lbb.3; Sun, 14 Jun 2015 14:10:35 -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:cc:content-type; bh=l6nT6uODhjx4G9L2fFEtoz0QJsZmMbQUSrnKUMEZFHc=; b=DWfio5Kf2616hgahnmK5P07F41Yx2EG7s1IGfeIOyoNjs0pEqwBGhITVKqHNSKH0Hp nR9ePmmrPWFYwjbqGLHZbDfAR58GG7HAOzNfr8lcGvB9HV7vwXqk5NLpkyU2RsthefMU BHf14PaSqSeKMFyFYL/7z3N+ibfueTai5yssZKhKrczMmeeObCHNGR0VRQgCW6HflhEE 8Y3OzOgmViiLCp01r+cG6MkeYjbnOVmR0yXcpBWH9Ace9CDrNo5aA125dvRCL55G9G2R ZeOpCyh039cYN3cjS//PiLQvKCh8iRinJXzf+oA4RgRcJwq5BGAG/EO0Jx08pttO3R0q MggQ== MIME-Version: 1.0 X-Received: by 10.112.186.35 with SMTP id fh3mr24110409lbc.82.1434316235418; Sun, 14 Jun 2015 14:10:35 -0700 (PDT) Received: by 10.25.61.209 with HTTP; Sun, 14 Jun 2015 14:10:35 -0700 (PDT) Date: Sun, 14 Jun 2015 23:10:35 +0200 Message-ID: Subject: foomatic-db Kyocera directory contents make cups give an error From: Torfinn Ingolfsen To: FreeBSD Ports ML Cc: "Danilo E. Gondolfo" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jun 2015 21:10:37 -0000 Hi, cups error log file contains lines like this: root@kg-core1# grep Kyocera /var/log/cups/error_log | tail -2 E [14/Jun/2015:19:26:09 +0200] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! E [14/Jun/2015:22:49:54 +0200] [cups-driverd] Bad driver information file "/usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"! If you compare the Kyocera directory: root@kg-core1# l /usr/local/share/cups/model/foomatic-db-ppds/Kyocera/ ./ ../ ReadMe.htm de/ en/ es/ fr/ it/ pt/ to another directory: root@kg-core1# l /usr/local/share/cups/model/foomatic-db-ppds/Epson ./ epalc380.ppd.gz epalcx21.ppd.gz epalmx20.ppd.gz epln2700.ppd.gz eplp920c.ppd.gz ../ epalc400.ppd.gz epalm200.ppd.gz epalmx21.ppd.gz epln3000.ppd.gz eplp950c.ppd.gz epal2600.ppd.gz epalc410.ppd.gz epalm201.ppd.gz epl5900.ppd.gz epln7000.ppd.gz eplp960s.ppd.gz epalc190.ppd.gz epalc420.ppd.gz epalm240.ppd.gz epl6100.ppd.gz eplp830c.ppd.gz eplp980c.ppd.gz epalc200.ppd.gz epalc860.ppd.gz epalm241.ppd.gz epl6200.ppd.gz eplp850c.ppd.gz epalc260.ppd.gz epalc910.ppd.gz epalm400.ppd.gz epln2500.ppd.gz eplp880c.ppd.gz epalc280.ppd.gz epalc920.ppd.gz epalm800.ppd.gz epln2550.ppd.gz eplp9100.ppd.gz it is easy to spot the problem. If this is harmless or not, I do not know. Tested on tingo@kg-core1$ uname -a FreeBSD kg-core1.kg4.no 9.3-STABLE FreeBSD 9.3-STABLE #0 r273918: Fri Oct 31 22:52:44 CET 2014 root@kg-core1.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 root@kg-core1# pkg which /usr/local/share/cups/model/foomatic-db-ppds /usr/local/share/cups/model/foomatic-db-ppds was installed by package foomatic-db-20150415 root@kg-core1# portversion -v foomatic-db* [Reading data from pkg(8) ... - 825 packages found - done] foomatic-db-20150415 = up-to-date with port foomatic-db-engine-4.0.12,2 = up-to-date with port -- Regards, Torfinn Ingolfsen From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 05:52:23 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1542CCB for ; Mon, 15 Jun 2015 05:52:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA96F658 for ; Mon, 15 Jun 2015 05:52:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t5F5qNFs063782 for ; Mon, 15 Jun 2015 05:52:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports@FreeBSD.org Subject: [Bug 199447] Mk/bsd.sites.mk re-introduce WORKING MASTER_SITE_COMP_SOURCES list Date: Mon, 15 Jun 2015 05:52:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Ports Framework X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, patch, patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 05:52:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199447 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |easy, patch, patch-ready CC|freebsd-ports-bugs@FreeBSD. | |org, | |portmaster@bsdforge.com | Status|New |Open Assignee|freebsd-ports@FreeBSD.org |freebsd-ports-bugs@FreeBSD. | |org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 06:52:53 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5395AB17 for ; Mon, 15 Jun 2015 06:52:53 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (unknown [IPv6:2602:d1:b4d6:e600:4261:86ff:fef6:aa2a]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C6A65E0 for ; Mon, 15 Jun 2015 06:52:53 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.14.9/8.14.9) with ESMTP id t5F6rWgG018935 for ; Sun, 14 Jun 2015 23:53:38 -0700 (PDT) (envelope-from bsd-lists@bsdforge.com) To: In-Reply-To: References: <201506131950.t5DJooEA021169@gw.catspoiler.org> <557CB34E.9090708@sorbs.net>, From: "Chris H" Subject: Re: OpenSSL Security Advisory [11 Jun 2015] Date: Sun, 14 Jun 2015 23:53:38 -0700 Content-Type: text/plain; charset=UTF-8; format=fixed MIME-Version: 1.0 Message-id: <8683b04af67471310e0931a5cf47ef1e@ultimatedns.net> Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 06:52:53 -0000 On Sat, 13 Jun 2015 16:03:10 -0700 Eitan Adler wrote > On 13 June 2015 at 15:48, Michelle Sullivan wrote: > > > I'd love to setup my own freebsd-update server - if only there were docs > > about how to do it... I'd have done it a couple of months ago, Google > > didn't reveal anything to me when I looked though... > > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/freebsd-update-server/ Thank you! I found I would absolutely need to setup an update server, and was just exploring how this might best be accomplished. You've just saved me hours of R&D. I owe you [at least] a beer! Thanks again! > > > -- > Eitan Adler > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 08:03:16 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC535406 for ; Mon, 15 Jun 2015 08:03:16 +0000 (UTC) (envelope-from kitche@kitchetech.com) Received: from mail-oi0-f47.google.com (mail-oi0-f47.google.com [209.85.218.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A6E67A0D for ; Mon, 15 Jun 2015 08:03:16 +0000 (UTC) (envelope-from kitche@kitchetech.com) Received: by oiha141 with SMTP id a141so53807315oih.0 for ; Mon, 15 Jun 2015 01:03:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=/QJ5v/Zzizh4m8BT3AJZttKA1Sl279tMAX7VaEl+Ux4=; b=Eg5HP6mYzcdxrQIxqmmaBw+OPSWG4gLunzp3ja2BklHhrFUlI3w/V+yHG7WjoDZXke h7iblCO+XqHGOlx7L80qPRnkiioGjZEMbvZuAe4EL82e6rB4TJrjURauxrEKq/3s9o0q LXdEydJBMg3SpYbQ9xG97BCHdnxYXISAZSmBf3Yhwm6aY37jtUNHaCZ7ue52clYFdGOb dca2XzaCUEREIBoMnCoccHGf7/hDDexn35r+aNxzYC6zySr8Fp5shflSK6SyEDASV+tu 4Y/xxD2807fJHzlnndBl9fBuLWQPOClnBXqMOsuIxNRz74lR3WLl4HCeTjwYFInDG8zp 8hOg== X-Gm-Message-State: ALoCoQnEf8vsyg6pM2Te+StW3CwIHj5tllIHHATdxVpatdNxyZEE0zBtcZZXb0klaCjWAEnbc7Hw MIME-Version: 1.0 X-Received: by 10.60.141.42 with SMTP id rl10mr22345652oeb.25.1434355389347; Mon, 15 Jun 2015 01:03:09 -0700 (PDT) Received: by 10.76.26.14 with HTTP; Mon, 15 Jun 2015 01:03:08 -0700 (PDT) Received: by 10.76.26.14 with HTTP; Mon, 15 Jun 2015 01:03:08 -0700 (PDT) In-Reply-To: <557D9158.9060309@sorbs.net> References: <201506131950.t5DJooEA021169@gw.catspoiler.org> <557CB34E.9090708@sorbs.net> <557CBFC2.6040003@sorbs.net> <557D89B9.7000502@FreeBSD.org> <557D9158.9060309@sorbs.net> Date: Mon, 15 Jun 2015 03:03:08 -0500 Message-ID: Subject: Re: OpenSSL Security Advisory [11 Jun 2015] From: Matthew Donovan To: Michelle Sullivan Cc: freebsd-ports , Matthew Seaman Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 08:03:17 -0000 You might want to look at http://svnweb.freebsd.org/base/user/cperciva/portsnap-build/ might help you with portsnap. On Jun 14, 2015 9:36 AM, "Michelle Sullivan" wrote: > Matthew Seaman wrote: > > On 13/06/2015 19:41, Michelle Sullivan wrote: > > > >> How about one for how to make your own portsnap ? :P > >> > > > > Presumably you're wanting to re-distribute local modifications to the > > ports tree sources around your machines? > > > > One relatively easy way to do that is to grab the ports from GitHub -- > > > > https://github.com/freebsd/freebsd-ports > > > > to a machine you designate as your local github master. You can create > > your own branch for your modifications and distribute that around your > > systems. Plus you get all the normal merging and revision control > > features of git. > > > > Although personally I tend not to put a ports tree on anything except a > > package building server nowadays. > > > > Cheers, > > > > Matthew > > > > > I have my own SVN server however it's incredibly slow when compared to > portsnap ... would like to know how the portsnap server is built so I > can portsnap my own tree... > > Michelle > > -- > Michelle Sullivan > http://www.mhix.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" > From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 09:49:58 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0E2EEE0 for ; Mon, 15 Jun 2015 09:49:58 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF3EA651 for ; Mon, 15 Jun 2015 09:49:58 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id t5F9nwY1046591 for ; Mon, 15 Jun 2015 09:49:58 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id t5F9nwok046590; Mon, 15 Jun 2015 09:49:58 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201506150949.t5F9nwok046590@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Mon, 15 Jun 2015 09:49:58 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 09:49:59 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ audio/snd | 13.0 | 15.7 ------------------------------------------------+-----------------+------------ textproc/apache-solr | 4.10.4 | 5.2.1 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 11:59:01 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E9FE424 for ; Mon, 15 Jun 2015 11:59:01 +0000 (UTC) (envelope-from michelle@sorbs.net) Received: from hades.sorbs.net (hades.sorbs.net [67.231.146.201]) by mx1.freebsd.org (Postfix) with ESMTP id 6AFE0A77 for ; Mon, 15 Jun 2015 11:59:00 +0000 (UTC) (envelope-from michelle@sorbs.net) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; CHARSET=US-ASCII Received: from isux.com (firewall.isux.com [213.165.190.213]) by hades.sorbs.net (Oracle Communications Messaging Server 7.0.5.29.0 64bit (built Jul 9 2013)) with ESMTPSA id <0NPZ00G0RIVRUZ10@hades.sorbs.net> for freebsd-ports@freebsd.org; Mon, 15 Jun 2015 05:04:41 -0700 (PDT) Message-id: <557EBE01.1020005@sorbs.net> Date: Mon, 15 Jun 2015 13:58:57 +0200 From: Michelle Sullivan User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.24) Gecko/20100301 SeaMonkey/1.1.19 To: Matthew Donovan Cc: FreeBSD Ports ML Subject: Re: OpenSSL Security Advisory [11 Jun 2015] References: <201506131950.t5DJooEA021169@gw.catspoiler.org> <557CB34E.9090708@sorbs.net> <557CBFC2.6040003@sorbs.net> <557D89B9.7000502@FreeBSD.org> <557D9158.9060309@sorbs.net> In-reply-to: X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 11:59:01 -0000 Matthew Donovan wrote: > You might want to look at > http://svnweb.freebsd.org/base/user/cperciva/portsnap-build/ might help you > with portsnap. > Fantastic! Exactly what I need. -- Michelle Sullivan http://www.mhix.org/ From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 15:56:29 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D51C63B for ; Mon, 15 Jun 2015 15:56:29 +0000 (UTC) (envelope-from dreamx@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.17.20]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 95741E58 for ; Mon, 15 Jun 2015 15:56:28 +0000 (UTC) (envelope-from dreamx@gmx.de) Received: from [192.168.1.11] ([94.53.216.74]) by mail.gmx.com (mrgmx103) with ESMTPSA (Nemesis) id 0MU0U9-1YeIeA2CcD-00QmuJ; Mon, 15 Jun 2015 17:56:19 +0200 Message-ID: <557EF59F.6050002@gmx.de> Date: Mon, 15 Jun 2015 18:56:15 +0300 From: Horatiu MOLDOVAN User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Dimitry Andric CC: FreeBSD ports Subject: Re: net/samba4* build dependencies References: <55789BD8.8040008@gmx.de> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:K8cRwGd7dut0zab4MiMCO4kRhPLqPldl+vdv0oUc+yYjCNOJG+x ZqUVugbSJf6zSI/e9do2BNc8KTBHx8d818EEk/07R48Pyp/COUH1jEs7nEerWuWu8CXWKgN eiQAqFfOM68zHcxO0L7TjEfZrzKod8MC5XS0kWYF/wICTrn7Pm2hX8BzMN6o4f54NHq2ZLe vC0ScjtWDzIg7Ph9O9ZBQ== X-UI-Out-Filterresults: notjunk:1; X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 15:56:29 -0000 On 12/06/2015 23:58, Dimitry Andric wrote: > On 10 Jun 2015, at 22:19, Horatiu MOLDOVAN wrote: >> Trying to replace samba 3.6 i've observed some disturbing things on samba 4.x build: >> - security/cyrus-sasl2, security/libgcrypt and security/gnutls are mandatory lib dependencies - is there a reason to add garbage to the system? > Apparently it is still a TODO, the Makefile has this comment, just > before pulling in those dependencies: > > # XXX: Unconditional dependencies which can't be switched off (if present > # in the system) > > As far as dependencies on gnutls (and its dependencies like libgcrypt) > go, it looks like samba implements its TLS support using these. As a > GPL project, I don't think they support using e.g. OpenSSL instead. And > you could say that OpenSSL is in its own class of "garbage". :-) > > That said, the TLS support seems to be required only for ADS support, so > turning ADS off should ideally also turn off the gnutls dependencies. > > Similarly, SASL seems to be required for ADS too, but it isn't disabled > if you disable ADS, so that is another feature that could be improved in > the Makefile. > > >> - OpenLDAP is built unconditionally regardless of the LDAP option setting - again, is there a reason to add more garbage to the system? > This is because the Makefile unconditionally requires databases/ldb, and > that port in turn unconditionally requires openldap... :-( > > So probably the best option would be to automatically disable ldb > support, if ldap support is turned off. > > >> not sure why dns/py-dnspython is a build dependency... > It looks like samba's build system (based on waf) uses this during the > build. See the lib/wscript_build file in the work directory. I have > no idea why samba wants to do DNS lookups during its build, which is > rather strange. > > -Dimitry > Thank you for clarifying these, guess i'll just have to make a temporary patch to the Makefile until these are addressed. --- H. From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 17:54:22 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D36CB98; Mon, 15 Jun 2015 17:54:22 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from mail.in-addr.com (mail.in-addr.com [IPv6:2a01:4f8:191:61e8::2525:2525]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E883732A; Mon, 15 Jun 2015 17:54:21 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from gjp by mail.in-addr.com with local (Exim 4.85 (FreeBSD)) (envelope-from ) id 1Z4YaR-0002iC-6q; Mon, 15 Jun 2015 18:54:19 +0100 Date: Mon, 15 Jun 2015 18:54:19 +0100 From: Gary Palmer To: freebsd-ports@freebsd.org Cc: kde@freebsd.org Subject: problem with graphics/libkdcraw-kde4 after upgrade of libraw to libraw-0.16.2 Message-ID: <20150615175419.GC29089@in-addr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: gpalmer@freebsd.org X-SA-Exim-Scanned: No (on mail.in-addr.com); SAEximRunCond expanded to false X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 17:54:22 -0000 Hi, After the upgrade of libraw earlier in the month I've been unable to build graphics/libkdcraw-kde4. This is on 9.3-RELEASE-p13 Build log at the end Anyone got any ideas? Thanks, Gary ===> libkdcraw-4.14.3 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by libkdcraw-4.14.3 for building ===> Extracting for libkdcraw-4.14.3 => SHA256 Checksum OK for KDE/4.14.3/libkdcraw-4.14.3.tar.xz. ===> Patching for libkdcraw-4.14.3 ===> libkdcraw-4.14.3 depends on file: /usr/local/bin/cmake - found ===> libkdcraw-4.14.3 depends on executable: pkgconf - found ===> libkdcraw-4.14.3 depends on file: /usr/local/lib/qt4/libQtCore.so - found ===> libkdcraw-4.14.3 depends on file: /usr/local/lib/qt4/libQtGui.so - found ===> libkdcraw-4.14.3 depends on file: /usr/local/bin/moc-qt4 - found ===> libkdcraw-4.14.3 depends on file: /usr/local/bin/qmake-qt4 - found ===> libkdcraw-4.14.3 depends on file: /usr/local/bin/rcc - found ===> libkdcraw-4.14.3 depends on file: /usr/local/bin/uic-qt4 - found ===> libkdcraw-4.14.3 depends on file: /usr/local/bin/automoc4 - found ===> libkdcraw-4.14.3 depends on file: /usr/local/lib/libkdecore.so - found ===> libkdcraw-4.14.3 depends on shared library: libjasper.so - found (/usr/local/lib/libjasper.so) ===> libkdcraw-4.14.3 depends on shared library: libjpeg.so - found (/usr/local/lib/libjpeg.so) ===> libkdcraw-4.14.3 depends on shared library: liblcms.so - found (/usr/local/lib/liblcms.so) ===> libkdcraw-4.14.3 depends on shared library: libxml2.so - found (/usr/local/lib/libxml2.so) ===> libkdcraw-4.14.3 depends on shared library: libraw.so - found (/usr/local/lib/libraw.so) ===> Configuring for libkdcraw-4.14.3 /usr/bin/sed -i.bak -e '/pkgconfig/ s/${LIB_INSTALL_DIR}/libdata/' -e 's/libkdcraw.pc\([^.]\)/libkdcraw-kde4.pc\1/g' /usr/ports/graphics/libkdcraw-kde4/work/libkdcraw-4.14.3/CMakeLists.txt ===> Performing out-of-source build /bin/mkdir -p /usr/ports/graphics/libkdcraw-kde4/work/.build -- The C compiler identification is GNU 4.2.1 -- The CXX compiler identification is GNU 4.2.1 -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- ---------------------------------------------------------------------------------- -- Starting CMake configuration for: libkdcraw -- Looking for Q_WS_X11 -- Looking for Q_WS_X11 - found -- Looking for Q_WS_WIN -- Looking for Q_WS_WIN - not found -- Looking for Q_WS_QWS -- Looking for Q_WS_QWS - not found -- Looking for Q_WS_MAC -- Looking for Q_WS_MAC - not found -- Found Qt-Version 4.8.6 (using /usr/local/bin/qmake-qt4) -- Looking for XOpenDisplay in /usr/local/lib/libX11.so;/usr/local/lib/libXext.so;/usr/local/lib/libXft.so;/usr/local/lib/libXau.so;/usr/local/lib/libXdmcp.so;/usr/local/lib/libXpm.so -- Looking for XOpenDisplay in /usr/local/lib/libX11.so;/usr/local/lib/libXext.so;/usr/local/lib/libXft.so;/usr/local/lib/libXau.so;/usr/local/lib/libXdmcp.so;/usr/local/lib/libXpm.so - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Looking for connect -- Looking for connect - found -- Looking for remove -- Looking for remove - found -- Looking for shmat -- Looking for shmat - found -- Looking for IceConnectionNumber in ICE -- Looking for IceConnectionNumber in ICE - found -- Found X11: /usr/local/lib/libX11.so -- Looking for include file pthread.h -- Looking for include file pthread.h - found -- Found Threads: TRUE -- Looking for _POSIX_TIMERS -- Looking for _POSIX_TIMERS - found -- Found Automoc4: /usr/local/bin/automoc4 -- Found Perl: /usr/local/bin/perl (found version "5.18.4") -- Found Phonon: /usr/local/include (Required is at least version "4.3.80") -- Performing Test _OFFT_IS_64BIT -- Performing Test _OFFT_IS_64BIT - Success -- Performing Test HAVE_FPIE_SUPPORT -- Performing Test HAVE_FPIE_SUPPORT - Success -- Performing Test __KDE_HAVE_W_OVERLOADED_VIRTUAL -- Performing Test __KDE_HAVE_W_OVERLOADED_VIRTUAL - Success -- Performing Test __KDE_HAVE_GCC_VISIBILITY -- Performing Test __KDE_HAVE_GCC_VISIBILITY - Success -- Found KDE 4.12 include dir: /usr/local/include -- Found KDE 4.12 library dir: /usr/local/lib -- Found the KDE4 kconfig_compiler preprocessor: /usr/local/bin/kconfig_compiler -- Found automoc4: /usr/local/bin/automoc4 -- Found PkgConfig: pkgconf (found version "0.28") -- checking for module 'libraw' -- found libraw, version 0.16.2 -- checking for module 'libraw_r' -- found libraw_r, version 0.16.2 -- Found LibRaw: /usr/local/lib/libraw.so (found suitable version "0.16.2", minimum required is "0.15") -- LibRaw version: 0.16.2 -- LibRaw config file exists: no -- -- The following OPTIONAL packages have been found: * Threads * Perl * PkgConfig -- The following REQUIRED packages have been found: * X11 * Qt4 * Automoc4 * Phonon (required version >= 4.3.80) * KDE4Internal * KDE4 * LibRaw (required version >= 0.15) , library that provides image Raw file demosaicing , Required to build libkdcraw -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS ENABLE_RAWSPEED WITH_OpenMP -- Build files have been written to: /usr/ports/graphics/libkdcraw-kde4/work/.build ===> Building for libkdcraw-4.14.3 Scanning dependencies of target kdcraw_automoc Generating ractionthreadbase.moc Generating rcombobox.moc Generating rnuminput.moc Generating ractionthreadbase_p.moc Generating dcrawsettingswidget.moc Generating kdcraw.moc Generating squeezedcombobox.moc Generating rexpanderbox.moc [ 0%] Built target kdcraw_automoc Scanning dependencies of target kdcraw [ 8%] Building CXX object libkdcraw/CMakeFiles/kdcraw.dir/kdcraw_automoc.o [ 16%] Building CXX object libkdcraw/CMakeFiles/kdcraw.dir/kdcraw.o In file included from /usr/local/include/libraw/libraw.h:40, from /usr/ports/graphics/libkdcraw-kde4/work/libkdcraw-4.14.3/libkdcraw/kdcraw_p.h:39, from /usr/ports/graphics/libkdcraw-kde4/work/libkdcraw-4.14.3/libkdcraw/kdcraw.cpp:31: /usr/local/include/libraw/libraw_datastream.h: In member function 'virtual int LibRaw_buffer_datastream::get_char()': /usr/local/include/libraw/libraw_datastream.h:154: error: exception handling disabled, use -fexceptions to enable *** [libkdcraw/CMakeFiles/kdcraw.dir/kdcraw.o] Error code 1 Stop in /usr/ports/graphics/libkdcraw-kde4/work/.build. *** [libkdcraw/CMakeFiles/kdcraw.dir/all] Error code 1 Stop in /usr/ports/graphics/libkdcraw-kde4/work/.build. *** [all] Error code 1 Stop in /usr/ports/graphics/libkdcraw-kde4/work/.build. *** [do-build] Error code 1 Stop in /usr/ports/graphics/libkdcraw-kde4. From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 18:06:17 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED5B7EED for ; Mon, 15 Jun 2015 18:06:17 +0000 (UTC) (envelope-from pusateri@bangj.com) Received: from oj.bangj.com (amt0.gin.ntt.net [129.250.11.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA40D7C2 for ; Mon, 15 Jun 2015 18:06:16 +0000 (UTC) (envelope-from pusateri@bangj.com) Received: from [172.16.25.102] (69-77-155-155.static.skybest.com [69.77.155.155]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by oj.bangj.com (Postfix) with ESMTPSA id DC981197C2 for ; Mon, 15 Jun 2015 13:56:03 -0400 (EDT) From: Tom Pusateri Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Help with a slave port of chromium Message-Id: <4B0B17CB-A689-411B-84B0-DCE2ADB704B3@bangj.com> Date: Mon, 15 Jun 2015 14:00:50 -0400 To: freebsd-ports@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 9.0 \(3054\)) X-Mailer: Apple Mail (2.3054) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 18:06:18 -0000 I'm trying to build a slave port for a component of the Atom editor and = could use some help. I can=E2=80=99t figure out how to fetch the = original files in the master port and some local files for the slave = port. Here=E2=80=99s the Makefile PORTNAME=3D libchromiumcontent MASTERDIR=3D ${.CURDIR}/../chromium PORTVERSION=3D 43.0.2357.65 DISTVERSIONPREFIX=3D v DISTVERSIONSUFFIX=3D -atom-2 MAINTAINER=3D pusateri@bangj.com COMMENT=3D Shared library build of Chromium's Content module USE_GITHUB=3D yes GH_PROJECT=3D libchromiumcontent:libchromiumcontent GH_ACCOUNT=3D atom:libchromiumcontent .include "${MASTERDIR}/Makefile" And here's the fetch list. It seems to be mixing the two which isn't = surprising but I'm not sure how to get the distinct downloads. /usr/ports/www/libchromiumcontent # make fetch-urlall-list = MASTER_SITE_BACKUP=3D = http://commondatastorage.googleapis.com/chromium-browser-official/chromium= -chromium-v43.0.2357.81-atom-2_GH0.tar.xz = https://codeload.github.com/chromium/chromium/tar.gz/v43.0.2357.81-atom-2?= dummy=3D/chromium-chromium-v43.0.2357.81-atom-2_GH0.tar.xz = http://commondatastorage.googleapis.com/chromium-browser-official/chromium= -chromium-v43.0.2357.81-atom-2_GH0.tar.gz = https://codeload.github.com/chromium/chromium/tar.gz/v43.0.2357.81-atom-2?= dummy=3D/chromium-chromium-v43.0.2357.81-atom-2_GH0.tar.gz = https://codeload.github.com/atom/libchromiumcontent/tar.gz/v43.0.2357.81-a= tom-2?dummy=3D/atom-libchromiumcontent-v43.0.2357.81-atom-2_GH0.tar.gz Thanks, Tom= From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 19:41:38 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 430E1E40 for ; Mon, 15 Jun 2015 19:41:38 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 2FC9E1B6 for ; Mon, 15 Jun 2015 19:41:38 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yuri.doctorlan.com (c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id t5FJUOWh095305 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Mon, 15 Jun 2015 12:30:24 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128] claimed to be yuri.doctorlan.com Message-ID: <557F27CF.9010107@rawbw.com> Date: Mon, 15 Jun 2015 12:30:23 -0700 From: Yuri User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: "ports@freebsd.org" Subject: C++ ports using virtual function deletion (c++11 feature) are broken when clang is used Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 19:41:38 -0000 I discovered yesterday that '__cxa_deleted_virtual' function is missing in libcxxrt exports list, and therefore isn't available. As a consequence, C++ ports using virtual function deletion will likely fail to build. I had to add the copy of this function as a port patch to solve this, but I am not sure what the general solution might be when more ports will hit this problem. Bug report: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200863 (Added missing '__cxa_deleted_virtual' into libcxxrt) Yuri From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 21:19:16 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8EF49FB0 for ; Mon, 15 Jun 2015 21:19:16 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: from vfemail.net (ninezero.vfemail.net [96.30.253.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 36D44D76 for ; Mon, 15 Jun 2015 21:19:15 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: (qmail 95829 invoked by uid 89); 15 Jun 2015 21:19:07 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 15 Jun 2015 21:19:06 -0000 Received: (qmail 88047 invoked by uid 89); 15 Jun 2015 20:42:17 -0000 Received: by simscan 1.3.1 ppid: 88043, pid: 88045, t: 0.1007s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 15 Jun 2015 20:42:17 -0000 Received: (qmail 29160 invoked by uid 89); 15 Jun 2015 20:42:17 -0000 Received: by simscan 1.4.0 ppid: 29139, pid: 29153, t: 0.8335s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by 172.16.100.62 with ESMTPA; 15 Jun 2015 20:42:16 -0000 From: Jan Beich To: Tom Pusateri Cc: freebsd-ports@freebsd.org Subject: Re: Help with new port with multiple downloaded files from github References: <556E83CE.2020209@bangj.com> <5571C97C.2080903@bangj.com> <381s-67b6-wny@vfemail.net> Date: Mon, 15 Jun 2015 22:42:10 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 21:19:16 -0000 Jan Beich writes: > PKGNAMEPREFIX= libchromiumcontent- Oops, no need to duplicate "chromium". PKGNAMEPREFIX= lib PKGNAMESUFFIX= content before $ make -V PKGNAME libchromiumcontent-chromium-43.0.2357.125 after $ make -V PKGNAME libchromiumcontent-43.0.2357.125 ------------------------------------------------- ONLY AT VFEmail! - Use our Metadata Mitigator to keep your email out of the NSA's hands! $24.95 ONETIME Lifetime accounts with Privacy Features! 15GB disk! No bandwidth quotas! Commercial and Bulk Mail Options! From owner-freebsd-ports@FreeBSD.ORG Mon Jun 15 21:19:16 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90CF9FB1 for ; Mon, 15 Jun 2015 21:19:16 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: from vfemail.net (ninezero.vfemail.net [96.30.253.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 36D9ED77 for ; Mon, 15 Jun 2015 21:19:15 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: (qmail 95826 invoked by uid 89); 15 Jun 2015 21:19:07 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 15 Jun 2015 21:19:06 -0000 Received: (qmail 87060 invoked by uid 89); 15 Jun 2015 20:33:07 -0000 Received: by simscan 1.3.1 ppid: 87056, pid: 87058, t: 0.0030s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 15 Jun 2015 20:33:07 -0000 Received: (qmail 27762 invoked by uid 89); 15 Jun 2015 20:33:07 -0000 Received: by simscan 1.4.0 ppid: 27751, pid: 27757, t: 0.5938s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by 172.16.100.62 with ESMTPA; 15 Jun 2015 20:33:06 -0000 From: Jan Beich To: Tom Pusateri Cc: freebsd-ports@freebsd.org Subject: Re: Help with new port with multiple downloaded files from github References: <556E83CE.2020209@bangj.com> <5571C97C.2080903@bangj.com> Date: Mon, 15 Jun 2015 22:33:01 +0200 Message-ID: <381s-67b6-wny@vfemail.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2015 21:19:16 -0000 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Tom Pusateri writes: > Here=E2=80=99s the Makefile > > PORTNAME=3D libchromiumcontent > PORTVERSION=3D 43.0.2357.65 To override these variables you have to modify master port to use ?=3D. And altering PORTNAME often breaks master's DISTFILES/WRKSRC/etc. In this case PORTVERSION should probably stay in sync with master to avoid trying to apply new port patches against old chromium. > DISTVERSIONPREFIX=3D v > DISTVERSIONSUFFIX=3D -atom-2 DISTVERSION*FIX affect both master and slave distfile. If you only want to alter the latter convert into GH_TAGNAME. > > MAINTAINER=3D pusateri@bangj.com > COMMENT=3D Shared library build of Chromium's Content module > > USE_GITHUB=3D yes Define to "nodefault" to avoid altering MASTER_SITES inherited from the master port. > GH_PROJECT=3D libchromiumcontent:libchromiumcontent > GH_ACCOUNT=3D atom:libchromiumcontent > > .include "${MASTERDIR}/Makefile" Would the following work for you? =2D-8<---------------cut here---------------start------------->8--- PKGNAMEPREFIX=3D libchromiumcontent- MAINTAINER=3D pusateri@bangj.com COMMENT=3D Shared library build of Chromium's Content module USE_GITHUB=3D nodefault GH_PROJECT=3D libchromiumcontent:libchromiumcontent GH_ACCOUNT=3D atom:libchromiumcontent GH_TAGNAME=3D v43.0.2357.65-atom-2:libchromiumcontent MASTERDIR=3D ${.CURDIR}/../chromium DESCR=3D ${.CURDIR}/pkg-descr DISTINFO_FILE=3D ${.CURDIR}/distinfo # Apply port patches if any from slave .if exists(${.CURDIR}/files) EXTRA_PATCHES+=3D ${.CURDIR}/files/patch-* .endif .include "${MASTERDIR}/Makefile" =2D-8<---------------cut here---------------end--------------->8--- $ make fetch-urlall-list MASTER_SITE_BACKUP=3D http://commondatastorage.googleapis.com/chromium-browser-official/chromium-= 43.0.2357.125.tar.xz https://codeload.github.com/atom/libchromiumcontent/tar.gz/v43.0.2357.65-at= om-2?dummy=3D/atom-libchromiumcontent-v43.0.2357.65-atom-2_GH0.tar.gz --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJVfzZ9XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3br0QH/i3DcXEMS+dFwH9Ej12ngMlv prUN4pKbGsJwnAF++nLJ76pgKMdsADOy62P+ZR9jpJ5emkr3+t9odJOMt2/XvLtg OIvqj+ry1/YQj5luPDTPi8iu6yj+oH6nh2j+2vuWL3rY1aTUMRC2J1DBBja0hvZW YI9qLREss+buzYBIOADyI/zxNefREo668vFhHSjvYQ3jF4NffafQgc1DIoqCdn/4 vDZjq+bAjqFpn5QLcPiLR3hSqpFiiEk4xNJx/mIuyXncRIPX7xWYqLFMCIQxAP5m kJoeEWzQwj2NUAm8X2Cn0PUAfYmSHoVVFmkuVE0tFa4tMYoYXVTMrYUyNId6VAs= =ULFr -----END PGP SIGNATURE----- --=-=-=-- From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 01:01:51 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C79B6F4 for ; Tue, 16 Jun 2015 01:01:51 +0000 (UTC) (envelope-from pusateri@bangj.com) Received: from oj.bangj.com (amt0.gin.ntt.net [129.250.11.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41457BE0 for ; Tue, 16 Jun 2015 01:01:50 +0000 (UTC) (envelope-from pusateri@bangj.com) Received: from [172.16.25.102] (69-77-155-155.static.skybest.com [69.77.155.155]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by oj.bangj.com (Postfix) with ESMTPSA id AB3881983E; Mon, 15 Jun 2015 20:56:58 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.0 \(3054\)) Subject: Re: Help with new port with multiple downloaded files from github From: Tom Pusateri In-Reply-To: Date: Mon, 15 Jun 2015 21:01:46 -0400 Cc: freebsd-ports@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: <2E894569-57D7-4AD5-A0B4-00670FEE9893@bangj.com> References: <556E83CE.2020209@bangj.com> <5571C97C.2080903@bangj.com> <381s-67b6-wny@vfemail.net> To: Jan Beich X-Mailer: Apple Mail (2.3054) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 01:01:51 -0000 > On Jun 15, 2015, at 4:42 PM, Jan Beich wrote: > > Jan Beich writes: > >> PKGNAMEPREFIX= libchromiumcontent- > > Oops, no need to duplicate "chromium". > > PKGNAMEPREFIX= lib > PKGNAMESUFFIX= content > > before > > $ make -V PKGNAME > libchromiumcontent-chromium-43.0.2357.125 > > after > > $ make -V PKGNAME > libchromiumcontent-43.0.2357.125 > You are indeed a ports wizard! It fetches the packages perfectly. Thanks, Tom From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 01:55:45 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96F38AD1 for ; Tue, 16 Jun 2015 01:55:45 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: from mail-pd0-x232.google.com (mail-pd0-x232.google.com [IPv6:2607:f8b0:400e:c02::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68ABE9B1 for ; Tue, 16 Jun 2015 01:55:45 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: by pdjm12 with SMTP id m12so2702652pdj.3 for ; Mon, 15 Jun 2015 18:55:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mime-version:content-type :content-transfer-encoding; bh=mD3St/ajG2yq8sW5EDB4xYzmdR09y9AeYYwLMQiwkyk=; b=efSQ4i1ZDJG/OvGO3V3BHOsNOjZQmJF9HkbApB1oSkvzpCNM1Ibvuy7YxMwnvz8rpH DebDp6wIclAz8KrOsFoKx3Klrkx3VRrHdnDK1qp3kQVMTXI4MQ//iWM1d1XSXUi00htl SKsOo/s3E26iBP5ne7XI0OIai5xQcDgrXBJXtEgnFCVJkf4oCRP6iBJ3gWJQXvCEaIIC cpY4aTJIBO1F1Z5SUCr/zqinZKoxVQ74gkmfb6voWioGocA/rtlrzyORhlND+VpOOVCP EgrtHgRXnla3diBvZQjHzVjM5vLISxr1H5mawqnym4HM/72lf5DZ5GLYDOCXNXZo+cVF 3IRQ== X-Received: by 10.68.68.235 with SMTP id z11mr32691868pbt.93.1434419744663; Mon, 15 Jun 2015 18:55:44 -0700 (PDT) Received: from localhost (118-163-120-175.HINET-IP.hinet.net. [118.163.120.175]) by mx.google.com with ESMTPSA id v9sm13531672pdr.96.2015.06.15.18.55.42 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 15 Jun 2015 18:55:43 -0700 (PDT) Date: Tue, 16 Jun 2015 09:55:37 +0800 From: Christopher Hall To: freebsd-ports@FreeBSD.org Subject: Re bug/197191 Dconf not saving IBUS configuration Message-ID: <20150616095537.50d35cdd@gmail.com> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.27; amd64-portbld-freebsd10.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 01:55:45 -0000 Hello Ports, Would it be possible for a comitter to take a look at: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197191 Dconf is not getting the path to /usr/local/etc set properly in the Makefile - the patch in the bug report is quite simple. -- Thanks. Christopher Hall. From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 09:43:03 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86661809 for ; Tue, 16 Jun 2015 09:43:03 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 751CEC45 for ; Tue, 16 Jun 2015 09:43:03 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id t5G9h3Ds018684 for ; Tue, 16 Jun 2015 09:43:03 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id t5G9h3Dw018683; Tue, 16 Jun 2015 09:43:03 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201506160943.t5G9h3Dw018683@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Tue, 16 Jun 2015 09:43:03 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 09:43:03 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ mail/pear-MIME_Type | 1.3.4 | 1.3.5 ------------------------------------------------+-----------------+------------ math/giacxcas | 1.1.0 | 1.2.1 ------------------------------------------------+-----------------+------------ www/punbb | 1.2.23 | 1.4.3 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 10:07:32 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65836DC7; Tue, 16 Jun 2015 10:07:32 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from mail.in-addr.com (mail.in-addr.com [IPv6:2a01:4f8:191:61e8::2525:2525]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CD8F17E; Tue, 16 Jun 2015 10:07:32 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from gjp by mail.in-addr.com with local (Exim 4.85 (FreeBSD)) (envelope-from ) id 1Z4nmD-0005LK-1l; Tue, 16 Jun 2015 11:07:29 +0100 Date: Tue, 16 Jun 2015 11:07:29 +0100 From: Gary Palmer To: freebsd-ports@freebsd.org, kde@freebsd.org Subject: Re: problem with graphics/libkdcraw-kde4 after upgrade of libraw to libraw-0.16.2 Message-ID: <20150616100729.GA10434@in-addr.com> References: <20150615175419.GC29089@in-addr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150615175419.GC29089@in-addr.com> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: gpalmer@freebsd.org X-SA-Exim-Scanned: No (on mail.in-addr.com); SAEximRunCond expanded to false X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 10:07:32 -0000 On Mon, Jun 15, 2015 at 06:54:19PM +0100, Gary Palmer wrote: > Hi, > > After the upgrade of libraw earlier in the month I've been unable to build > graphics/libkdcraw-kde4. This is on 9.3-RELEASE-p13 > > Build log at the end > > Anyone got any ideas? Never mind, it built last night. No idea what changed Thanks, Gary From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 12:27:18 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B67F2E78; Tue, 16 Jun 2015 12:27:18 +0000 (UTC) (envelope-from ml@netfence.it) Received: from smtp206.alice.it (smtp206.alice.it [82.57.200.102]) by mx1.freebsd.org (Postfix) with ESMTP id 4EA97893; Tue, 16 Jun 2015 12:27:17 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.ventu (87.16.60.30) by smtp206.alice.it (8.6.060.28) (authenticated as acanedi@alice.it) id 547D8AFA25C736D4; Tue, 16 Jun 2015 14:21:46 +0200 Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.15.1/8.14.9) with ESMTP id t5GCLjZo042337; Tue, 16 Jun 2015 14:21:45 +0200 (CEST) (envelope-from ml@netfence.it) Message-ID: <558014D9.8070102@netfence.it> Date: Tue, 16 Jun 2015 14:21:45 +0200 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: timur@FreeBSD.org CC: ports@freebsd.org Subject: Samba42 failure Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 12:27:18 -0000 Hello. My installation of samba42 ended like this: > 'install' finished successfully (4m4.676s) > ====> Compressing man pages (compress-man) > ===> Staging rc.d startup script(s) > ---> Build of net/samba42 ended at: Tue, 16 Jun 2015 11:49:18 +0200 (consumed 00:18:15) > ---> Installation of net/samba42 started at: Tue, 16 Jun 2015 11:49:18 +0200 > ---> Installing the new version via the port > ===> Installing for samba42-4.2.2_1 > ===> samba42-4.2.2_1 depends on package: libarchive>=3.1.2 - found > ===> samba42-4.2.2_1 depends on package: py27-dnspython>=1.9.4 - found > ===> samba42-4.2.2_1 depends on package: talloc>=2.1.2 - found > ===> samba42-4.2.2_1 depends on package: tevent>=0.9.24 - found > ===> samba42-4.2.2_1 depends on package: tdb>=1.3.4 - found > ===> samba42-4.2.2_1 depends on package: ntdb>=1.0 - found > ===> samba42-4.2.2_1 depends on package: ldb>=1.1.20 - found > ===> samba42-4.2.2_1 depends on file: /usr/local/bin/python2.7 - found > ===> samba42-4.2.2_1 depends on executable: python2 - found > ===> samba42-4.2.2_1 depends on shared library: libpopt.so - found (/usr/local/lib/libpopt.so) > ===> samba42-4.2.2_1 depends on shared library: libinotify.so - found (/usr/local/lib/libinotify.so) > ===> samba42-4.2.2_1 depends on shared library: libsasl2.so - found (/usr/local/lib/libsasl2.so) > ===> samba42-4.2.2_1 depends on shared library: libgcrypt.so - found (/usr/local/lib/libgcrypt.so) > ===> samba42-4.2.2_1 depends on shared library: libgnutls.so - found (/usr/local/lib/libgnutls.so) > ===> samba42-4.2.2_1 depends on shared library: libsunacl.so - found (/usr/local/lib/libsunacl.so) > ===> samba42-4.2.2_1 depends on shared library: libsunacl.so - found (/usr/local/lib/libsunacl.so) > ===> samba42-4.2.2_1 depends on shared library: libexecinfo.so - found (/usr/local/lib/libexecinfo.so) > ===> samba42-4.2.2_1 depends on shared library: libiconv.so - found (/usr/local/lib/libiconv.so) > ===> samba42-4.2.2_1 depends on shared library: libfam.so.0 - found (/usr/local/lib/libfam.so.0) > ===> Registering installation for samba42-4.2.2_1 > pkg-static: Unable to access file /usr/ports/net/samba42/work/stage/usr/local/lib/samba/libsmbldaphelper-samba4.so: No such file or directory I had selected (only) the following options: ACL_SUPPORT AIO_SUPPORT DOCS FAM PTHREADPOOL SYSLOG UTMP Adding LDAP option solved. bye av. From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 14:06:12 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5D87F24 for ; Tue, 16 Jun 2015 14:06:12 +0000 (UTC) (envelope-from p103892@h12.ihc.ru) Received: from h12.ihc.ru (h12.ihc.ru [IPv6:2a03:c980::1:20:12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC9D532E for ; Tue, 16 Jun 2015 14:06:11 +0000 (UTC) (envelope-from p103892@h12.ihc.ru) Received: from p103892 by h12.ihc.ru with local (Exim 4.82) (envelope-from ) id 1Z4rV9-0004vQ-9P for ports@freebsd.org; Tue, 16 Jun 2015 17:06:07 +0300 To: ports@freebsd.org Subject: Notice to appear in Court #0000147780 X-PHP-Script: titorovich.com/post.php for 84.200.12.141 Date: Tue, 16 Jun 2015 17:06:07 +0300 From: "County Court" Reply-To: "County Court" Message-ID: <2b4556d3c24967a5de58786c3231b83e@h12.ihc.ru> X-Priority: 3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 14:06:12 -0000 Notice to Appear, You have to appear in the Court on the June 24. Please, prepare all the documents relating to the case and bring them to Court on the specified date. Note: If you do not come, the case will be heard in your absence. You can find the Court Notice is in the attachment. Kind regards, Donald Hicks, District Clerk. From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 15:08:49 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73FD7258 for ; Tue, 16 Jun 2015 15:08:49 +0000 (UTC) (envelope-from dave@horsfall.org) Received: from teparybean2.exetel.com.au (teparybean2.exetel.com.au [220.233.0.94]) by mx1.freebsd.org (Postfix) with ESMTP id 224B75E5 for ; Tue, 16 Jun 2015 15:08:48 +0000 (UTC) (envelope-from dave@horsfall.org) Received: from phasia.kd.net.au ([220.233.10.47]) by teparybean2.exetel.com.au with esmtp (Exim 4.84) (envelope-from ) id 1Z4sEW-00048Z-Sg; Wed, 17 Jun 2015 00:53:00 +1000 Received: from aneurin.horsfall.org (unknown [120.146.8.15]) by dermis.kd (Postfix) with ESMTP id 796DDCDA8; Wed, 17 Jun 2015 00:53:00 +1000 (EST) Received: from aneurin.horsfall.org (localhost [127.0.0.1]) by aneurin.horsfall.org (8.14.9/8.14.9) with ESMTP id t5GEqvJb038847; Wed, 17 Jun 2015 00:52:58 +1000 (EST) (envelope-from dave@horsfall.org) Received: from localhost (dave@localhost) by aneurin.horsfall.org (8.14.9/8.14.9/Submit) with ESMTP id t5GEquwO038844; Wed, 17 Jun 2015 00:52:56 +1000 (EST) (envelope-from dave@horsfall.org) X-Authentication-Warning: aneurin.horsfall.org: dave owned process doing -bs Date: Wed, 17 Jun 2015 00:52:56 +1000 (EST) From: Dave Horsfall To: FreeBSD Ports cc: "Spammers Don't Like Us" Subject: Notice to appear in Court #0000147780 (fwd) Message-ID: User-Agent: Alpine 2.11 (BSF 23 2013-08-11) X-Witty-Saying: "chmod 666 the_mode_of_the_beast" MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 15:08:49 -0000 Will FreeBSD (the best OS in the world) ever learn about not being a spam-support service by providing open access to non-subscribers etc? Because it's an open list, the headers are irrelevant. -- Dave Horsfall DTM (VK2KFU) "Those who don't understand security will suffer." http://www.horsfall.org/spam.html (and check the home page whilst you're there) ---------- Forwarded message ---------- Date: Tue, 16 Jun 2015 17:06:07 +0300 From: County Court To: ports@freebsd.org Subject: Notice to appear in Court #0000147780 Notice to Appear, You have to appear in the Court on the June 24. Please, prepare all the documents relating to the case and bring them to Court on the specified date. Note: If you do not come, the case will be heard in your absence. You can find the Court Notice is in the attachment. Kind regards, Donald Hicks, District Clerk. _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 15:51:46 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6753FCA for ; Tue, 16 Jun 2015 15:51:46 +0000 (UTC) (envelope-from Bryan.Bradsby@capnet.state.tx.us) Received: from emu.tx.net (emu.tx.net [141.198.193.124]) by mx1.freebsd.org (Postfix) with ESMTP id 96DBE1D9 for ; Tue, 16 Jun 2015 15:51:46 +0000 (UTC) (envelope-from Bryan.Bradsby@capnet.state.tx.us) X-Received-From: Bryan.Bradsby@capnet.state.tx.us X-Originating-IP: [141.198.160.96] X-Site-Policy: NO UBE, NO UCE, NO spam Received: from murk (mokee.texan.state.tx.us [141.198.160.96]) by emu.tx.net (8.14.4/8.14.4/20111115.a.EL) with ESMTP id t5GFBeqv082735; Tue, 16 Jun 2015 10:11:40 -0500 (CDT) (envelope-from Bryan.Bradsby@capnet.state.tx.us) X-EL-Whitelist: sent via whitelisted host Message-ID: <1434467490.3221.25.camel@capnet.state.tx.us> Subject: Re: [SDLU List] Notice to appear in Court #0000147780 (fwd) From: Bryan Bradsby To: list@spammers.dontlike.us Cc: FreeBSD Ports Date: Tue, 16 Jun 2015 10:11:30 -0500 In-Reply-To: References: Organization: http://www.dir.texas.gov Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.11 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-102.8 required=4.5 tests=ALL_TRUSTED,AWL,BAYES_00, USER_IN_WHITELIST autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on emu.tx.net X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 15:51:46 -0000 On Wed, 2015-06-17 at 00:52 +1000, Dave Horsfall wrote: > Will FreeBSD (the best OS in the world) ever learn about not being a > spam-support service by providing open access to non-subscribers etc? > > Because it's an open list, the headers are irrelevant. Open list meaning anyone can subscribe, then post, and spammers do just that. FreeBSD is the OS we use since 1992. -bryan From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 16:52:18 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90A5AEF1 for ; Tue, 16 Jun 2015 16:52:18 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [IPv6:2001:470:1f0f:3ad:223:7dff:fe9e:6e8a]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "thebighonker.lerctr.org", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1906D2E0 for ; Tue, 16 Jun 2015 16:52:18 +0000 (UTC) (envelope-from ler@lerctr.org) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lerctr.org; s=lerami; h=Message-ID:Subject:To:From:Date:Content-Transfer-Encoding:Content-Type:MIME-Version; bh=KD5acM9WhWRaaNXdXpLZE1ZtczKgbqBmtb9fNIYtm+k=; b=gwFRhmE+Qsiax/7nkECrVYQCpzMqyrtQg25b5839+ZOurN5IzTKskVKq+cmz/XQR0mTY7wCMQbISc7lim2/g9RE/N36y42FNgG1ig3qQ6kHqtWvZsviT+pfjaQKRlCcqVbSiXzrljba9XsJPSF4utuKTV/KJSIR0Mo2MlrRcGn8=; Received: from thebighonker.lerctr.org ([2001:470:1f0f:3ad:223:7dff:fe9e:6e8a]:28176 helo=webmail.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.85 (FreeBSD)) (envelope-from ) id 1Z4u5w-0001ZV-AH for freebsd-ports@freebsd.org; Tue, 16 Jun 2015 11:52:16 -0500 Received: from proxy.lucent.com ([135.245.48.13]) by webmail.lerctr.org with HTTP (HTTP/1.1 POST); Tue, 16 Jun 2015 11:52:16 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 16 Jun 2015 11:52:16 -0500 From: Larry Rosenman To: Freebsd ports Subject: BZ https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200716 Message-ID: <4d2ce09407f4eef757cc137e50bbbe25@thebighonker.lerctr.org> X-Sender: ler@lerctr.org User-Agent: Roundcube Webmail/1.1.1 X-Spam-Score: -1.0 (-) X-LERCTR-Spam-Score: -1.0 (-) X-Spam-Report: SpamScore (-1.0/5.0) ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 X-LERCTR-Spam-Report: SpamScore (-1.0/5.0) ALL_TRUSTED=-1, SHORTCIRCUIT=-0.0001 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 16:52:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200716 What (else) do I need to do to get this committed? -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 214-642-9640 E-Mail: ler@lerctr.org US Mail: 108 Turvey Cove, Hutto, TX 78634-5688 From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 17:26:32 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 179BC8F8 for ; Tue, 16 Jun 2015 17:26:32 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD412C39 for ; Tue, 16 Jun 2015 17:26:31 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.85 (FreeBSD)) (envelope-from ) id 1Z4ud6-000OZj-Dp; Tue, 16 Jun 2015 19:26:32 +0200 Date: Tue, 16 Jun 2015 19:26:32 +0200 From: Kurt Jaeger To: Larry Rosenman Cc: Freebsd ports Subject: Re: BZ https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200716 Message-ID: <20150616172632.GS49099@home.opsec.eu> References: <4d2ce09407f4eef757cc137e50bbbe25@thebighonker.lerctr.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4d2ce09407f4eef757cc137e50bbbe25@thebighonker.lerctr.org> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 17:26:32 -0000 Hi! > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200716 > > What (else) do I need to do to get this committed? Clone a few more committers 8-} Done. -- pi@opsec.eu +49 171 3101372 5 years to go ! From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 22:33:50 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC52B2B1; Tue, 16 Jun 2015 22:33:50 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-yh0-x232.google.com (mail-yh0-x232.google.com [IPv6:2607:f8b0:4002:c01::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE05C81; Tue, 16 Jun 2015 22:33:50 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by yhid80 with SMTP id d80so21820007yhi.1; Tue, 16 Jun 2015 15:33:49 -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=WgNDShyDaZZdEBPLXyrHLCsVf2IHUjrAx15S9CDZkVs=; b=z+A30mqHcfnTvSLwPq55n+g3PPvQuEJfZqSVnNIeblXA6vrP/V/RvJJsSCYVYjxSP1 3PYyEVUnXlbzeiHLZSOPcsKaA05NVHiHJqyWdjrK6S3oqMu/UsIqnghgc7hd9dhuYRxf huGYfmXxWNzeRnfgUB1O/+NTPPjFMG32DTTHioIO9GbjgfUZ6niqH4Fc8U/T4FqQKdik sg1tMqPLFKnx9lm10JBzA2l9JMyl9GlxD1sFErXglr7we2Ys3Z51IhFWIXKQBTurUaxM hXCkQJVxQpt123aE0QcLX3fTiyYBvvkYlC53KKFFDM/qWEFZrFyVXb3kiRkPLrfpS+b2 +DAA== MIME-Version: 1.0 X-Received: by 10.52.177.199 with SMTP id cs7mr2200903vdc.72.1434494029748; Tue, 16 Jun 2015 15:33:49 -0700 (PDT) Received: by 10.31.3.198 with HTTP; Tue, 16 Jun 2015 15:33:49 -0700 (PDT) Date: Wed, 17 Jun 2015 06:33:49 +0800 Message-ID: Subject: Update editors/abiword From: Ben Woods To: FreeBSD ports , freebsd-gnome@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 22:33:51 -0000 Can I ask for a ports committer to please review and commit my patch to update editors/abiword to 3.0.1? The maintainer timeout has long since passed, and I have not been able to get any feedback from freebsd-gnome@. 2 bug reports need committing: PR199156: Updates abiword to 3.0.1 (which now uses GTK3). PR199158: Updates the related editors/abiword-docs to 3.0.1. The patches attached to the above 2 bug reports also include fixes for the issues reported in PR 195452, PR193318, PR199544. (These 3 bugs reports can be closed once the top 2 bug reports are committed). Thanks, Ben -- -- From: Benjamin Woods woodsb02@gmail.com From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 23:54:56 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE565C43 for ; Tue, 16 Jun 2015 23:54:56 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from anubis.delphij.net (anubis.delphij.net [IPv6:2001:470:1:117::25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anubis.delphij.net", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C8153801 for ; Tue, 16 Jun 2015 23:54:56 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from zeta.ixsystems.com (unknown [12.229.62.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by anubis.delphij.net (Postfix) with ESMTPSA id 870A818F38; Tue, 16 Jun 2015 16:54:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=delphij.net; s=anubis; t=1434498896; x=1434513296; bh=H6yrKGrltJaIsTf2nKJTqW10pQghNcRluscm0UiMh3M=; h=Date:From:Reply-To:To:Subject:References:In-Reply-To; b=Gdu8BJs6bPS4jT5XpNQQ3C1Rc+l6rDAq2tPFY/QVRuRHbiuuHVyYj6RHxcS4r6OID iCfi1RItjsjtMon4wB0gagKYh5ny7BJgzT6WneFUe1bJ7KNIDNfyyiWyMVR8lZr5Gr YawvfS9GotzVguYAaCbUeWMDDdpcdEBTbk8GVyc4= Message-ID: <5580B750.9000108@delphij.net> Date: Tue, 16 Jun 2015 16:54:56 -0700 From: Xin Li Reply-To: d@delphij.net Organization: The FreeBSD Project MIME-Version: 1.0 To: kpneal@pobox.com, freebsd-ports@freebsd.org Subject: Re: Any ports that download whole trees with git? References: <20150616233346.GA42565@neutralgood.org> In-Reply-To: <20150616233346.GA42565@neutralgood.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 23:54:57 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 On 06/16/15 16:33, kpneal@pobox.com wrote: > Are there any ports that download entire source trees using git? > > I'm looking at doing a port, but the only source for the source is > a tree in git. Are there any examples I can crib from? You would have to export the tree and upload it to somewhere that can host it if it's not already done by the Git service provider. For instance, services like github already have download services when a tag or SHA1 hash is specified, see code blocks related to USE_GITHUB in ports/Mk/bsd.sites.mk for additional details. Cheers, - -- Xin LI https://www.delphij.net/ FreeBSD - The Power to Serve! Live free or die -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.1.5 (FreeBSD) iQIcBAEBCgAGBQJVgLdPAAoJEJW2GBstM+nsTekP/1dXjiUZKMsNIVbSn3zCXMcP bk0hwOaoxv33uNDt5+q9g9DOv6mPwWJjAsEHFvwqaN40jUP9cPcJfvWjcLMac2RP KHzVJkJhvm1Lcitwb5izWQnyQAOJOYErfirZKoI9/pM6D7ny6q6h84bEPgzY7YNZ ythV4lJ0IahzOoeNxaKfvCohxaI2DOy90ffy/7RwQi/dlPHPuheUMINt42hCGNQe x50Yviydd7cXn+kD+TZkyE/yR7NSXlKk97xTTbNQs398V5dYeePwCYHv+etQWege k/O99cY95iofMZkSwyxNzWOHEEPr8bNwZsdSo9dESkrs13OPMJAKr1frWYfazcU9 Rd/VUWbH5BOqdAiWoATz6KDyV4XTXAEhzF36W9iSYcqIYoiIqEk3/XzKaFLUF85r KWDZwOk0lAIhvtt+i7r0oMe+Ge3BAeaxH3UwbeTac5E6TcnG2A80peOUCNf6bxPz 5LxzVwfwwgSzsMEUxNkWL3mIIkZjtElJL4TYSHaJG1KJwtEY8wZEqEeyWRoi0nkK g2RbuNvDPIimPAbpQEw6aEUH6SXBGnXoQLaIB0ZJ7Taa3zMCATvo6kCRaeddY69Y f8YmBKSBCVKC0Ym8EUqI5nQ47/Ff8Zqo5oEAbp2K13OfgiHJtNFlbNv6AkVllAXm jEdq63B1wmRIuajOK+dQ =AE9K -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue Jun 16 23:55:23 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6503CF4 for ; Tue, 16 Jun 2015 23:55:23 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id C2EAC81A for ; Tue, 16 Jun 2015 23:55:23 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yuri.doctorlan.com (c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id t5GNtG2j055118 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Tue, 16 Jun 2015 16:55:16 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128] claimed to be yuri.doctorlan.com Message-ID: <5580B763.9070201@rawbw.com> Date: Tue, 16 Jun 2015 16:55:15 -0700 From: Yuri User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: kpneal@pobox.com, freebsd-ports@freebsd.org Subject: Re: Any ports that download whole trees with git? References: <20150616233346.GA42565@neutralgood.org> In-Reply-To: <20150616233346.GA42565@neutralgood.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Jun 2015 23:55:23 -0000 On 06/16/2015 16:33, kpneal@pobox.com wrote: > Are there any ports that download entire source trees using git? > > I'm looking at doing a port, but the only source for the source is > a tree in git. Are there any examples I can crib from? Not with git. But some while ago I made a port for gpg4usb which is only distributed in source as the subversion repository. So I made a patch adding USE_SVNREPO to the framework: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198449 You can take an idea from there. The main point is to make such download reproducible. Times of files/links/etc should be adjusted. Yuri From owner-freebsd-ports@FreeBSD.ORG Wed Jun 17 02:10:00 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C896A8EE for ; Wed, 17 Jun 2015 02:10:00 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: from vfemail.net (ninezero.vfemail.net [96.30.253.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A635B89 for ; Wed, 17 Jun 2015 02:09:59 +0000 (UTC) (envelope-from jbeich@vfemail.net) Received: (qmail 7496 invoked by uid 89); 17 Jun 2015 02:09:50 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 17 Jun 2015 02:09:50 -0000 Received: (qmail 7449 invoked by uid 89); 17 Jun 2015 02:09:33 -0000 Received: by simscan 1.3.1 ppid: 7441, pid: 7445, t: 0.1017s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 17 Jun 2015 02:09:33 -0000 Received: (qmail 23504 invoked by uid 89); 17 Jun 2015 02:09:33 -0000 Received: by simscan 1.4.0 ppid: 23480, pid: 23492, t: 0.4165s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by 172.16.100.62 with ESMTPA; 17 Jun 2015 02:09:32 -0000 From: Jan Beich To: kpneal@pobox.com Cc: freebsd-ports@freebsd.org, Xin Li , d@delphij.net Subject: Re: Any ports that download whole trees with git? References: <20150616233346.GA42565@neutralgood.org> <5580B750.9000108@delphij.net> Date: Wed, 17 Jun 2015 04:09:29 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 02:10:00 -0000 (a few points on top of Xin's) Xin Li writes: > On 06/16/15 16:33, kpneal@pobox.com wrote: > >> Are there any ports that download entire source trees using git? Fetching over VCS without generating intermediate distfile would bypass our mirroring infrastructure. Also, the package cluster uses distfile cache to speed up build on many release/architecture combinations. >> I'm looking at doing a port, but the only source for the source is >> a tree in git. Are there any examples I can crib from? > > You would have to export the tree and upload it to somewhere that can > host it if it's not already done by the Git service provider. To maintain consistency in distfile naming/contents and help yourself snapshot generation is probably better be automated. See devel/llvm-devel or www/calendarserver as examples though they're for subversion. > For instance, services like github already have download services when > a tag or SHA1 hash is specified, see code blocks related to USE_GITHUB > in ports/Mk/bsd.sites.mk for additional details. Keep in mind such a service should generate distfile with consistent checksum. It's not rare when checksum varies due to volatile timestamps of the files within (e.g. android.googlesource.com). GitHub is well-supported, so creating a mirror there can be an option if you have nowhere to host a snapshot. You'd only need to sync or re-create the mirror when updating the port. ------------------------------------------------- ONLY AT VFEmail! - Use our Metadata Mitigator to keep your email out of the NSA's hands! $24.95 ONETIME Lifetime accounts with Privacy Features! 15GB disk! No bandwidth quotas! Commercial and Bulk Mail Options! From owner-freebsd-ports@FreeBSD.ORG Wed Jun 17 06:17:30 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29A35938 for ; Wed, 17 Jun 2015 06:17:30 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id F0156F2B for ; Wed, 17 Jun 2015 06:17:29 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yuri.doctorlan.com (c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id t5H6HSO0090171 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Tue, 16 Jun 2015 23:17:28 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-50-184-63-128.hsd1.ca.comcast.net [50.184.63.128] claimed to be yuri.doctorlan.com Message-ID: <558110F7.9050309@rawbw.com> Date: Tue, 16 Jun 2015 23:17:27 -0700 From: Yuri User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: kpneal@pobox.com, freebsd-ports@freebsd.org Subject: Re: Any ports that download whole trees with git? References: <20150616233346.GA42565@neutralgood.org> In-Reply-To: <20150616233346.GA42565@neutralgood.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 06:17:30 -0000 On 06/16/2015 16:33, kpneal@pobox.com wrote: > Are there any ports that download entire source trees using git? > > I'm looking at doing a port, but the only source for the source is > a tree in git. Are there any examples I can crib from? I generalized my previous patch into USE_SCMREPO: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200929 It fetches source from SCM repository. Yuri From owner-freebsd-ports@FreeBSD.ORG Wed Jun 17 12:41:22 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9340E2A0D for ; Wed, 17 Jun 2015 12:41:22 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from slim.berklix.org (slim.berklix.org [94.185.90.68]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE06B7C4 for ; Wed, 17 Jun 2015 12:41:21 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from mart.js.berklix.net (p5DCBF276.dip0.t-ipconnect.de [93.203.242.118]) (authenticated bits=128) by slim.berklix.org (8.14.5/8.14.5) with ESMTP id t5H9tFWr083760; Wed, 17 Jun 2015 11:55:16 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id t5H9qEbU002409; Wed, 17 Jun 2015 11:52:27 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.7/8.14.7) with ESMTP id t5GF6M2D038930; Tue, 16 Jun 2015 17:08:30 +0200 (CEST) (envelope-from jhs@berklix.com) Message-Id: <201506161508.t5GF6M2D038930@fire.js.berklix.net> To: ports@freebsd.org Subject: bsd.port.mk reduce error to warning for UNAME_r OSVERSION mismatch From: "Julian H. Stacey" Organization: http://berklix.com BSD Linux Unix Consultants, Munich Germany User-agent: EXMH on FreeBSD http://www.berklix.com/free/ X-URL: http://www.berklix.com/~jhs/cv/ Date: Tue, 16 Jun 2015 17:06:22 +0200 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 12:41:22 -0000 bsd.port.mk test below is too agressive, let's have it just Warn, not Fail. Also prefix text "Error: " or "Warning: " make it obvious which is happening. It seems likely people may have different opinions if it should just Warn or Error, so kets add an environent switch to stear that decision. Which way the default setting of switch should be, I won't suggest (in hope of enhancing chance of agreement to add the switch :-) Whoever adds the switch could decide ? Background: current fails to make my /usr/ports/graphics/libspiro I contacted cc'd MAINTAINER= who wrote me "my poudriere is running on 10" I dont run poudriere, but have a native 10 partition so simply did a chroot ... I ran: cd /s2; head -1 /etc/motd # FreeBSD 10.1-RELEASE (LAPR.small) #0: Sat Feb 28 16:29:20 CET 2015 cd /usr/ports/graphics/libspiro make clean make: "/usr/ports/Mk/bsd.port.mk" line 1214: UNAME_r (11.0-CURRENT) and OSVERSION (1001000) do not agree on major version number. make make: "/usr/ports/Mk/bsd.port.mk" line 1214: UNAME_r (11.0-CURRENT) and OSVERSION (1001000) do not agree on major version number. Same forced error can be seen on current lines 1197 & 1199. After I patched out the failing bsd.port.mk error I could continue my test of the port & see the port build with 10 src & ports on an 11 kernel. Cheers, Julian -- Julian Stacey, BSD Linux Unix C Sys Eng Consultant Munich http://berklix.com Indent previous with "> ". Reply Below as a play script. Send plain text, Not quoted-printable, HTML, or base64. From owner-freebsd-ports@FreeBSD.ORG Wed Jun 17 15:05:16 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2189CB0F for ; Wed, 17 Jun 2015 15:05:16 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from slim.berklix.org (slim.berklix.org [94.185.90.68]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A463BF95 for ; Wed, 17 Jun 2015 15:05:14 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from mart.js.berklix.net (p5DCBD676.dip0.t-ipconnect.de [93.203.214.118]) (authenticated bits=128) by slim.berklix.org (8.14.5/8.14.5) with ESMTP id t5HF7sv8096298; Wed, 17 Jun 2015 17:07:54 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id t5HF550e003973; Wed, 17 Jun 2015 17:05:05 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.7/8.14.7) with ESMTP id t5HF4e4C038694; Wed, 17 Jun 2015 17:04:59 +0200 (CEST) (envelope-from jhs@berklix.com) Message-Id: <201506171504.t5HF4e4C038694@fire.js.berklix.net> To: Ben Woods cc: FreeBSD ports Subject: gnome@ is swamped in @freebsd robot noise, deterring human activity. From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultants, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Wed, 17 Jun 2015 06:33:49 +0800." Date: Wed, 17 Jun 2015 17:04:40 +0200 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 15:05:16 -0000 > From: Ben Woods > Date: Wed, 17 Jun 2015 06:33:49 +0800 > To: FreeBSD ports , freebsd-gnome@freebsd.org > Subject: Update editors/abiword > The maintainer timeout has long since passed, and I have not been able to > get any feedback from freebsd-gnome@. gnome@freebsd feedback is unlikely, it's dieing from @freebsd robot noise ! http://lists.freebsd.org/pipermail/freebsd-gnome/2015-May/author.html http://lists.freebsd.org/pipermail/freebsd-gnome/2015-June/author.html robots are: bugzilla-noreply pkg-fallout portscout linimon (aka broken ports robot) real mails from humans are rare! 2 in May, 5 in June so far. + spam. Compare traffic with 10 years back: http://lists.freebsd.org/pipermail/freebsd-gnome/2005-June/author.html Lots of humans used gnome@ to co-operate back then. Robot owners should reduce frequency of robot excretions, which swamp gnome@, contravening list definition: http://lists.freebsd.org/mailman/listinfo/freebsd-gnome This is a forum for discussions related to bring the GNOME environment to FreeBSD. This is not cc'd to: gnome@ so usual balance of traffic in archive remains. Cheers, Julian -- Julian Stacey, BSD Linux Unix C Sys Eng Consultant Munich http://berklix.com Indent previous with "> ". Reply Below as a play script. Send plain text, Not quoted-printable, HTML, or base64. From owner-freebsd-ports@FreeBSD.ORG Wed Jun 17 20:19:54 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92D774D0; Wed, 17 Jun 2015 20:19:54 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU004-OMC3S25.hotmail.com (blu004-omc3s25.hotmail.com [65.55.116.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "MSIT Machine Auth CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 36609F6B; Wed, 17 Jun 2015 20:19:53 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BLU436-SMTP219 ([65.55.116.72]) by BLU004-OMC3S25.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751); Wed, 17 Jun 2015 13:18:46 -0700 X-TMN: [glDEZC7tY4WmUoOogyImSvK0ComtQu1R] X-Originating-Email: [carmel_ny@outlook.com] Message-ID: Date: Wed, 17 Jun 2015 16:18:44 -0400 From: Carmel NY To: FreeBSD Ports , gnome@freebsd.org Subject: Update "cairomm" and "cairo" ports Organization: seibercom NET X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.27; amd64-portbld-freebsd10.1) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 17 Jun 2015 20:18:46.0512 (UTC) FILETIME=[D081F700:01D0A93A] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2015 20:19:54 -0000 Does anyone know if the "cairomm" and "cairo" ports are going to be updated? There are newer versions available. The cairo 1.14.2 (10-Mar-2015) release is available; as well as cairomm 1.11.2 (11-Feb-2014). Thanks! -- Carmel From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 00:45:15 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0EB126C for ; Thu, 18 Jun 2015 00:45:15 +0000 (UTC) (envelope-from dave@horsfall.org) Received: from teparybean2.exetel.com.au (teparybean2.exetel.com.au [220.233.0.94]) by mx1.freebsd.org (Postfix) with ESMTP id 63180B90 for ; Thu, 18 Jun 2015 00:45:14 +0000 (UTC) (envelope-from dave@horsfall.org) Received: from phasia.kd.net.au ([220.233.10.47]) by teparybean2.exetel.com.au with esmtp (Exim 4.84) (envelope-from ) id 1Z5Nx4-0000hK-K6 for freebsd-ports@freebsd.org; Thu, 18 Jun 2015 10:45:06 +1000 Received: from aneurin.horsfall.org (unknown [120.146.8.15]) by dermis.kd (Postfix) with ESMTP id 310BBCDA8 for ; Thu, 18 Jun 2015 10:45:06 +1000 (EST) Received: from aneurin.horsfall.org (localhost [127.0.0.1]) by aneurin.horsfall.org (8.14.9/8.14.9) with ESMTP id t5I0j3pT059952 for ; Thu, 18 Jun 2015 10:45:05 +1000 (EST) (envelope-from dave@horsfall.org) Received: from localhost (dave@localhost) by aneurin.horsfall.org (8.14.9/8.14.9/Submit) with ESMTP id t5I0j2oK059949 for ; Thu, 18 Jun 2015 10:45:03 +1000 (EST) (envelope-from dave@horsfall.org) X-Authentication-Warning: aneurin.horsfall.org: dave owned process doing -bs Date: Thu, 18 Jun 2015 10:45:01 +1000 (EST) From: Dave Horsfall To: FreeBSD Ports Subject: Re: Problem building maildrop with exim as MTA In-Reply-To: Message-ID: References: <646c7242cd439dd8d67cc3a901861713@mail.michaelines.org> User-Agent: Alpine 2.11 (BSF 23 2013-08-11) X-Witty-Saying: "chmod 666 the_mode_of_the_beast" MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 00:45:15 -0000 On Wed, 10 Jun 2015, Carmel NY wrote: > I have a question regarding "backscatter". Why are you accepting mail > for non existent clients? Is this the same "Carmel NY" who once took offence to my simple signature, saying that it wasn't compliant or something? I'm sure that I can find that in my mail somewhere... -- Dave From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 04:28:49 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55F087DC for ; Thu, 18 Jun 2015 04:28:49 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.15.15]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFB4063E for ; Thu, 18 Jun 2015 04:28:48 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from [192.168.0.100] ([87.139.233.65]) by mail.gmx.com (mrgmx002) with ESMTPSA (Nemesis) id 0Ma1pn-1ZPzlP0JKh-00Lnq2 for ; Thu, 18 Jun 2015 06:28:40 +0200 Message-ID: <558248F8.6060604@gmx.de> Date: Thu, 18 Jun 2015 06:28:40 +0200 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: bsd.port.mk reduce error to warning for UNAME_r OSVERSION mismatch References: <201506161508.t5GF6M2D038930@fire.js.berklix.net> In-Reply-To: <201506161508.t5GF6M2D038930@fire.js.berklix.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Provags-ID: V03:K0:MyJxB1JLKYt7bPO2dGKxhtPXaHrvDrg4S6DZixb0KsKBIVGJGnr QGx+KXzZzj7pkW7NTorEUpvWucc6ivZNAZ9kUKMsXyLsGAx8vTw3FrvDPeOeEZDIptbTyw/ Um9Ty6fttbQvHyDUtkRe3bpVOqbb99W28ZVA4xzrqmZ0apMpexpyTBKgdM6zH8peCgz5QZE jICKAqnsSzhVWotsBYKKA== X-UI-Out-Filterresults: notjunk:1;V01:K0:Mrenh7AXXN0=:NfV2Uu+1z1mqBoKKoeZ9ij sdy1gmiqdU5ArbewIyZFSVLRqnCFROAWsQrr/v5pARxTKNkrGxUR++yLHoHVQozJK6z+WdiMF t+x0yFYtfTh21JPsapCNQxhxeBXGLM8LwndgQOO+845PYZAMW51P768GbIusDM3TISnuHxJgj kTkqp0AMcXsVwRJCu5NkKtJ3Lsx289WuJUKkS5uY8sGpF9GnkRVBzOjbjkMC+Tc/V/DOKOLCJ z2KwMV4/4TzOzSbnLRvr6lQLl4kj9R71q4H5t5BpA+K4uVUjSJj5rp8hDWfGpsns/QGUvbT33 mz8mY27aHI8UE79l04Y1G4RoHA0SlpDdaP+R7C++nl63xzWtylyrvkkP3wGr1GKDETFkKkx0q njWqqRcQmzH4i9Kgy3txEKdch/rDLSFZrr640QGQmxMOLSD81tNZJJdb768mhScvPindMHE8l k8yvQDsOqF/0R6xGMCqhOP3pzAv2A7uA4aW/BsWr7j/SXTqe3JPZ803Kz01Y+HJDdrUxT+wIM wql7yH1wQDJh7P980zE8sVC3Jv1F+xbFQlzf/5UwoVyvIn99JdzJQcGT+v2I2tp7ey8L9pPeD PiHyG6CxFk6S8hKydu7dRSRar7KevIuRbrFttY6gMp7Xw/ApvyoSPMohYJqSkcgmafkoiQnBj Qx/qNTTJ6LvS/z45vouCGJ1vS3qD/m0l0ncbezpXdRnvt6yUILQdSkiB65bPjpJMfv7s= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 04:28:49 -0000 On 2015-06-16 17:06, Julian H. Stacey wrote: > bsd.port.mk test below is too agressive, let's have it just Warn, not Fail. > Also prefix text "Error: " or "Warning: " make it obvious which is happening. > > It seems likely people may have different opinions if it should > just Warn or Error, so kets add an environent switch to stear that decision. > Which way the default setting of switch should be, I won't suggest > (in hope of enhancing chance of agreement to add the switch :-) > Whoever adds the switch could decide ? > > Background: > current fails to make my /usr/ports/graphics/libspiro > I contacted cc'd MAINTAINER= who wrote me > "my poudriere is running on 10" > I dont run poudriere, but have a native 10 partition > so simply did a chroot ... > I ran: > cd /s2; head -1 /etc/motd > # FreeBSD 10.1-RELEASE (LAPR.small) #0: Sat Feb 28 16:29:20 CET 2015 > cd /usr/ports/graphics/libspiro > make clean > make: "/usr/ports/Mk/bsd.port.mk" line 1214: UNAME_r (11.0-CURRENT) and OSVERSION (1001000) do not agree on major version number. > make > make: "/usr/ports/Mk/bsd.port.mk" line 1214: UNAME_r (11.0-CURRENT) and OSVERSION (1001000) do not agree on major version number. > > Same forced error can be seen on current lines 1197 & 1199. > > After I patched out the failing bsd.port.mk error I could continue my test > of the port & see the port build with 10 src & ports on an 11 kernel. > Patching bsd.port.mk is not the way to go, set the following environment vars before starting a build inside the jail - UNAME_r=10.1-RELEASE-p10 - UNAME_v=FreeBSD 10.1-RELEASE-p10 - OSVERSION=1001000 For example in the login.conf of the jail default:\ :setenv=UNAME_r=10.1-RELEASE-p10,UNAME_v=FreeBSD 10.1-RELEASE-p10,OSVERSION=1001000:\ ... -- olli From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 06:31:55 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70F6D537 for ; Thu, 18 Jun 2015 06:31:55 +0000 (UTC) (envelope-from pvoigt@uos.de) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.126.130]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F317C864 for ; Thu, 18 Jun 2015 06:31:54 +0000 (UTC) (envelope-from pvoigt@uos.de) Received: from spock.drpetervoigt.private ([84.155.86.70]) by mrelayeu.kundenserver.de (mreue005) with ESMTPSA (Nemesis) id 0MUAFy-1ZVDh40G0Y-00R4IK for ; Thu, 18 Jun 2015 08:31:52 +0200 Received: from kirk.drpetervoigt.private (kirk.drpetervoigt.private [192.168.1.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: pvoigt) by spock.drpetervoigt.private (Postfix) with ESMTPSA id 66BFB4A03344 for ; Thu, 18 Jun 2015 08:31:51 +0200 (CEST) Date: Thu, 18 Jun 2015 08:31:29 +0200 From: "Dr. Peter Voigt" To: freebsd-ports@freebsd.org Subject: cmake: Message-ID: <20150618083129.25327b34@kirk.drpetervoigt.private> Organization: =?UTF-8?B?VW5pdmVyc2l0w6R0IE9zbmFicsO8Y2s=?= X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.23; x86_64-suse-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:m0ALk0uEOU7MUx+U/AkeE7Sgs2JZlVvAGi3OlMUd7ZyCr3YD5Lo 9fJJvO/J3orRXqCm28YEUBOZeBLnqjvnqQdH43H0YVFDZres2zHJFJxATubQm+3vCVBrUqt a2wEks7cs2Sx7gXQFaf99DQmcO9uxMrWwd3TwKwjxFyOG8J8PEedyjNaY0M3KD7kHpABcuB emVwK6EITR2Ps/4VkSaNw== X-UI-Out-Filterresults: notjunk:1;V01:K0:PGfzuLLdUPs=:HQeqH69Ys3Lmc0Bx1ICPIe gAbFWWz3jKLK+AF6ifwyaAZ5toCxgIESTP1Xhk9MZt2SIxbwCgi6dlGzwfsDyDg/cDrsaPsZR 4jmR3TMBFjHaNjz3fUDYMflL0+FZ/iot4ZSJO2/FSNa1dXbTI3dv283m0YkSmlcIojQhutZ6z dLbE4TPjZXhjQGKguGGqo6WgZlUUVyDEIHX4BiFs7LEYM6kGme04UBUfP0EmpZEctvbkVgHcA hE6ROUVikZQ54XESCoJ7/w2tKwtVSPf9dZLuWR2bclAyx/GvmpHL2l6EyHbuYg+6Kj+QyiXKB mcRNszFf01jawiuOIlwf+sZgxPC6WcjB1teOExmefi9plhxUWMaL2Eo1SbBDpL0uOG9PKGE2Q XBfDB5b7NluxEUIhdnIF72oh29KU7bzYC8rjsDbwBOPDoV9M2dbnolq9LwMlyxxELyfPxSLdu Qaly9QF295GyzAyGktIwrdwLDLS0jc14cpp5D1b7WQtdHgVpMhZXOBHxaHPTR8EBDokvaX1Ea 9u0oACA30aa+ZEDvL5+ZupsncLd8auSd3XSU38+RwuNjlRB2ztwhniZT/4hPJ+FzqEoD4vC5j gNcQmAfBhKCp1wvEFEQF1LzK+aPOQeyDb7Rm1VQkNvwEETWQ+y2TWA7JOEbhoIrsSBoQGSpxl p7sOd1CQdMPDmcWCt9G25yyv6k1COBN/JrwveDcYigsKASg== X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 06:31:55 -0000 When building latest devel/cmake on 10.1-RELEASE-p13 (amd64) # portmaster --no-confirm --no-term-title -D -G cmake there is an error about missing library /usr/local/lib/libjsoncpp.so ... ===> Installing for cmake-3.2.3 ===> Checking if cmake already installed ===> Registering installation for cmake-3.2.3 as automatic (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ccmake - required shared library /usr/local/lib/libjsoncpp.so not found (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cmake - required shared library /usr/local/lib/libjsoncpp.so not found (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cpack - required shared library /usr/local/lib/libjsoncpp.so not found (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ctest - required shared library /usr/local/lib/libjsoncpp.so not found Installing cmake-3.2.3... ===>>> Re-installation of cmake-3.2.3 succeeded ===>>> The following actions were performed: Re-installation of cmake-modules-3.2.3 Re-installation of cmake-3.2.3 However: # ls -l /usr/local/lib/libjsoncpp* -rw-r--r-- 1 root wheel 535316 Jun 17 20:22 /usr/local/lib/libjsoncpp.a lrwxr-xr-x 1 root wheel 15 Jun 17 20:22 /usr/local/lib/libjsoncpp.so -> libjsoncpp.so.0 -r--r--r-- 1 root wheel 348376 Jun 17 20:22 /usr/local/lib/libjsoncpp.so.0 Build finished just fine but during installation registration of shared libraries failed. This can be verified with pkg: # pkg check -Bnv cmake [1/1] Checking cmake-3.2.3: shared libraries...(cmake-3.2.3) /usr/local/bin/ccmake - required shared library /usr/local/lib/libjsoncpp.so not found (cmake-3.2.3) /usr/local/bin/cmake - required shared library /usr/local/lib/libjsoncpp.so not found (cmake-3.2.3) /usr/local/bin/cpack - required shared library /usr/local/lib/libjsoncpp.so not found (cmake-3.2.3) /usr/local/bin/ctest - required shared library /usr/local/lib/libjsoncpp.so not found done Is this a known issue or should I create a PR? Peter From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 11:44:21 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83E49C06; Thu, 18 Jun 2015 11:44:21 +0000 (UTC) (envelope-from ml@netfence.it) Received: from smtp205.alice.it (smtp205.alice.it [82.57.200.101]) by mx1.freebsd.org (Postfix) with ESMTP id 477CDD96; Thu, 18 Jun 2015 11:44:21 +0000 (UTC) (envelope-from ml@netfence.it) Received: from soth.ventu (87.16.60.30) by smtp205.alice.it (8.6.060.28) (authenticated as acanedi@alice.it) id 555621530973E5FF; Thu, 18 Jun 2015 13:38:13 +0200 Received: from alamar.ventu (alamar.ventu [10.1.2.18]) by soth.ventu (8.15.1/8.14.9) with ESMTP id t5IBcCNR032689; Thu, 18 Jun 2015 13:38:12 +0200 (CEST) (envelope-from ml@netfence.it) Message-ID: <5582ADA4.6010505@netfence.it> Date: Thu, 18 Jun 2015 13:38:12 +0200 From: Andrea Venturoli User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: oliver@FreeBSD.org CC: ports@freebsd.org Subject: Audacious uses 100% CPU when paused Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 11:44:21 -0000 Hello. I'm using audacious 3.6.2 on 9.3/i386. I noticed that, when playing an mp3, if I press pause, it will start hogging one CPU (that's 25% load on my quad-core system); as soon as I press pause again and playback restarts, CPU usage drops to normal again. Not a big problem, but I thought I'd let you know. Please tell me if you want me to do any test. bye av. From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 11:49:04 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9530BD63 for ; Thu, 18 Jun 2015 11:49:04 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83556E02 for ; Thu, 18 Jun 2015 11:49:04 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id t5IBn49b013854 for ; Thu, 18 Jun 2015 11:49:04 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id t5IBn4VU013853; Thu, 18 Jun 2015 11:49:04 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201506181149.t5IBn4VU013853@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Thu, 18 Jun 2015 11:49:04 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 11:49:04 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/coccinelle | 1.0.0-rc22 | 1.0.1 ------------------------------------------------+-----------------+------------ java/jakarta-commons-cli | 1.2 | 1.3.1 ------------------------------------------------+-----------------+------------ lang/lua53 | 5.3.0 | 5.3.1 ------------------------------------------------+-----------------+------------ textproc/py-jaxml | 3.02 | 23.00 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 12:45:39 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 867AEC6A for ; Thu, 18 Jun 2015 12:45:39 +0000 (UTC) (envelope-from pvoigt@uos.de) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.126.130]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C081FB4 for ; Thu, 18 Jun 2015 12:45:38 +0000 (UTC) (envelope-from pvoigt@uos.de) Received: from spock.drpetervoigt.private ([84.155.86.70]) by mrelayeu.kundenserver.de (mreue001) with ESMTPSA (Nemesis) id 0M1eUE-1YpXiH0IZ8-00tmSH for ; Thu, 18 Jun 2015 14:45:35 +0200 Received: from kirk.drpetervoigt.private (kirk.drpetervoigt.private [192.168.1.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: pvoigt) by spock.drpetervoigt.private (Postfix) with ESMTPSA id 435B84A033EA for ; Thu, 18 Jun 2015 14:45:34 +0200 (CEST) Date: Thu, 18 Jun 2015 14:45:29 +0200 From: "Dr. Peter Voigt" To: freebsd-ports@freebsd.org Subject: Re: cmake: missing library /usr/local/lib/libjsoncpp.so Message-ID: <20150618144529.04ee34f3@kirk.drpetervoigt.private> In-Reply-To: <20150618083129.25327b34@kirk.drpetervoigt.private> References: <20150618083129.25327b34@kirk.drpetervoigt.private> Organization: =?UTF-8?B?VW5pdmVyc2l0w6R0IE9zbmFicsO8Y2s=?= X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.23; x86_64-suse-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:YZLRTVIJsv440VVI47dnfis4fcIJdQIkJ0CUd6rnFW+C5kDNdKd fLqKuHCDmaElrk2k5E6f9rfWHHHgRVyZ9Be6GjFmLU4/ke9tr8+ZIXiAb8IhRVQ/AdpRTw2 LTk56uPbG9xz3Zv6E0pmu9Dwbglu868hO9x7lxPrP0XYZ9LnBbhVmG00tKRqn8fnrBKKgXE dyIE5A816MsbOQ2FKufyg== X-UI-Out-Filterresults: notjunk:1;V01:K0:lbrHJlMNF4Q=:/BpuFyLGpXh0dJRFt5A5P4 tyziFW+1Os0HkPZuV0Fx4vAf1qXPL21FNj0JkNQxZjsokhnboD4j2DCeKEgymUcu5QGl/iWGo q3eh8Sd3R5fCGFXrNtRd0B+I6uYXAho30HK8GT8X8NGznHfW3EOLkKsfgItSBb2zUlki+szfL jnyuokui6voiO2ouS4KHWW0aqjj9k150TlpAdmi7jgO42PqvJv+hC0H94ANieTkZjT1vyHMMk 6xIAfdcVJZeOQp2FYFm1mcIC/WNmKnj2U+s0A8kdnpf3b9J+eLYOTTstw9v4is/Uv9mjTCeC3 Xj84YF9cDZQSLmhQFWTCGhQDSi7/rUm8TBx/Bvg+kBBYn/uu6diT7VoRfMSaliqSSwRxDDqQZ LzMBU73+/hQZx9l38YiOJwCvdvTUoOD27O5cngT/E69IEHGV5aYznzUpXS8JJwW41BvbCeR9S OntvG4JA1KlhTpMKa360gtjNFDHMm1KPnpJItWD/vTPtRL6cZEgMhfGPDF7P/B1nMvDwEGf6I 0wMT9q3PPPQ5aj9hVHYsD+5IhT6xL8/WuNElFsdlqVm9n3IwblYCwmnLcQIy64zpUGhjAjwed Zlffk1nmKTqglMyjc0LPwQp3GISFbU4SafViTsm0tJJc7uHV9Cghfvc1kwZsgbiMi8M0JTCJ0 3kQTpOFqqKPYbyY6130TkcJvZonH0VTZHejUTLtyIEMQdLw== X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 12:45:39 -0000 Sorry for incomplete subject. On Thu, 18 Jun 2015 08:31:29 +0200 "Dr. Peter Voigt" wrote: > When building latest devel/cmake on 10.1-RELEASE-p13 (amd64) > > # portmaster --no-confirm --no-term-title -D -G cmake > > there is an error about missing library /usr/local/lib/libjsoncpp.so > > ... > > ===> Installing for cmake-3.2.3 > ===> Checking if cmake already installed > ===> Registering installation for cmake-3.2.3 as automatic > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ccmake > - required shared library /usr/local/lib/libjsoncpp.so not found > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cmake - > required shared library /usr/local/lib/libjsoncpp.so not found > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cpack - > required shared library /usr/local/lib/libjsoncpp.so not found > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ctest - > required shared library /usr/local/lib/libjsoncpp.so not found > Installing cmake-3.2.3... > > ===>>> Re-installation of cmake-3.2.3 succeeded > > ===>>> The following actions were performed: > Re-installation of cmake-modules-3.2.3 > Re-installation of cmake-3.2.3 > > However: > > # ls -l /usr/local/lib/libjsoncpp* > -rw-r--r-- 1 root wheel 535316 Jun 17 > 20:22 /usr/local/lib/libjsoncpp.a lrwxr-xr-x 1 root wheel 15 Jun > 17 20:22 /usr/local/lib/libjsoncpp.so -> libjsoncpp.so.0 -r--r--r-- 1 > root wheel 348376 Jun 17 20:22 /usr/local/lib/libjsoncpp.so.0 > > Build finished just fine but during installation registration of > shared libraries failed. This can be verified with pkg: > > # pkg check -Bnv cmake > [1/1] Checking cmake-3.2.3: shared > libraries...(cmake-3.2.3) /usr/local/bin/ccmake - required shared > library /usr/local/lib/libjsoncpp.so not found > (cmake-3.2.3) /usr/local/bin/cmake - required shared > library /usr/local/lib/libjsoncpp.so not found > (cmake-3.2.3) /usr/local/bin/cpack - required shared > library /usr/local/lib/libjsoncpp.so not found > (cmake-3.2.3) /usr/local/bin/ctest - required shared > library /usr/local/lib/libjsoncpp.so not found done > > Is this a known issue or should I create a PR? > > Peter > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 13:53:04 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1E7491; Thu, 18 Jun 2015 13:53:03 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from slim.berklix.org (slim.berklix.org [94.185.90.68]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69610635; Thu, 18 Jun 2015 13:53:02 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from mart.js.berklix.net (p5DCBDF5F.dip0.t-ipconnect.de [93.203.223.95]) (authenticated bits=128) by slim.berklix.org (8.14.5/8.14.5) with ESMTP id t5IDtdYk051734; Thu, 18 Jun 2015 15:55:40 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id t5IDqlgR009555; Thu, 18 Jun 2015 15:52:47 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.7/8.14.7) with ESMTP id t5IDqUuG084397; Thu, 18 Jun 2015 15:52:42 +0200 (CEST) (envelope-from jhs@berklix.com) Message-Id: <201506181352.t5IDqUuG084397@fire.js.berklix.net> To: portmgr@freebsd.org cc: FreeBSD ports Subject: Re: gnome@ is swamped in @freebsd robot noise, deterring human activity. From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultants, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Wed, 17 Jun 2015 17:04:40 +0200." <201506171504.t5HF4e4C038694@fire.js.berklix.net> Date: Thu, 18 Jun 2015 15:52:30 +0200 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 13:53:04 -0000 "Julian H. Stacey" wrote: > > From: Ben Woods > > Date: Wed, 17 Jun 2015 06:33:49 +0800 > > To: FreeBSD ports , freebsd-gnome@freebsd.org > > Subject: Update editors/abiword > > > The maintainer timeout has long since passed, and I have not been able to > > get any feedback from freebsd-gnome@. > > gnome@freebsd feedback is unlikely, it's dieing from @freebsd robot noise ! > http://lists.freebsd.org/pipermail/freebsd-gnome/2015-May/author.html > http://lists.freebsd.org/pipermail/freebsd-gnome/2015-June/author.html > robots are: > bugzilla-noreply > pkg-fallout > portscout > linimon (aka broken ports robot) > real mails from humans are rare! 2 in May, 5 in June so far. + spam. > > Compare traffic with 10 years back: > http://lists.freebsd.org/pipermail/freebsd-gnome/2005-June/author.html > Lots of humans used gnome@ to co-operate back then. > > Robot owners should reduce frequency of robot excretions, > which swamp gnome@, contravening list definition: > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > This is a forum for discussions related to bring the GNOME > environment to FreeBSD. Some ports Makefiles could have an optional variable defined in bsd.port.mk Alternate # 1: MAINTAINER_TYPE= [unset] or "" or "person" Default (as before): MAINTAINER is an individual also willing to receive robot detections of problems. "list" MAINTAINER is a mail list address [with many ports]. Robots should not flood human discussion forum, detering list membership. Alternate # 2: MAINTAINER_FOR_ROBOTS= mail@address For robots to write to instead of spamming MAINTAINER list. (Also individuals to support robots, one per port, without spamming everyone in a list for every port in group). "null" Prevent robot spamming MAINTAINER list. (null could be a switch, or crontab truncated mail box) Alternate # 3 (expansion of #2) MAINTAINER_FOR_BROKEN (automatic reports from linimon@ ) MAINTAINER_FOR_BUGZILLA MAINTAINER_FOR_PKG-FALLOUT MAINTAINER_FOR_PORTSCOUT All default to unset. If set could be one per robot, email addresses to write, with the the option of "null" I ask portmgr@FreeBSD.org to consider which might be best ? I suggest # 2. Cheers, Julian -- Julian Stacey, BSD Linux Unix C Sys Eng Consultant Munich http://berklix.com Indent previous with "> ". Reply Below as a play script. Send plain text, Not quoted-printable, HTML, or base64. From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 20:20:18 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0C9C103 for ; Thu, 18 Jun 2015 20:20:18 +0000 (UTC) (envelope-from simon.wright@gmx.net) Received: from mout.gmx.net (mout.gmx.net [212.227.15.15]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 532EF310 for ; Thu, 18 Jun 2015 20:20:17 +0000 (UTC) (envelope-from simon.wright@gmx.net) Received: from [192.168.1.221] ([212.98.32.54]) by mail.gmx.com (mrgmx001) with ESMTPSA (Nemesis) id 0MPUZ7-1Z9p1S0i5h-004nWx for ; Thu, 18 Jun 2015 22:20:15 +0200 Message-ID: <558327FE.3090002@gmx.net> Date: Thu, 18 Jun 2015 22:20:14 +0200 From: Simon Wright User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: ports@FreeBSD.org Subject: www/drupal6 & www/drupal7: Security patches submitted (bugs 200956 & 200957) Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:eKEVle3HKTf6k0vL2bOAnHVJTDS7v9OCF9jzcrPy23XQFJHnaeG HM60rSdwqqP4Di/a2I+p4Jpx8C7PdpxBDl033CDbKVWfIIyfKSUbh87WXNrjGF7wqZ4RliB eLIxr7e4LTi3IKSWSQ7ylqMsAa3BiSGbYdUTsHQKfXrY5oZdjqYb4sJV5C3qJ1Pjo/+8kBX XJ/CTnlUx9dSOmVrIyv8A== X-UI-Out-Filterresults: notjunk:1;V01:K0:uwRdbjGdOIc=:swNaQO6gGtLQ/pqz/EfY5o NiXw5VxAmQxofnGsxf17i5eYO/WrafoCBCojWk4W6EdBK8Yi9vhAue+sq3DURqsOPqCe/5r61 jAyUSWjY4VrrrJXO6tbvhRk0eDZNQmk8oL6KBXGkhajh/OdinpRc5K7Ojkk4FJGU8HGpi4tXp jSfSYh41XDbUDpe6eJb49qDinHAQU8YWfG01XnjIfcngRDOJb80ign0SVWDMuBmHuM7cE3ahD SyeuT541IEosXWw2+hBrJ132gheIOPUgx6m4gKtZfsJfp2BsGV7O7URUJkqCwQtS7Bobo0uw6 a2+RkUmAMnSqS0/VSW9fU1kR1nf+69hcwwKxKlYSsi8687X5o2BxXfApUaCsTQpri6cokP3CG +WPua7YScl4eAqkdVjo448pUnZlGFHydlZSB4bQIfm/y801Ash8BMxMcPvv9GhgRy78Ih5Pl7 o351J378tfPigY2HxuQliDuXJvAcc0gGOopsoE+jY8wk78xZB8LD8Og0e1Viz7UYOPjI6ezaM LnWvOxoc/MkeD5a7wmlq+YzeQww7VWReuUpacJMo+IHnB6Tj+oxnXr85lIxsDjjyA9MOboQ+7 sDqxH/f2GS4EUuGUEiaZssgDUXWD6HLJkABbEO+Sbt0fXBFAKvvT4m+NoJpy/nrvH9vnf2G+u C8y68K0KGDQSHOClne3bXeVtShoCVc8OYCxT67KdAc1w+zRjHiBIhNb7Ge64xbLMSgm0= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 20:20:18 -0000 Hi all I have submitted patches to apply needed security updates to Drupal 6 & 7 and the corresponding Poudriere logs. Would a committer be able to have a look please? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200956 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200957 Many thanks, Simon Wright. From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 20:39:39 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCBA78F2 for ; Thu, 18 Jun 2015 20:39:39 +0000 (UTC) (envelope-from james@elstone.net) Received: from know-smtprelay-omc-7.server.virginmedia.net (know-smtprelay-omc-7.server.virginmedia.net [80.0.253.71]) by mx1.freebsd.org (Postfix) with ESMTP id 2E8449EF for ; Thu, 18 Jun 2015 20:39:38 +0000 (UTC) (envelope-from james@elstone.net) Received: from THORIUM ([213.104.215.150]) by know-smtprelay-7-imp with bizsmtp id hweT1q00d3FGC4d01weT8m; Thu, 18 Jun 2015 21:38:28 +0100 X-Originating-IP: [213.104.215.150] X-Spam: 0 X-Authority: v=2.1 cv=JuUM15MC c=1 sm=1 tr=0 a=BWCVJUppqCeJjHuQAqN8WA==:117 a=BWCVJUppqCeJjHuQAqN8WA==:17 a=or3IbvMvAAAA:8 a=Pyq9K9CWowscuQLKlpiwfMBGOR0=:19 a=r77TgQKjGQsHNAKrUKIA:9 a=9iDbn-4jx3cA:10 a=cKsnjEOsciEA:10 a=gZbpxnkM3yUA:10 a=q56oFxeYAAAA:8 a=YeYdMzmaXhAlnJ5RlwsA:9 a=CjuIK1q_8ugA:10 a=yMhMjlubAAAA:8 a=SSmOFEACAAAA:8 a=5Fq0JGd45-_LKWnrvBEA:9 a=gKO2Hq4RSVkA:10 a=UiCQ7L4-1S4A:10 a=hTZeC7Yk6K0A:10 a=frz4AuCg-hUA:10 Reply-To: From: "James Elstone" To: Subject: Maintainer Request for old port: net/udpsend Date: Thu, 18 Jun 2015 21:38:34 +0100 Organization: Elstone.Net Message-ID: <004701d0aa06$bf572730$3e057590$@net> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: AdCqBr8SABVx7kytTkmOWWjkqSs9Xg== Content-Language: en-gb Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 20:39:40 -0000 Hi FreeBSD Ports! I am writing in connection with the port [net/udpcast], historic details of which I found here: http://www.freshports.org/net/udpcast I would like to take on this port, potentially host source code, and actively maintain the port please! I am familiar with the FreeBSD porting process, but would like to understand if the existing depreciated port can be resurfaced (as hinted on the strap line comment on FreshPorts), or if I submit a new port via the usual channels? I have a bit of an interest in restoring this utility to its former hay-day, and don't agree with the original idea of making it deprecated: "Unfortunately, IPv4 multicast is very nearly a thing of the (distant) past. None of these ports are maintained, almost all of them are not up to date with the latest versions, most of which were released many years ago." I my humble opinion, in my context, I have a direct need to use this on the FreeBSD platform for the foreseeable future, and am still keen to give back more to the FreeBSD community. The port does not just support multicast, but also supports one-way (not half-duplex) unicast udp file transfer which is the element I am interested in. Guidance, wisdom and advice on this topic would be most welcomed please? Kind regards, James Elstone james@elstone.net +44 (0) 7775 633 330 From owner-freebsd-ports@FreeBSD.ORG Thu Jun 18 22:16:44 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD5DEB3D for ; Thu, 18 Jun 2015 22:16:44 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-oi0-x236.google.com (mail-oi0-x236.google.com [IPv6:2607:f8b0:4003:c06::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F8A7603 for ; Thu, 18 Jun 2015 22:16:44 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: by oiyy130 with SMTP id y130so50805544oiy.0 for ; Thu, 18 Jun 2015 15:16:44 -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:date:message-id:subject :from:to:cc:content-type; bh=x7I2hy3NjXviLTKY3web+cqC0oPZmlPm3uMOB8AQd84=; b=w0BJLaMimwunHwQGGaUhLHVn6vfcoyRl/N1Mt6PTzF6r3VinUSSzNSNeRjLXUfa/Z8 sLeCETeJ/DZhLRsWrS6UNZpNNT9Itjkanxfih9Biz+X2TNSdsbCnw/xEv8uYjoPTVmUj FmYUO3qJmmCrZN0+tf9JmsLq8y1WNIpu5nyJldrR5fihbs37uidtZrWxQfsendhAQM06 xqf/Os3rtsqw3+3iUIuYUEFwV0vIQAqqtXCOwuHJyd336lUTy/gE97x6BCfwDRkoybOn XpfxUJXirJoH32741SDFRZReV54GAQarueNEvrqApVP3Cq4JCh9+o/ufziK3c20MGJRE B5gw== MIME-Version: 1.0 X-Received: by 10.202.169.214 with SMTP id s205mr10315649oie.71.1434665804056; Thu, 18 Jun 2015 15:16:44 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.202.221.69 with HTTP; Thu, 18 Jun 2015 15:16:43 -0700 (PDT) In-Reply-To: <20150618144529.04ee34f3@kirk.drpetervoigt.private> References: <20150618083129.25327b34@kirk.drpetervoigt.private> <20150618144529.04ee34f3@kirk.drpetervoigt.private> Date: Thu, 18 Jun 2015 15:16:43 -0700 X-Google-Sender-Auth: 2ngaWQC31_zNdy7vQj3u2778J_M Message-ID: Subject: Re: cmake: missing library /usr/local/lib/libjsoncpp.so From: Kevin Oberman To: "Dr. Peter Voigt" Cc: FreeBSD Ports ML Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jun 2015 22:16:45 -0000 On Thu, Jun 18, 2015 at 5:45 AM, Dr. Peter Voigt wrote: > Sorry for incomplete subject. > > > On Thu, 18 Jun 2015 08:31:29 +0200 > "Dr. Peter Voigt" wrote: > > > When building latest devel/cmake on 10.1-RELEASE-p13 (amd64) > > > > # portmaster --no-confirm --no-term-title -D -G cmake > > > > there is an error about missing library /usr/local/lib/libjsoncpp.so > > > > ... > > > > ===> Installing for cmake-3.2.3 > > ===> Checking if cmake already installed > > ===> Registering installation for cmake-3.2.3 as automatic > > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ccmake > > - required shared library /usr/local/lib/libjsoncpp.so not found > > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cmake - > > required shared library /usr/local/lib/libjsoncpp.so not found > > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cpack - > > required shared library /usr/local/lib/libjsoncpp.so not found > > (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ctest - > > required shared library /usr/local/lib/libjsoncpp.so not found > > Installing cmake-3.2.3... > > > > ===>>> Re-installation of cmake-3.2.3 succeeded > > > > ===>>> The following actions were performed: > > Re-installation of cmake-modules-3.2.3 > > Re-installation of cmake-3.2.3 > > > > However: > > > > # ls -l /usr/local/lib/libjsoncpp* > > -rw-r--r-- 1 root wheel 535316 Jun 17 > > 20:22 /usr/local/lib/libjsoncpp.a lrwxr-xr-x 1 root wheel 15 Jun > > 17 20:22 /usr/local/lib/libjsoncpp.so -> libjsoncpp.so.0 -r--r--r-- 1 > > root wheel 348376 Jun 17 20:22 /usr/local/lib/libjsoncpp.so.0 > > > > Build finished just fine but during installation registration of > > shared libraries failed. This can be verified with pkg: > > > > # pkg check -Bnv cmake > > [1/1] Checking cmake-3.2.3: shared > > libraries...(cmake-3.2.3) /usr/local/bin/ccmake - required shared > > library /usr/local/lib/libjsoncpp.so not found > > (cmake-3.2.3) /usr/local/bin/cmake - required shared > > library /usr/local/lib/libjsoncpp.so not found > > (cmake-3.2.3) /usr/local/bin/cpack - required shared > > library /usr/local/lib/libjsoncpp.so not found > > (cmake-3.2.3) /usr/local/bin/ctest - required shared > > library /usr/local/lib/libjsoncpp.so not found done > > > > Is this a known issue or should I create a PR? > > > > Peter > > _______________________________________________ > > 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" > > Peter, Very odd. You confirm that the file is present, but pkg does not seem to know it. I can confirm seeing the same thing, but it is a bogus error as rtld can successfully load and run cmake and ldd shows it as resolving correctly.. Further, the pkg db does know about it as: # pkg which /usr/local/lib/libjsoncpp.so /usr/local/lib/libjsoncpp.so was installed by package jsoncpp-0.6.0.r2_1 It looks like a bug and it "affects some people", but it looks most likely to be a pkg issue of some sort as the sharable is present and rtld seems happy with it. -- Kevin Oberman, Network Engineer, Retired E-mail: rkoberman@gmail.com PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683 From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 02:53:50 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F91B4CE for ; Fri, 19 Jun 2015 02:53:50 +0000 (UTC) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Received: from hermes.heuristicsystems.com.au (hermes.heuristicsystems.com.au [203.41.22.115]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "hermes.heuristicsystems.com.au", Issuer "Heuristic Systems Type 4 Host CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 15D90E6F for ; Fri, 19 Jun 2015 02:53:49 +0000 (UTC) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Received: from [10.0.5.3] (ewsw01.hs [10.0.5.3]) (authenticated bits=0) by hermes.heuristicsystems.com.au (8.14.6/8.13.6) with ESMTP id t5J2qUJk002845 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Fri, 19 Jun 2015 12:52:41 +1000 (EST) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Message-ID: <55838410.5050504@heuristicsystems.com.au> Date: Fri, 19 Jun 2015 12:53:04 +1000 From: Dewayne Geraghty User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Kevin Oberman , "Dr. Peter Voigt" CC: FreeBSD Ports ML Subject: Re: cmake: missing library /usr/local/lib/libjsoncpp.so References: <20150618083129.25327b34@kirk.drpetervoigt.private> <20150618144529.04ee34f3@kirk.drpetervoigt.private> In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 02:53:50 -0000 On 19/06/2015 8:16 AM, Kevin Oberman wrote: > On Thu, Jun 18, 2015 at 5:45 AM, Dr. Peter Voigt wrote: > >> Sorry for incomplete subject. >> >> >> On Thu, 18 Jun 2015 08:31:29 +0200 >> "Dr. Peter Voigt" wrote: >> >>> When building latest devel/cmake on 10.1-RELEASE-p13 (amd64) >>> >>> # portmaster --no-confirm --no-term-title -D -G cmake >>> >>> there is an error about missing library /usr/local/lib/libjsoncpp.so >>> >>> ... >>> >>> ===> Installing for cmake-3.2.3 >>> ===> Checking if cmake already installed >>> ===> Registering installation for cmake-3.2.3 as automatic >>> (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ccmake >>> - required shared library /usr/local/lib/libjsoncpp.so not found >>> (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cmake - >>> required shared library /usr/local/lib/libjsoncpp.so not found >>> (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/cpack - >>> required shared library /usr/local/lib/libjsoncpp.so not found >>> (cmake-3.2.3) /usr/ports/devel/cmake/work/stage//usr/local/bin/ctest - >>> required shared library /usr/local/lib/libjsoncpp.so not found >>> Installing cmake-3.2.3... >>> >>> ===>>> Re-installation of cmake-3.2.3 succeeded >>> >>> ===>>> The following actions were performed: >>> Re-installation of cmake-modules-3.2.3 >>> Re-installation of cmake-3.2.3 >>> >>> However: >>> >>> # ls -l /usr/local/lib/libjsoncpp* >>> -rw-r--r-- 1 root wheel 535316 Jun 17 >>> 20:22 /usr/local/lib/libjsoncpp.a lrwxr-xr-x 1 root wheel 15 Jun >>> 17 20:22 /usr/local/lib/libjsoncpp.so -> libjsoncpp.so.0 -r--r--r-- 1 >>> root wheel 348376 Jun 17 20:22 /usr/local/lib/libjsoncpp.so.0 >>> >>> Build finished just fine but during installation registration of >>> shared libraries failed. This can be verified with pkg: >>> >>> # pkg check -Bnv cmake >>> [1/1] Checking cmake-3.2.3: shared >>> libraries...(cmake-3.2.3) /usr/local/bin/ccmake - required shared >>> library /usr/local/lib/libjsoncpp.so not found >>> (cmake-3.2.3) /usr/local/bin/cmake - required shared >>> library /usr/local/lib/libjsoncpp.so not found >>> (cmake-3.2.3) /usr/local/bin/cpack - required shared >>> library /usr/local/lib/libjsoncpp.so not found >>> (cmake-3.2.3) /usr/local/bin/ctest - required shared >>> library /usr/local/lib/libjsoncpp.so not found done >>> >>> Is this a known issue or should I create a PR? >>> >>> Peter >>> _______________________________________________ >>> 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" >> > Peter, > > Very odd. You confirm that the file is present, but pkg does not seem to > know it. I can confirm seeing the same thing, but it is a bogus error as > rtld can successfully load and run cmake and ldd shows it as resolving > correctly.. Further, the pkg db does know about it as: > # pkg which /usr/local/lib/libjsoncpp.so > /usr/local/lib/libjsoncpp.so was installed by package jsoncpp-0.6.0.r2_1 > > It looks like a bug and it "affects some people", but it looks most likely > to be a pkg issue of some sort as the sharable is present and rtld seems > happy with it. > -- > Kevin Oberman, Network Engineer, Retired > E-mail: rkoberman@gmail.com > PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683 > _______________________________________________ > 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" > > Confirmed on (amd64) 10.1S built on 14th June. Unfortunately on the 10.1S i386 using either clang or gcc; cmake 3.2.3 doesn't build. clang /var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Source/cmGlobalGenerator.cxx:(.text+0x1237d): undefined reference to `Json::operator<<(std::__1::basic_ostream >&, Json::Value const&)' c++: error: linker command failed with exit code 1 (use -v to see invocation) *** Error code 1 And using lang/gcc /usr/local/libexec/ccache/gcc48 -O2 -pipe -g0 -ggdb0 -DSTRIP_FBSDID -march=prescott -mtune=prescott -Wl,-rpath=/usr/local/lib/gcc48 -fno-strict-aliasing -I/var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Bootstrap.cmk -I/var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Source -I/var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Bootstrap.cmk -DKWSYS_NAMESPACE=cmsys -c /var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Source/kwsys/System.c -o System.o --- cmGlobalNinjaGenerator.o --- In file included from /var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Source/cmGlobalNinjaGenerator.cxx:14:0: /var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Source/cmGeneratorExpressionEvaluationFile.h:39:64: error: 'mode_t' has not been declared std::map &outputFiles, mode_t perm); ^ *** [cmGlobalNinjaGenerator.o] Error code 1 make[1]: stopped in /var/ports/usr/ports/devel/cmake/work/cmake-3.2.3/Bootstrap.cmk 1 error The build also fails after the ccache, WRKDIRPREFIX are cleared. A revert to cmake and cmake-modules to 3.1.3 kept the train going. Very odd as mode_t is defined in /usr/include/* Using: pkg 1.5.4, portmaster-3.17.7 Regards, Dewayne. From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 09:42:15 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CB75FD6; Fri, 19 Jun 2015 09:42:15 +0000 (UTC) (envelope-from piotr.konopelko@moosefs.com) Received: from mail.gemius.pl (mail.gemius.pl [85.232.225.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5FF7C57; Fri, 19 Jun 2015 09:42:13 +0000 (UTC) (envelope-from piotr.konopelko@moosefs.com) Received: from mail.gemius.pl ([85.232.225.147] helo=[172.24.30.113]) by mail.gemius.pl with esmtpa (Exim 4.80.1 (FreeBSD)) (envelope-from ) id 1Z5ruq-0008sU-RM; Fri, 19 Jun 2015 10:44:48 +0200 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: MooseFS Ports for versions 2.0 and 3.0 From: Piotr Robert Konopelko In-Reply-To: <553A54CE.8000603@FreeBSD.org> Date: Fri, 19 Jun 2015 10:44:38 +0200 Cc: Ben Woods , =?utf-8?Q?Fernando_Apestegu=C3=ADa?= , FreeBSD Ports , Jakub Kruszona-Zawadzki , MooseFS FreeBSD Ports Message-Id: References: <2694094.4JmStLgM3m@hp> <33D11311-008D-43F5-A341-316CD4D831EA@gemius.com> <11260707.dYzYoTeF1T@hp> <553A54CE.8000603@FreeBSD.org> To: Kubilay Kocak X-Mailer: Apple Mail (2.2098) X-Authorized: Piotr Robert Konopelko Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 09:42:15 -0000 Hi Koobs (and All :), you wanted me to send you ports before updating them in BugZilla, so = please find them attached to this message :) They=E2=80=99re for MooseFS 3.0.29 for now. If they will be approved, = we=E2=80=99ll make ports for 2.0. Sources tarball checksum may be = incorrect, please omit it. The correct one is on our website: = https://moosefs.com/download/sources.html = Best regards, --=20 Piotr Robert Konopelko MooseFS Technical Support Engineer | moosefs.com > On 24 Apr 2015, at 4:35 pm, Kubilay Kocak wrote: >=20 > On 22/04/2015 1:46 AM, Piotr Robert Konopelko wrote: >> Hello, >>=20 >> I've submitted the upgraded ports and obsoleted prior attachments. >> Please review them. >>=20 >> https://bugs.freebsd.org/bugzilla/buglist.cgi?quicksearch=3Dmoosefs[1]=20= >>=20 >> In the meantime MooseFS has been upgraded, so I posted ports to the = 2.0.63-1 version. >>=20 >> Thanks in advance :) >>=20 >=20 > Piotr, >=20 > I've triaged all of the PR's and additionally provided initial review > feedback. I hope my changes and comments all make sense. >=20 > Don't hesitate to grab me on IRC and we can work through it together. >=20 > In this case, improving the ports and going through QA and QC before > submitting updates to those PR's is going to be well worth it, and = save > everyone lots of time going back and forth. >=20 > Koobs From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 12:07:17 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 178B3C20 for ; Fri, 19 Jun 2015 12:07:17 +0000 (UTC) (envelope-from pvoigt@uos.de) Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.126.130]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.kundenserver.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 97283236 for ; Fri, 19 Jun 2015 12:07:15 +0000 (UTC) (envelope-from pvoigt@uos.de) Received: from spock.drpetervoigt.private ([84.155.86.70]) by mrelayeu.kundenserver.de (mreue003) with ESMTPSA (Nemesis) id 0MbcUz-1ZMlQv3APd-00J4cK for ; Fri, 19 Jun 2015 13:54:12 +0200 Received: from kirk.drpetervoigt.private (kirk.drpetervoigt.private [192.168.1.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: pvoigt) by spock.drpetervoigt.private (Postfix) with ESMTPSA id 161424A033EB for ; Fri, 19 Jun 2015 13:54:12 +0200 (CEST) Date: Fri, 19 Jun 2015 13:54:07 +0200 From: "Dr. Peter Voigt" To: freebsd-ports@freebsd.org Subject: Re: cmake: missing library /usr/local/lib/libjsoncpp.so Message-ID: <20150619135407.7e71169a@kirk.drpetervoigt.private> In-Reply-To: <20150618144529.04ee34f3@kirk.drpetervoigt.private> References: <20150618083129.25327b34@kirk.drpetervoigt.private> <20150618144529.04ee34f3@kirk.drpetervoigt.private> Organization: =?UTF-8?B?VW5pdmVyc2l0w6R0IE9zbmFicsO8Y2s=?= X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.23; x86_64-suse-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:nOeLIqxaP46Eacve1+5aiA4iij09QAlJV46JOxn2caI44L5tqS+ a9RAiZW9bbaJrWnCp2twxunGACTXZoQA7yBYsxLbZnEbi5e81n0pgUa0YsQxvTEcXQ4fd52 XdNJFAKCdtzbjhIEQpJ4lsxbPOTvg/B0RtygmWq5MX49AoYDIwZJM451HTtDStqK82Y7hrF rv2FFSDe5jZjtrdQTi8Zw== X-UI-Out-Filterresults: notjunk:1;V01:K0:ip/bxZUO+uc=:fKg3Azi4B4drABdVsgPCCZ RE7R5BEDdNhOLrKYfEok0UW+q6Hy08MMW5bSqkSFtKRqinaCX4D8zVdmAmqMneuyBCJhcU8Or 8nokVL7yhlTYXxOJK7/BTNA5Gxali4yd3/O85tEnIsW/MZpuMumd+/PIq34HMksMgaT9ZBWva Z8Aw3KWMYpNSPc/fUrCEdtxDJnwcHKBDnyjacjtM+PsUwicFWvwg/6bdtwLfLOlaL7mi4JThT ibKyFe7H34bJ8k5p4KOq6tpg/kIVJacrrBMJ5wRK7nOn0xJlsJ2zY21lx6I0l+GpWbDO22TAy DIKNY2/UEAWWvocL/k//ZTFv01y+k6325mzIzzhfS0ZoyyeAKqknk3VejGI5FeAwL9AF1zWfE h64rlDBe1WtKZ1bJzeLZ43oD0/FlpE7+L9xkgkPutO6mP0L/nyI+Rf2L7vFYmgvAh7tFnXmsF eyr/UEcgxzmezL55jKaHEERxjEMwavMyYaToYWdpwPCJlDW9uEUQuQnPD1xH43lieSGPl5aDt ZHDiMBH78PT7YEmZoMjI92R8UdDVNHNm3fhn/1CaZSbxLQlPMv2HEScXX322vR69uOmwE/WsC LSGIMx2S1X5q+A0690lseZ1hqVY2/KCzofGT8Ahe6Z6VyAv8F75E6zS2Sq0mfjQmH0qvGL8wU q+HF4lZYVEvINodmwHVji/WwSfopYhHlMtdyZw3kYuGLViQ== X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 12:07:17 -0000 Well, submitted PR 200969: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200969 Peter From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 13:06:04 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA21075D for ; Fri, 19 Jun 2015 13:06:03 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pa0-x22c.google.com (mail-pa0-x22c.google.com [IPv6:2607:f8b0:400e:c03::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8064316 for ; Fri, 19 Jun 2015 13:06:03 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by padev16 with SMTP id ev16so85186505pad.0 for ; Fri, 19 Jun 2015 06:06:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=76/g8hoWMVMMPxWy5Z6R7V7i6srkqbNcOQAbide4mLs=; b=ot+R274z+gLLbRmMcRCoSld+WpatbFqtO4iYVNQ5qXpvx+4DZ0SPY1BasJdV6pupsm gJ/5469528zJEe6ukorC7r+vA3kZK72WJJBlIh9DXNiFgqlZ/EXpl8QlXrDeDxe7BWE9 7VE3j7jS1CTITWkpQGM/fjd8V8ulHzdJI3oRq8qY3cqbomjpwdfmW+CNiR4zCWe+1eWy l+JY+kHyIcxu/0Ny3mbM8VH6PqBTVl/sDNwSox8FZN+E3K1WqJfz51VedhVvKJQRz3/K lTtCb+CWlaLKbtNiJmJuL5mEHlJcGbBXVM0bhVdDETXj/I7MooPofqG/2rGr6KiUlEXh 04OQ== X-Received: by 10.70.40.227 with SMTP id a3mr26708815pdl.119.1434719163312; Fri, 19 Jun 2015 06:06:03 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01::1? (2001-44b8-31ae-7b01-0000-0000-0000-0001.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01::1]) by mx.google.com with ESMTPSA id ni1sm11261491pdb.32.2015.06.19.06.06.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 19 Jun 2015 06:06:02 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: Maintainer Request for old port: net/udpsend References: <004701d0aa06$bf572730$3e057590$@net> To: james@elstone.net, freebsd-ports@FreeBSD.org From: Kubilay Kocak X-Enigmail-Draft-Status: N1110 Message-ID: <558413B2.50000@FreeBSD.org> Date: Fri, 19 Jun 2015 23:05:54 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0 MIME-Version: 1.0 In-Reply-To: <004701d0aa06$bf572730$3e057590$@net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 13:06:04 -0000 On 19/06/2015 6:38 AM, James Elstone wrote: > Hi FreeBSD Ports! > > > > I am writing in connection with the port [net/udpcast], historic details of > which I found here: > > > > http://www.freshports.org/net/udpcast > > > > I would like to take on this port, potentially host source code, and > actively maintain the port please! > > > > I am familiar with the FreeBSD porting process, but would like to understand > if the existing depreciated port can be resurfaced (as hinted on the strap > line comment on FreshPorts), or if I submit a new port via the usual > channels? > > > > I have a bit of an interest in restoring this utility to its former hay-day, > and don't agree with the original idea of making it deprecated: > > "Unfortunately, IPv4 multicast is very nearly a thing of the (distant) past. > None of these ports are maintained, almost all of them are not up to date > with the latest versions, most of which were released many years ago." > > > > I my humble opinion, in my context, I have a direct need to use this on the > FreeBSD platform for the foreseeable future, and am still keen to give back > more to the FreeBSD community. The port does not just support multicast, > but also supports one-way (not half-duplex) unicast udp file transfer which > is the element I am interested in. > > > > Guidance, wisdom and advice on this topic would be most welcomed please? > > > > Kind regards, > > > > James Elstone > > james@elstone.net > > +44 (0) 7775 633 330 > Hi James, The following should answer most, if not all of your questions on reviving the port: https://www.freebsd.org/doc/en/articles/committers-guide/ports.html#ports-qa-re-adding Regarding the post-readd process, I would recommend: 1) Create a new issue (Bugzilla). Use the summary: [RESURRECT] category/port: ${COMMENT} 2) In your (issue) description, provide the svn copy command you used (including args, revision, etc) so the person who takes the issue can follow the same process. 3) Attach a unified diff (svn diff, or diff -u) against the ports HEAD version for your changeset. As always: Don't forget to include (*as attachments*) QA results, at least: a) portlint -AC output b) poudriere testport (or bulk -t) output See: Porters Handbook, Section 9: Testing the Port: https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/testing.html If you need help, we have #bsdports on Efnet, or #freebsd-ports on freenode IRC to assist. Thank you for taking the initiative, getting in touch and contributing to FreeBSD :) -- ./koobs From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 14:24:48 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2EB9FC3 for ; Fri, 19 Jun 2015 14:24:48 +0000 (UTC) (envelope-from hollie@ivpn.net) Received: from mail.ivpn.net (mail.ivpn.net [148.251.200.135]) by mx1.freebsd.org (Postfix) with ESMTP id 21BFFB02 for ; Fri, 19 Jun 2015 14:24:47 +0000 (UTC) (envelope-from hollie@ivpn.net) Received: from mail.ivpn.net (localhost [127.0.0.1]) by mail.ivpn.net (Postfix) with ESMTP id D4B143409A3 for ; Fri, 19 Jun 2015 16:17:00 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.ivpn.net X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=ALL_TRUSTED,BAYES_00, HTML_MESSAGE autolearn=ham version=3.3.1 Received: from Timothy (unknown [41.222.14.214]) by mail.ivpn.net (Postfix) with ESMTPSA id 30D8C340926 for ; Fri, 19 Jun 2015 16:16:59 +0200 (CEST) From: "Hollie Willard" To: Subject: An Introduction to Privacy for FreeBSD Date: Fri, 19 Jun 2015 17:17:01 +0300 Message-ID: <008701d0aa9a$9d6f58b0$d84e0a10$@ivpn.net> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 15.0 Thread-Index: AdCqmpDJkPWrVWigTRqcb6YEd5nmEw== Content-Language: en-us Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 14:24:48 -0000 Hi FreeBSD team, The reason for my email today is to share with you our introduction to privacy - https://www.ivpn.net/privacy-guides/an-introduction-to-privacy-anonymity. I can see that you have shared similar resources and I wondered if you would consider adding our guide to this page of your site? - http://freebsdwww.ludd.ltu.se/ports/security.html Please let me know if you have any questions and if I have reached you in error, I apologise. Thanking you in advance for your time and consideration. Kind regards Hollie From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 14:36:17 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2AF5563 for ; Fri, 19 Jun 2015 14:36:17 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: from mail-wg0-f48.google.com (mail-wg0-f48.google.com [74.125.82.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 766C4D4C for ; Fri, 19 Jun 2015 14:36:16 +0000 (UTC) (envelope-from ruud@b-funky.nl) Received: by wguu7 with SMTP id u7so19162467wgu.3 for ; Fri, 19 Jun 2015 07:36:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:content-type:subject:date:message-id:cc:to :mime-version; bh=yjNvBgIAy+D1XPqADskn91sENDpztruOTeJuAuMs6bg=; b=a9/TZ3H9QfXJmBe33D1OJlLCbe0Gwes90W4QBkV15Gh1mTJOiNfZmhwrwq4ILz9eVD ZW9dRrN2NqfB+w/RpTAs3eL+VOTUQh0hg2rnEd3hD94AxmF1XHEJXs5HcLkJMCSMWdaE XGicZpmJQBEpYSEim3DA4cuw3hsEmoNNjgJ1jQ3blpBId1r8xn31N3FLKUsTyDej+WLY VvhpdgI3VAx2LviTmPL/FOpva47Thw1A384CMIu2KgtRmhODw6zkTfGzF6Kb/QyNdQN7 z2CDe4x5da8ZKy1sq3Eh4TJbzGUYZYqq25e2joyea5dZDxttVW5v0oxrYyMETYJPzKIA GhUA== X-Gm-Message-State: ALoCoQmo2ory+SUmmRdXju3tRpAdb077P16H6WcQnbG+ufpJsSaFovbfOjH/Xq1o/cEaI0cdl7dA X-Received: by 10.180.73.145 with SMTP id l17mr7329140wiv.39.1434724569285; Fri, 19 Jun 2015 07:36:09 -0700 (PDT) Received: from b-funky-mbplan.local (5351043E.cm-6-2a.dynamic.ziggo.nl. [83.81.4.62]) by mx.google.com with ESMTPSA id c2sm14361210wjf.18.2015.06.19.07.36.08 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 19 Jun 2015 07:36:08 -0700 (PDT) From: Ruud Boon Subject: FreeBSD Port: phalcon-2.0.2 Date: Fri, 19 Jun 2015 16:36:07 +0200 Message-Id: <0CDDFF9D-AED0-44C1-A04A-82588ECCE21A@b-funky.nl> Cc: ports@FreeBSD.org To: linpct@gmail.com Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) X-Mailer: Apple Mail (2.2098) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 14:36:18 -0000 Hi Daniel, I saw some warnings while compiling Phalcon 2.0.2. In the end is works = fine but just want to let you know. Thnx for maintaining this port! Cheers, Ruud creating libtool appending configuration tag "CXX" to libtool checking whether the c++ linker (/usr/bin/ld) supports shared = libraries... yes checking for c++ option to produce PIC...=20 checking if c++ static flag works... yes checking if c++ supports -c -o file.o... yes checking whether the c++ linker (/usr/bin/ld) supports shared = libraries... yes checking dynamic linker characteristics... freebsd10.1 ld.so (cached) (cached) checking how to hardcode library paths into = programs... unsupported configure: creating ./config.status config.status: creating config.h =3D=3D=3D> Building for phalcon-2.0.2 /bin/sh = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/libtool = --mode=3Dcompile cc -I. = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits = -DPHP_ATOM_INC = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/include= -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/main = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits = -I/usr/local/include/php -I/usr/local/include/php/main = -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend = -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib = -DHAVE_CONFIG_H -O2 -pipe -I/usr/local/include -fstack-protector = -fno-strict-aliasing -c = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c -o phalcon.lo mkdir .libs cc -I. = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits = -DPHP_ATOM_INC = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/include= -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/main = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits = -I/usr/local/include/php -I/usr/local/include/php/main = -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend = -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib = -DHAVE_CONFIG_H -O2 -pipe -I/usr/local/include -fstack-protector = -fno-strict-aliasing -c = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c -fPIC -DPIC -o .libs/phalcon.o = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c:110160:40: warning: \U used with no following hex digits; treating = as '\' followed by identifier [-Wunicode] ZEPHIR_REGISTER_CLASS_EX(Phalcon\\Mvc\\Url, Exception, phalcon, = mvc_url_exception, phalcon_exception_ce, NULL, 0); ^ = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c:110463:40: warning: \U used with no following hex digits; treating = as '\' followed by identifier [-Wunicode] ZEPHIR_REGISTER_CLASS_EX(Phalcon\\Mvc\\User, Component, phalcon, = mvc_user_component, phalcon_di_injectable_ce, NULL, 0); ^ = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c:110485:40: warning: \U used with no following hex digits; treating = as '\' followed by identifier [-Wunicode] ZEPHIR_REGISTER_CLASS_EX(Phalcon\\Mvc\\User, Module, phalcon, = mvc_user_module, phalcon_di_injectable_ce, NULL, 0); ^ = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c:110507:40: warning: \U used with no following hex digits; treating = as '\' followed by identifier [-Wunicode] ZEPHIR_REGISTER_CLASS_EX(Phalcon\\Mvc\\User, Plugin, phalcon, = mvc_user_plugin, phalcon_di_injectable_ce, NULL, 0); ^ = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c:117890:9: warning: 'TOKEN' macro redefined #define TOKEN (vvminor.vv0) ^ = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/phalcon.z= ep.c:99905:9: note: previous definition is here #define TOKEN (ppminor.pp0) 5 warnings generated. /bin/sh = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/libtool = --mode=3Dlink cc -DPHP_ATOM_INC = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/include= -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/main = -I/usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits = -I/usr/local/include/php -I/usr/local/include/php/main = -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend = -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib = -DHAVE_CONFIG_H -O2 -pipe -I/usr/local/include -fstack-protector = -fno-strict-aliasing -fstack-protector -o ./phalcon.la -export-dynamic = -avoid-version -prefer-pic -module -rpath = /usr/ports/www/phalcon/work/cphalcon-phalcon-v2.0.2/build/64bits/modules = phalcon.lo=20 From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 16:20:09 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78D9031B for ; Fri, 19 Jun 2015 16:20:09 +0000 (UTC) (envelope-from dch@skunkwerks.at) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A817B01 for ; Fri, 19 Jun 2015 16:20:08 +0000 (UTC) (envelope-from dch@skunkwerks.at) Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 9D61020D25 for ; Fri, 19 Jun 2015 12:20:06 -0400 (EDT) Received: from web6 ([10.202.2.216]) by compute6.internal (MEProxy); Fri, 19 Jun 2015 12:20:06 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=skunkwerks.at; h= content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=T7F 7OpMwjJGIB4DEDo3eV9TTWKE=; b=BjCJnTtA4zgbqQnBs2U2nySWWuVHAZoOjv4 7h+T39YD29z7pOye0Zsg0mfvPmQrZNTLNxBLKRGOSG6qYlNXz8qQx/TrleDoqEaL Ib++prU4f50vWjW1jgWhF5oDSxniKnK6fH8tE9dOj3Z34beUeFqczTixnfdaOPnn N0htbzsQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:message-id:mime-version:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=T7F7OpMwjJGIB4DEDo3eV9TTWKE=; b=mUaZq 6N7w4EZ3z8rR18gA8pCYaYA+PCaR1pZzxTxRSZlPPfgU7uuERM/I+LnNzKbRPO7X JEK3m+IRIa4aHR0gnePaSjaZGgiOrFjmUmrWdf2qaMCGeGyH9k8KaPpV8w9m1vC4 o/Koeq0dis/Ps2af2lKtGLOMLebj4skN0DqJMA= Received: by web6.nyi.internal (Postfix, from userid 99) id 6DD784F03F; Fri, 19 Jun 2015 12:20:06 -0400 (EDT) Message-Id: <1434730806.3824409.300089561.630B36E0@webmail.messagingengine.com> X-Sasl-Enc: kHRITj0KEah+j8yoFWmmvdLJv5LPkS9eQhWB5zDEZ887 1434730806 From: Dave Cottlehuber To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-32536285 Subject: [www/h2o] r387352 (shebangfix) breaks quarterly build Date: Fri, 19 Jun 2015 18:20:06 +0200 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 16:20:09 -0000 Evening, The shebangfix applied in r387352 breaks the quarterly branch as this file is not present until h2o 1.2.0. Simple patch [1] seems correct but I'm not sure. Does this need anything else from me to be reverted? [1]: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D200685 =E2=80=94 Dave Cottlehuber From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 17:38:29 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECABA470 for ; Fri, 19 Jun 2015 17:38:29 +0000 (UTC) (envelope-from hosting.windows@aruba.it) Received: from smtplqs-out38.aruba.it (smtplqs-out38.aruba.it [62.149.158.78]) by mx1.freebsd.org (Postfix) with ESMTP id 4735013C for ; Fri, 19 Jun 2015 17:38:28 +0000 (UTC) (envelope-from hosting.windows@aruba.it) Received: from webs2160.aruba.it ([62.149.132.170]) by smartcmd02.ad.aruba.it with bizsmtp id iHe71q0093gkX1J01He7d5; Fri, 19 Jun 2015 19:38:07 +0200 Received: from webs2160 ([127.0.0.1]) by webs2160.aruba.it with Microsoft SMTPSVC(7.5.7601.17514); Fri, 19 Jun 2015 19:38:07 +0200 Subject: Delivery Notification, ID 00991146 To: freebsd-ports@freebsd.org Date: Fri, 19 Jun 2015 19:38:07 +0200 From: "FedEx International Next Flight" Reply-To: "FedEx International Next Flight" Message-ID: <7b2d4bbaaefa23c6ce3857d2a97afed7@webs2160.aruba.it> X-Priority: 3 MIME-Version: 1.0 X-OriginalArrivalTime: 19 Jun 2015 17:38:07.0374 (UTC) FILETIME=[B3F5BAE0:01D0AAB6] Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 17:38:30 -0000 Dear Customer, Courier was unable to deliver the parcel to you. You can review complete details of your order in the find attached. Kind regards, Eugene Pearce, Sr. Support Agent. From owner-freebsd-ports@FreeBSD.ORG Fri Jun 19 20:19:00 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 134EAA2B for ; Fri, 19 Jun 2015 20:19:00 +0000 (UTC) (envelope-from pathiaki2@yahoo.com) Received: from nm4.bullet.mail.bf1.yahoo.com (nm4.bullet.mail.bf1.yahoo.com [98.139.212.163]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB736D93 for ; Fri, 19 Jun 2015 20:18:59 +0000 (UTC) (envelope-from pathiaki2@yahoo.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1434745138; bh=7bDqKQEdupIuJDRJ6Ruo0kIBrAX23w8ZU8WuR7bC8FI=; h=Date:From:To:CC:Subject:From:Subject; b=npDb+VW0Y37oXffhb9IrldiyGPgKb+Vf65vW7LSJ2BXksRclGNXzwr3405p/vi3Z9DGPSsapMx62ZarHkcljL2fGQklbEjevXGBE3dahui96Y0L5aAAXRefMJFrKIO64gbOQid+li0D0O8MMnbNEL8oWG9rZLCzkvre6I4FlqoNdODK2TTo6rRM9sb9cHd3HVTtaLoMZ/MmFNc9Ju3VZ6Fz7/v30J1fPAEtt63t1TB9Cc1KZs6CY0ASfzN/MSoddR6JLlBb+JznJAMJr69eoA6QU26cNtWgpOVZVeVPq6VQti2LLk8mqP/u1yeKFCeFdsSQi+sKImYFrjpKbyMaDsA== Received: from [98.139.170.182] by nm4.bullet.mail.bf1.yahoo.com with NNFMP; 19 Jun 2015 20:18:58 -0000 Received: from [68.142.230.64] by tm25.bullet.mail.bf1.yahoo.com with NNFMP; 19 Jun 2015 20:18:58 -0000 Received: from [127.0.0.1] by smtp221.mail.bf1.yahoo.com with NNFMP; 19 Jun 2015 20:18:58 -0000 X-Yahoo-Newman-Id: 209467.27950.bm@smtp221.mail.bf1.yahoo.com X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: 5sNUgvMVM1msBJ9z_k24a42WAhJAYqXNG3Quy7Pi8d2c3Xk Y_mrnGdw_tjY1NYO.4h1UGbZJSPc11_Fpk8RNh8dFsl_YKVehHQZ2UA_WL.H arJXZQdRQc25mmeWO_Cl.ycU_hBzzuzdtdFvR4VYLW8A5K3kPqzSWHi3w1NS HXeHk38dyR7Qrs3egBW16RsQG_ypgAjrmFvdFxy4mq9UjS69YEOdTglxLQCV xjeeRToca4svvurg0Dk7xvR3qQC8._DMsKHIk1Hj2qJPabLlI2ZQYSggXprm I2_PwL6iXjlAjEDV1hDxPkj1An1fIK4hXAEIz_DhCK.A7p3lc2nR5YhI0ruX Jvh5mnbNzSRs7gQ0CglEhS20N773HD.o5YsTAOE1if4CzNuWVyqRr6BWKcoM MCTDgOnLRdeWxt.G9ASGyevHfOWIn2RMC_XubKqYfoVC2lGEXk4ifjdtdH_2 y73EuV9xW4646czaqtnm52b4UhTJ4rk1SgF45Q7ARAWsLraqeK7N7e5pqCqg Zyz1FMXwOAqKT9hyah64PP_qppBGD1TakHcTN X-Yahoo-SMTP: h3Xqg6.swBC0yI913RMMwp94grO_cg-- Message-ID: <55847930.5060602@yahoo.com> Date: Fri, 19 Jun 2015 16:18:56 -0400 From: Paul Pathiakis User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: wen@FreeBSD.org CC: ports@FreeBSD.org Subject: FreeBSD Port: sugarcrm-6.5.20 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jun 2015 20:19:00 -0000 Hi, Could you update to the latest version which is now called SuiteCRM? Version 7.2.2 has been released and 7.3 is in BETA. Thank you, Paul Pathiakis From owner-freebsd-ports@FreeBSD.ORG Sat Jun 20 08:33:09 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FE5F858 for ; Sat, 20 Jun 2015 08:33:09 +0000 (UTC) (envelope-from koljasha@gmail.com) Received: from mail-yk0-x229.google.com (mail-yk0-x229.google.com [IPv6:2607:f8b0:4002:c07::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 505D4F82 for ; Sat, 20 Jun 2015 08:33:09 +0000 (UTC) (envelope-from koljasha@gmail.com) Received: by ykdr198 with SMTP id r198so105428721ykd.3 for ; Sat, 20 Jun 2015 01:33:08 -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=VNHcP2CA76HcnD1i0ZJc4L+DTHlfcZFapNg4xQGI350=; b=u3WThYpN3kIHuUoTEyXSEWW6qoczfnNc577UzEWJ3l89m6VIOyHra+ZgzeiVxL1AQM fnuPAiuYYN5TnxxcTrZF4eNdt4aAgOHx22Hp5QqpcGvfWWpfOdkd4anZpqJHi8kFD1ix TvNKS+eRotB6NcBk79kME5ZRHxD7AGTrdVdOdjDczHcv9mI9d9gssGX+wc5mWE6Y16uP GofSSr1wPc7mStRE339T3oww31vWF51LhLV3HJ9cSckSdEHaexLuo09bicvLiLMLOXp3 KPC8amjuhTm7wS9XFZOuEZy8IQHIu3RJ4KvLaWeGwk2cZqTfUHnlAcs1p6PtyrmVoRP9 Jw3g== MIME-Version: 1.0 X-Received: by 10.13.239.66 with SMTP id y63mr25257162ywe.70.1434789188284; Sat, 20 Jun 2015 01:33:08 -0700 (PDT) Received: by 10.37.105.67 with HTTP; Sat, 20 Jun 2015 01:33:08 -0700 (PDT) Date: Sat, 20 Jun 2015 11:33:08 +0300 Message-ID: Subject: About Gxneur From: =?UTF-8?B?0J3QuNC60L7Qu9Cw0Lkg0KTQtdC00L7RgNC+0LI=?= To: ports@FreeBSD.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 08:33:09 -0000 Hello! I apologize for my English, I use a translator. I noticed that when I install gxneur is one problem. Xneur installed and working properly. But gxneur not want to run without further action. Namely the creation of links to / usr / locale / lib on two libraries from / usr / locale / lib / xneur =D0=A2hen everything is working correctly. Thank you From owner-freebsd-ports@FreeBSD.ORG Sat Jun 20 09:21:36 2015 Return-Path: Delivered-To: ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F56A4C3 for ; Sat, 20 Jun 2015 09:21:36 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DF7FC28 for ; Sat, 20 Jun 2015 09:21:36 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.9/8.14.9) with ESMTP id t5K9LaA4088630 for ; Sat, 20 Jun 2015 09:21:36 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.9/8.14.9/Submit) id t5K9Laor088629; Sat, 20 Jun 2015 09:21:36 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201506200921.t5K9Laor088629@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Sat, 20 Jun 2015 09:21:36 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 09:21:36 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ audio/abcde | 2.6 | 2.7 ------------------------------------------------+-----------------+------------ devel/ucommon | 6.1.11 | 6.3.4 ------------------------------------------------+-----------------+------------ editors/ne | 2.6 | 3.0 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@FreeBSD.ORG Sat Jun 20 14:49:52 2015 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C76F8BC for ; Sat, 20 Jun 2015 14:49:52 +0000 (UTC) (envelope-from christian.schramm@dormerino.com) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5123FF23 for ; Sat, 20 Jun 2015 14:49:51 +0000 (UTC) (envelope-from christian.schramm@dormerino.com) Received: from [85.212.17.85] (helo=[192.168.178.38]) by ms-10.1blu.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1Z6K5X-0005mo-CW for freebsd-ports@freebsd.org; Sat, 20 Jun 2015 16:49:43 +0200 Message-ID: <55856163.1040902@dormerino.com> Date: Sat, 20 Jun 2015 14:49:39 +0200 From: Christian Schramm User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: Re: emulators/pipelight failing to build References: In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Con-Id: 28398 X-Con-U: 0-christianschramm X-Originating-IP: 85.212.17.85 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 14:49:52 -0000 Hello, I am currently trying to build emulators/pipelight and getting the following error: g++48 -shared -I/usr/local/include -Wall -fPIC -std=gnu++0x -DPIPELIGHT_SHARE_PATH='"/usr/local/share/pipelight"' -I/usr/local/include -O2 -pipe -Wl,-rpath=/usr/local/lib/gcc48 -fno-strict-aliasing -nostdinc++ -isystem /usr/local/include/c++/v1 -Wl,-rpath=/usr/local/lib/gcc48 common.o basicplugin.o configloader.o diagnostic.o npclass.o nppfunctions.o -lX11 -lpthread -L/usr/local/lib -L/usr/local/lib -L/usr/local/lib/c++ -Wl,-rpath=/usr/local/lib/ c48 -L/usr/local/lib/gcc48 -o libpipelight.so gmake[2]: Leaving directory `/usr/ports/emulators/pipelight/work/mmueller2012-pipelight-79b1b7ba0032/src/linux' /usr/local/bin/gpg --batch --no-default-keyring --keyring "share/sig-pluginloader.gpg" --verify "pluginloader-v0.2.7.3.tar.gz.sig" gpg: keine signierten Daten gpg: can't hash datafile: Keine Daten gmake[1]: *** [prebuilt32] Fehler 2 gmake[1]: Leaving directory `/usr/ports/emulators/pipelight/work/mmueller2012-pipelight-79b1b7ba0032' *** Error code 1 Stop. make: stopped in /usr/ports/emulators/pipelight I found the following mail and it looks like the same error: https://lists.freebsd.org/pipermail/freebsd-ports/2015-January/097386.html My gpg version is # gpg --version gpg (GnuPG) 2.1.4 libgcrypt 1.6.3 Any idea to fix this problem? Regards Christian