From owner-freebsd-ports@freebsd.org Sun Jan 15 00:11:40 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9EEBCB0A39; Sun, 15 Jan 2017 00:11:40 +0000 (UTC) (envelope-from Mark.Martinec+freebsd@ijs.si) Received: from mail.ijs.si (mail.ijs.si [IPv6:2001:1470:ff80::25]) (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 6EAAD130A; Sun, 15 Jan 2017 00:11:40 +0000 (UTC) (envelope-from Mark.Martinec+freebsd@ijs.si) Received: from amavis-ori.ijs.si (localhost [IPv6:::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.ijs.si (Postfix) with ESMTPS id 3v1Gxj0hQJz1J6; Sun, 15 Jan 2017 01:11:37 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ijs.si; h= user-agent:message-id:references:in-reply-to:organization :subject:subject:from:from:date:date:content-transfer-encoding :content-type:content-type:mime-version:received:received :received:received; s=jakla4; t=1484439092; x=1487031093; bh=UpC s4rJqKTMiPifHs/ItdjQ3HZmBlzFQNg9Iv/wmEus=; b=kgJFajfg4rafkJEinby uhetG4iD/s0Uu6B8KHUCi6eAO5bV2d05/uRomnrG2xwl0g3yeJt0/fm1wvn3aAhK jYysHDXz91bl1nTLIXq4CQ/FtWO2wWP1tQmTSQEHu3WZqdjldLft4pBbcFQBf7vY DVG67HArdkVx/GGNGVyPYDcw= X-Virus-Scanned: amavisd-new at ijs.si Received: from mail.ijs.si ([IPv6:::1]) by amavis-ori.ijs.si (mail.ijs.si [IPv6:::1]) (amavisd-new, port 10026) with LMTP id wNoKhgTs9v2M; Sun, 15 Jan 2017 01:11:32 +0100 (CET) Received: from mildred.ijs.si (mailbox.ijs.si [IPv6:2001:1470:ff80::143:1]) by mail.ijs.si (Postfix) with ESMTP id 3v1Gxc6q8pz1J5; Sun, 15 Jan 2017 01:11:32 +0100 (CET) Received: from nabiralnik.ijs.si (nabiralnik.ijs.si [IPv6:2001:1470:ff80::80:16]) by mildred.ijs.si (Postfix) with ESMTP id 3v1Gxc5GqYz15b; Sun, 15 Jan 2017 01:11:32 +0100 (CET) Received: from upc.si.94.140.92.23.dc.cable.static.telemach.net ([94.140.92.23]) by webmail.ijs.si with HTTP (HTTP/1.1 POST); Sun, 15 Jan 2017 01:11:32 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sun, 15 Jan 2017 01:11:32 +0100 From: Mark Martinec To: freebsd-ports@freebsd.org, freebsd-stable@freebsd.org Subject: Re: Does building linux packages under poudriere require linux compatibility emulation? Organization: Jozef Stefan Institute In-Reply-To: References: <82be98ff42ad41e6ba73927eb54ed2ce@ijs.si> Message-ID: <427b7ee73e7155eb3e0584593d9e4ecd@ijs.si> X-Sender: Mark.Martinec+freebsd@ijs.si User-Agent: Roundcube Webmail/1.2.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 00:11:40 -0000 Thanks to all who responded, makes perfect sense now. Paul Mather wrote: > The only thing you need on the host is to have the linux kernel module > loaded. > (You don't need to have any Linux packages installed there.) The > default setting > in /usr/local/etc/poudriere.conf is to have NOLINUX=yes commented out, > i.e., > Linux support in Poudriere is enabled unless you explicitly disable it. > The easiest way to load the linux kernel module on the host for use > with > Poudriere is to add it to the "kld_list" setting in /etc/rc.conf, e.g., > kld_list="linux" I do have NOLINUX=yes commented out, as is a default. 2017-01-14 22:45 Timon wrote: > No, it doesn't require linuxulator to be configured, but require > linux.ko (and linux64.ko if your host is amd64) to be loaded. > Poudriere load linux.ko, but doesn't load linux64. Try this patch: > > --- /usr/local/share/poudriere/common.sh.orig > +++ /usr/local/share/poudriere/common.sh > @@ -1686,6 +1686,9 @@ jail_start() { > if [ "${arch}" = "i386" -o "${arch}" = "amd64" ]; then > needfs="${needfs} linprocfs" > sysctl -n compat.linux.osrelease >/dev/null > 2>&1 || kldload linux > + if [ "${arch}" = "amd64" ]; then > + kldload linux64 > + fi > fi > fi > [ -n "${USE_TMPFS}" ] && needfs="${needfs} tmpfs" Great, that seems to do the trick! (actually, I just loaded the linux64 kmodule, did not try to apply the patch). Thanks! Looks like the poudriere/common.sh needs this patch. Mark From owner-freebsd-ports@freebsd.org Sun Jan 15 00:41:58 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FA82CA42AA for ; Sun, 15 Jan 2017 00:41:58 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-wm0-x241.google.com (mail-wm0-x241.google.com [IPv6:2a00:1450:400c:c09::241]) (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 A5576109D for ; Sun, 15 Jan 2017 00:41:57 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: by mail-wm0-x241.google.com with SMTP id r144so21368012wme.0 for ; Sat, 14 Jan 2017 16:41:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=QB5YaWA+wKhUeRfscF+m+wnIYRKwz+bETdT5nxF997M=; b=tfHkz3rZCpdXBD4Q8Dbu3TaYrLD6DKMbyCRmiAQA81XMoKhCT08t5u4J/X54/m2twv 1dbezmt8AadwncXxgoV57wy8P/6HmdplM2iF1XyyuUSOir4Y84RewB/FnEhvuUjdm0/K 08O/LhHc0oIX95vU/zStpPppQRUfCabJyXXbdhAE+u4Svp/qZ1DLp1Xkblgtff8zec99 a4WBeZQ+78GvDYOmVEIRBXZd65GtaJZSVG4VAPaapQM5VXs0AFWEolF5lQkIoiXnkXsJ cUVz5/9S62gjMv4OOyX5YMOkqinURFSdVQg4mrcQEyQQy3QQnKtEo9jsvs0xxuTwUd3Q P45w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=QB5YaWA+wKhUeRfscF+m+wnIYRKwz+bETdT5nxF997M=; b=e6USU3z5jU8XeMBpydCObx10eROzYoiW2xW53GWc682ppuL8diF5ACPD90JImnASQK dEcEWYorzXFXfYrEs8vSy9cOoRh36SSLOlibi3V198LNKlyMuVKtR0E5/vQsIGt2VFrc O0PgWcr3er9T9mWTfC1eDZ/XEarWWk0Ofu+tRPLMKT3un5ejuBSkB+gMpF4dnGuvIwZq dAE6Gblt1Z6lSrV/oheh1EXPh1Ftq0yBYBjnFJ/CUQlB1LeGLOMbM6wqsEJA/GiIrC8b gDyc4RoEEmuE636AfI1G0OjA0HdSNnybmkD2+YDAA1eku0hN+tP1DIq6zp2F1rTyAnFD bt4g== X-Gm-Message-State: AIkVDXI3Ejg+sJeUaP8EV0CKPPIJgWmut/uYt2cEtXG9gFp9VKMiFDUCFzE/Y0fGTWbTHMHvJ6U1MtdO48kTbQ== X-Received: by 10.28.41.70 with SMTP id p67mr6918450wmp.4.1484440916115; Sat, 14 Jan 2017 16:41:56 -0800 (PST) MIME-Version: 1.0 Sender: kob6558@gmail.com Received: by 10.28.41.194 with HTTP; Sat, 14 Jan 2017 16:41:55 -0800 (PST) In-Reply-To: <20170114214309.M61167@i805.com.br> References: <20170114175745.M33648@i805.com.br> <20170114214309.M61167@i805.com.br> From: Kevin Oberman Date: Sat, 14 Jan 2017 16:41:55 -0800 X-Google-Sender-Auth: bVpmjr0m30ZwwPPcTTXWHfD7UKk Message-ID: Subject: Re: inkscape broken on 12-current amd64 To: Nilton Jose Rizzo Cc: =?UTF-8?Q?Fernando_Herrero_Carr=C3=B3n?= , FreeBSD Mailing List Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 00:41:58 -0000 On Sat, Jan 14, 2017 at 1:43 PM, Nilton Jose Rizzo wrote: > Em Sat, 14 Jan 2017 19:29:18 +0100, Fernando Herrero Carr=C3=B3n escreveu > > 2017-01-14 19:00 GMT+01:00 Nilton Jose Rizzo : > > > > > > > > My Box: > > > > > > root@valfenda:/usr/ports/graphics/inkscape # uname -a > > > FreeBSD valfenda 12.0-CURRENT FreeBSD 12.0-CURRENT #0 r312006: Fri Ja= n > 13 > > > 01:24:31 BRST 2017 root@valfenda:/usr/obj/usr/src/sys/VALFENDA > amd64 > > > root@valfenda:/usr/ports/graphics/inkscape # svnlite info /usr/ports > > > Path: /usr/ports > > > Working Copy Root Path: /usr/ports > > > URL: svn://svn.freebsd.org/ports/head > > > Relative URL: ^/head > > > Repository Root: svn://svn.freebsd.org/ports > > > Repository UUID: 35697150-7ecd-e111-bb59-0022644237b5 > > > Revision: 431401 > > > Node Kind: directory > > > Schedule: normal > > > Last Changed Author: feld > > > Last Changed Rev: 431401 > > > Last Changed Date: 2017-01-13 14:49:59 -0200 (Fri, 13 Jan 2017) > > > > > > > > > On my box, the Inkscape was broken with this error: > > > > > > > > > /usr/bin/ld/usr/bin/ld:: ccaannotnnot find -lomp > > > find -lomp > > > > > > > Hi, > > > > This has been discussed recently for 11 as well: > > https://lists.freebsd.org/pipermail/freebsd-ports/2016- > December/106313.html > > > > I haven't looked at the issue myself yet, but you might find Kevin's > > link helpful. > > > > Cheers, > > Fernando > > > > Hi Fernando, Thankx for your help! > > But itr's to serious. How do i run a ImageMagic without > OpenMP to parallel programming? > > You need to get libomp.so installed. It's part of LLVM, but does not seem to be installed in the base system LLVM build. It should be installed by installing any devel/llvm37 or newer, though. -- Kevin Oberman, Part time kid herder and retired Network Engineer E-mail: rkoberman@gmail.com PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683 From owner-freebsd-ports@freebsd.org Sun Jan 15 07:56:51 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5912CCB048B for ; Sun, 15 Jan 2017 07:56:51 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 45DB213A4 for ; Sun, 15 Jan 2017 07:56:51 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4514CCB0487; Sun, 15 Jan 2017 07:56:51 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 430E3CB0484 for ; Sun, 15 Jan 2017 07:56:51 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.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 3660513A3 for ; Sun, 15 Jan 2017 07:56:51 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org ([127.0.1.123]) by portscout.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v0F7upSa057596 for ; Sun, 15 Jan 2017 07:56:51 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v0F7up2t057595; Sun, 15 Jan 2017 07:56:51 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201701150756.v0F7up2t057595@portscout.ysv.freebsd.org> X-Authentication-Warning: portscout.ysv.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Sun, 15 Jan 2017 07:56:51 +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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 07:56:51 -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 ------------------------------------------------+-----------------+------------ databases/py-apsw | 3.14.1 | 3.16.2-r1 ------------------------------------------------+-----------------+------------ sysutils/tty-clock | 2.0.0 | v2.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 Sun Jan 15 08:06:24 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDAE5CB0BB6 for ; Sun, 15 Jan 2017 08:06:24 +0000 (UTC) (envelope-from kremels@kreme.com) Received: from mail.covisp.net (mail.covisp.net [65.121.55.42]) (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 B7FCA1B82 for ; Sun, 15 Jan 2017 08:06:24 +0000 (UTC) (envelope-from kremels@kreme.com) Received: from mail.covisp.net (localhost [127.0.0.1]) by mail.covisp.net (Postfix) with ESMTP id 3v1TTP0lDmzFv2c; Sun, 15 Jan 2017 01:06:17 -0700 (MST) X-Virus-Scanned: amavisd-new at covisp.net Received: from mail.covisp.net ([127.0.0.1]) by mail.covisp.net (mail.covisp.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id M7bgK-DfltC5; Sun, 15 Jan 2017 01:06:13 -0700 (MST) From: "@lbutlr" Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: PHP56 and php56-filter Date: Sun, 15 Jan 2017 01:06:11 -0700 References: To: freebsd-ports@freebsd.org In-Reply-To: Message-Id: <577E1F8C-7A17-4DCC-9B80-B0DCD5D1DA15@kreme.com> X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 08:06:24 -0000 Still haven't been able to fix this error. Any ideas? The only thing = that I've found is one suggestion to install the php7 version of filter. On 11 Jan 2017, at 20:10, @lbutlr wrote: > I am getting errors in php pages saying >=20 > Call to undefined function filter_var() >=20 > But php56-filter-5.6.29 is installed and filter is listed in php -m >=20 > I reinstalled all of php this morning, but still getting the same = error. ext-20-filter.ini exists in /usr/local/etc/php/ and filter.so = exists at /usr/local/lib/php/20131226/filter.so with a timestamp from = this morning (along with all the other .so files). There is also a file = "/usr/local/libexec/apache24/mod_filter.so=E2=80=9D with a slightly = earlier timestamp (probably from when I recompiled apache24 this am). >=20 > (FreeBSD 10.3-RELEASE) >=20 > Not sure what else to check, but a simple >=20 > filter_var('true', FILTER_VALIDATE_BOOLEAN); >=20 > in an otherwise empty .php file fails: >=20 > PHP Fatal error: Call to undefined function filter_var() in = /usr/local/www/root/filter.php on line 2 --=20 Apple broke AppleScripting signatures in Mail.app, so no random = signatures. From owner-freebsd-ports@freebsd.org Sun Jan 15 08:32:47 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F10ACB127E for ; Sun, 15 Jan 2017 08:32:47 +0000 (UTC) (envelope-from timp87@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id E4F701719 for ; Sun, 15 Jan 2017 08:32:46 +0000 (UTC) (envelope-from timp87@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id E44FDCB127D; Sun, 15 Jan 2017 08:32:46 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3F83CB127C for ; Sun, 15 Jan 2017 08:32:46 +0000 (UTC) (envelope-from timp87@gmail.com) Received: from mail-vk0-x22c.google.com (mail-vk0-x22c.google.com [IPv6:2607:f8b0:400c:c05::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 A07461718 for ; Sun, 15 Jan 2017 08:32:46 +0000 (UTC) (envelope-from timp87@gmail.com) Received: by mail-vk0-x22c.google.com with SMTP id r136so57717995vke.1 for ; Sun, 15 Jan 2017 00:32:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=V+8gl7xIm+lQbJwnH0QWRcyQy0CuS9QQlP0EDw8vRWw=; b=N8ydnYfhnu8M6tkXIqYY2oO7XieCxxmLFUsBWj8tcWmSVtnCQNHRSo3tFP6JQ8Zwfg 8jq48+KCru1aop6oAUr0n3B/fNAEqSU3A56+5UYSqBqPFXCQlxnSpsSq650X6Nx+eSJz Nr4LOuBMWKKVnPDT3dl5gOTm+wlbXyraGTqt57/nHEK/O2wPnY6WEA772vAQZttb+IKV /RwkpxTMM6qyCvYaeBoXQ2Z72MMg0uefJHc+AoYXm5SUVkoEjEcmrEum+40PzhOp/kqf X6saeoFxAzr8bgLcSLQcddDl5cX6WPTOokY8MoFw8+lmgYzCiivumO2y25cKLb1/KbSJ x1BQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=V+8gl7xIm+lQbJwnH0QWRcyQy0CuS9QQlP0EDw8vRWw=; b=G92+Bz0mzQ/huiYysmyfOCvlHHG66Cppnol8b6P5U7/0QAaNcTiEzl6HTyOE9ic3N+ MSGj8YPCZK+CgaK05LltOhIlzpSj5E4IgZM0Xo1G6AMVr8gCfjcrU8n9/Qb7azEq84D8 zzAP7U/NXa80iUTHsyoHGX6N8gZp/6gW4u/xFJkliOGosEigfuDlWS8amh0jAHMgoWGQ t/x/6/vAwtxinWCkaEImAzBQ8WgNHF9yxdyM0dp3qroN5fcVX5GJTnPY2RWIx2DVopXH cJ7ttO/hwNPEctzUjpBIyYRHKWscWRR76zqRkLy7CKbeXDY7GwEFt0biuZp7BjiNzais nSCg== X-Gm-Message-State: AIkVDXJ3eRSEPCf+OMOtZWvwqYOaYhOhwSc40gV1nwV/LNE0tmYvdS/Pv+xYB/gS/tlbXV7zLJd6vuKxX6DcpA== X-Received: by 10.31.0.67 with SMTP id 64mr13274362vka.167.1484469165712; Sun, 15 Jan 2017 00:32:45 -0800 (PST) MIME-Version: 1.0 Received: by 10.159.33.5 with HTTP; Sun, 15 Jan 2017 00:32:45 -0800 (PST) In-Reply-To: <1484429824.5679.8.camel@yandex.com> References: <1484429824.5679.8.camel@yandex.com> From: Pavel Timofeev Date: Sun, 15 Jan 2017 11:32:45 +0300 Message-ID: Subject: Re: ATI, libdrm, gnome To: Stari Karp Cc: FreeBSD Ports Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 08:32:47 -0000 2017-01-15 0:37 GMT+03:00 Stari Karp : > Hi! > > Today I update xf86-video-ati-7.8 and also libdrm 2.4.7,1. I am using > Synth on FreeBSD 11-RELEASE (amd64) and everything was okay except > thyat GNOME3 doesn't start anymore. It stopped o with black screen and > mouse curson. I did try Lumina desktop too with the same result but > Fluxbox works. > > For GNOME 3 I have xsession-errors which is attached. > I have also gnome-shell core dump and gnome-settings-daemon core dump. > > Thank you. > Hello, Just got the same behaviour after xorg drivers (mine is ati) update via pkg head GDM can't start showing black screen. Simple startx with twm works. I use FreeBSD-11.0 RELEASE amd64 From owner-freebsd-ports@freebsd.org Sun Jan 15 11:14:41 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F44DCAFBAC for ; Sun, 15 Jan 2017 11:14:41 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5BD3D1268 for ; Sun, 15 Jan 2017 11:14:41 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5B355CAFBAA; Sun, 15 Jan 2017 11:14:41 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5ABB9CAFBA9; Sun, 15 Jan 2017 11:14:41 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citapm.icyb.net.ua (citapm.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 1E06B125D; Sun, 15 Jan 2017 11:14:39 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citapm.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA26437; Sun, 15 Jan 2017 13:14:37 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1cSilh-000MFm-Eo; Sun, 15 Jan 2017 13:14:37 +0200 Subject: Re: ATI, libdrm, gnome To: Baptiste Daroussin , Stari Karp References: <1484429824.5679.8.camel@yandex.com> <20170114214500.373tbw4zwhj6sxns@ivaldir.etoilebsd.net> <1484433324.1531.2.camel@yandex.com> <20170114224243.sm7pigpe633ftijt@ivaldir.etoilebsd.net> Cc: FreeBSD Ports , freebsd-x11 From: Andriy Gapon Message-ID: <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> Date: Sun, 15 Jan 2017 13:13:41 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170114224243.sm7pigpe633ftijt@ivaldir.etoilebsd.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 11:14:41 -0000 On 15/01/2017 00:42, Baptiste Daroussin wrote: > If you know how to use svn and are actually using svn for the ports tree can you > try reverting the radeon upgrade (only that) (same with git :))? > I can confirm a similar kind of problem with KDE 4 after upgrading to the latest packages. I downgraded xf86-video-ati to the previous version that I had (7.5.0) and the problem is gone. More details. I see the KDM login screen, I can log in, I see the KDE splash screen and its gets updated with the startup progress. But in the end the splash stays on and I never see the actual desktop. I can verify with ps that all programs that should start are running and I do not see anything unusual in their state. So, it feels like the screen is just not being updated after a certain stage. -- Andriy Gapon From owner-freebsd-ports@freebsd.org Sun Jan 15 11:19:26 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B819DCAFD77 for ; Sun, 15 Jan 2017 11:19:26 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9DEFA13CD for ; Sun, 15 Jan 2017 11:19:26 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: by mailman.ysv.freebsd.org (Postfix) id 9D4BDCAFD76; Sun, 15 Jan 2017 11:19:26 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CF12CAFD75 for ; Sun, 15 Jan 2017 11:19:26 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: from forward1o.cmail.yandex.net (forward1o.cmail.yandex.net [IPv6:2a02:6b8:0:1a72::2a1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 56CBB13CC for ; Sun, 15 Jan 2017 11:19:26 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: from smtp3m.mail.yandex.net (smtp3m.mail.yandex.net [77.88.61.130]) by forward1o.cmail.yandex.net (Yandex) with ESMTP id 2030420C7A; Sun, 15 Jan 2017 14:19:23 +0300 (MSK) Received: from smtp3m.mail.yandex.net (localhost.localdomain [127.0.0.1]) by smtp3m.mail.yandex.net (Yandex) with ESMTP id 4BB62284096F; Sun, 15 Jan 2017 14:19:21 +0300 (MSK) Received: by smtp3m.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id c07uwiPUIr-JK7mOoKe; Sun, 15 Jan 2017 14:19:21 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.com; s=mail; t=1484479161; bh=yP7e3LbD7wh7lbXQ/KFpE0U4EtmeR3/z1WmsaBtHi6E=; h=Message-ID:Subject:From:To:Cc:Date:In-Reply-To:References; b=CBWQYoblxUCuSXpCtbMIhiykJ9KCZnE/8EMUXpT5RHDuJVbjyG8PXobVB53UpKlVL 6/J2JNFtjgRhUsZDcdXUzeP1Gc6XZz6+l4Bf8LXfZJ4p5dq7ZvMo/JaKzjuPIDJnBE yFYqHiAEvnFXN4udJMDNx7oO6xERnDHmujPMwgUs= Authentication-Results: smtp3m.mail.yandex.net; dkim=pass header.i=@yandex.com X-Yandex-Suid-Status: 1 0,1 0 Message-ID: <1484479158.27020.2.camel@yandex.com> Subject: Re: ATI, libdrm, gnome From: Stari Karp To: Pavel Timofeev Cc: FreeBSD Ports Date: Sun, 15 Jan 2017 06:19:18 -0500 In-Reply-To: References: <1484429824.5679.8.camel@yandex.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 11:19:26 -0000 On Sun, 2017-01-15 at 11:32 +0300, Pavel Timofeev wrote: > 2017-01-15 0:37 GMT+03:00 Stari Karp : > > > > Hi! > > > > Today I update xf86-video-ati-7.8 and also libdrm 2.4.7,1. I am > > using > > Synth on FreeBSD 11-RELEASE (amd64) and everything was okay except > > thyat GNOME3 doesn't start anymore. It stopped o with black screen > > and > > mouse curson. I did try Lumina desktop too with the same result but > > Fluxbox works. > > > > For GNOME 3 I have xsession-errors which is attached. > > I have also gnome-shell core dump and gnome-settings-daemon core > > dump. > > > > Thank you. > > > > Hello, > Just got the same behaviour after xorg drivers (mine is ati) update > via pkg head > GDM can't start showing black screen. Simple startx with twm works. > I use FreeBSD-11.0 RELEASE amd64 I am start GNOME3 and Lumina with startx - both black screen and with startx Fluxbox which works and all all applicatins (Evolution which I am using now, Firefox, GIMP, LibreOffice...). From owner-freebsd-ports@freebsd.org Sun Jan 15 11:26:47 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3007CB005A for ; Sun, 15 Jan 2017 11:26:47 +0000 (UTC) (envelope-from timon@timon.net.nz) Received: from flare.plasmahost.ru (static.155.109.4.46.clients.your-server.de [46.4.109.155]) (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 613BC1858 for ; Sun, 15 Jan 2017 11:26:46 +0000 (UTC) (envelope-from timon@timon.net.nz) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=timon.net.nz; s=dkim; h=Content-Transfer-Encoding:Content-Type:In-Reply-To: MIME-Version:Date:Message-ID:From:References:To:Subject:Sender:Reply-To:Cc: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=gfiHgpHbs7kDwufqbFtPktK8171k4Z0Dv2FgEWuQvhg=; b=RWa54leGHJ7E9iOYPfRQTwEXZu ykrocJG0jDgucUhS8VWy9BSza6hF0U/H4H/LlKY5ogoivfHCCDu8JBS+Vdt704U2TL87fXl7SBSwz knyHfRUlaTkXv8DU4QQlp11VSTuA/q6oMPYQGvyRIA5nHq+ukDCEl9cIUkgfYGcnhjgI=; Received: from [193.41.76.135] (helo=tim.timon.net.nz) by flare.plasmahost.ru with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.88 (FreeBSD)) (envelope-from ) id 1cSiwC-0009Ww-QS for freebsd-ports@freebsd.org; Sun, 15 Jan 2017 11:25:28 +0000 Subject: Re: PHP56 and php56-filter To: freebsd-ports@freebsd.org References: From: Aleksandr Matveev Message-ID: <369ed632-3c17-a6d7-bf51-ff4513d1776e@timon.net.nz> Date: Sun, 15 Jan 2017 14:25:27 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 11:26:47 -0000 On 12/01/2017 06:10, @lbutlr wrote: > I am getting errors in php pages saying > > Call to undefined function filter_var() > > But php56-filter-5.6.29 is installed and filter is listed in php -m > > I reinstalled all of php this morning, but still getting the same error. ext-20-filter.ini exists in /usr/local/etc/php/ and filter.so exists at /usr/local/lib/php/20131226/filter.so with a timestamp from this morning (along with all the other .so files). There is also a file "/usr/local/libexec/apache24/mod_filter.so” with a slightly earlier timestamp (probably from when I recompiled apache24 this am). > > (FreeBSD 10.3-RELEASE) > > Not sure what else to check, but a simple > > filter_var('true', FILTER_VALIDATE_BOOLEAN); > > in an otherwise empty .php file fails: > > PHP Fatal error: Call to undefined function filter_var() in /usr/local/www/root/filter.php on line 2 > I don't see any errors on my 10.3 system: $ uname -pro FreeBSD 10.3-RELEASE-p7 amd64 $ cat test.php $ php test.php $ Try to create phpinfo.php: $ cat phpinfo.php Open it in your web-browser and check for "filter" section presence. -- Aleksandr Matveev From owner-freebsd-ports@freebsd.org Sun Jan 15 11:27:13 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B629DCB00D2 for ; Sun, 15 Jan 2017 11:27:13 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8D5851987 for ; Sun, 15 Jan 2017 11:27:13 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 8CBD3CB00D0; Sun, 15 Jan 2017 11:27:13 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C479CB00CF; Sun, 15 Jan 2017 11:27:13 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-lf0-x242.google.com (mail-lf0-x242.google.com [IPv6:2a00:1450:4010:c07::242]) (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 28987197B; Sun, 15 Jan 2017 11:27:13 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-lf0-x242.google.com with SMTP id h65so9705277lfi.3; Sun, 15 Jan 2017 03:27:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=fLslDVPKjeww32Vx8p+hPv7ZwYhI/HK4pYAk5usr1B0=; b=G2sXxTdQbTiO45E1n1FmfAlGegYzaV3DJYf7pTgwfpR34Tt/p5IzapiwtpADW164st x1izwCs+6gsruEUvXehmalqCqcZm7xHAQHWX5QWSP/eC9Lp4/PoaIrv4W0OtyUFR4UoB r3UQAFJjpQUCwUGdR8BiUZzpKCZZiq8Tbf4Mc2m+Lh9nOejZyh/Kmbel2amksM37fdW8 UMAmIVj0brFpCFmAMJDv6d377VeCHMc2VPLms5HkXIpmKySGmxy9LYtP1JxMbdeLioJs 2t/JqBsL5mqz8Y7b5uxXcxaeVVq0/BDD+AoxiTc5NG6GOrEFsXcyKlMLdJVhL6wuGXui ONjg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=fLslDVPKjeww32Vx8p+hPv7ZwYhI/HK4pYAk5usr1B0=; b=l7/lvHjOb1DQfGywdXyJYHvgKf5k3FvabcevwGxPeCpFku7VOczALX/WOYj2LAMuAZ ZgCWYVhLDVbp4nyLHgKrKFThVfd9/olr/yq+Q8UHjeEdFCSikbaDSapCRnIIxB8YO54i AVRchuepbpMp+1t5gudlJwSfoQx+Dg6W+InJ+7H+qzJHzO6dzg+fMQBuPT6zvXKsWy53 uuuo77JQXUfnS8DCqv6YO0JA6Af/Jv1nckWSlgHiaTLJ/Ce5CV9te5loIeHulR7qbsMg qtzs/GhoSm7xeXBwArfNrFil8mPkcwYHlVgGlJBN1AHuaSZ+bcW0LXzfibjiYPIL6CIJ 2f8A== X-Gm-Message-State: AIkVDXKtQEDI4c2qdaT98mjtZlizC0Jj5a8cPfRc75bywZu+2Q2uF+HmqWkJOh3muFjLaA== X-Received: by 10.25.151.20 with SMTP id z20mr10520437lfd.92.1484479630759; Sun, 15 Jan 2017 03:27:10 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id s64sm5827854lfs.38.2017.01.15.03.27.09 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 15 Jan 2017 03:27:09 -0800 (PST) Sender: Baptiste Daroussin Date: Sun, 15 Jan 2017 12:27:08 +0100 From: Baptiste Daroussin To: Andriy Gapon Cc: Stari Karp , FreeBSD Ports , freebsd-x11 Subject: Re: ATI, libdrm, gnome Message-ID: <20170115112708.n2dd5pckxklx6git@ivaldir.etoilebsd.net> References: <1484429824.5679.8.camel@yandex.com> <20170114214500.373tbw4zwhj6sxns@ivaldir.etoilebsd.net> <1484433324.1531.2.camel@yandex.com> <20170114224243.sm7pigpe633ftijt@ivaldir.etoilebsd.net> <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="famqxzwwbel5gqca" Content-Disposition: inline In-Reply-To: <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> User-Agent: NeoMutt/20161126 (1.7.1) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 11:27:13 -0000 --famqxzwwbel5gqca Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 15, 2017 at 01:13:41PM +0200, Andriy Gapon wrote: > On 15/01/2017 00:42, Baptiste Daroussin wrote: > > If you know how to use svn and are actually using svn for the ports tre= e can you > > try reverting the radeon upgrade (only that) (same with git :))? > >=20 >=20 > I can confirm a similar kind of problem with KDE 4 after upgrading to the= latest > packages. I downgraded xf86-video-ati to the previous version that I had > (7.5.0) and the problem is gone. >=20 > More details. I see the KDM login screen, I can log in, I see the KDE sp= lash > screen and its gets updated with the startup progress. But in the end the > splash stays on and I never see the actual desktop. I can verify with ps= that > all programs that should start are running and I do not see anything unus= ual in > their state. So, it feels like the screen is just not being updated afte= r a > certain stage. >=20 I have backed out the upgrade Best regards, bapt --famqxzwwbel5gqca Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAlh7XIkACgkQY4mL3PG3 PlotTRAA37KTalqTgrLy5eWaHsBlssfmprxaoXSQ8I6IdbcgOmS2h9MzA4K4uUif bcOEUojoPFeVMYmDbQC952O2e98Lk4dCV7icXyxGuNnD/E92Pw0JHGdURsM1DaLU UzwUVRyo4ah7PFW50mKhlXmTuOIcyjYNlkOyJMRYNoLEIBdqEJMVn0vizgadm+OV 0g3hwe+8AMfqq1n2RmNEZLhGzjXCtx39nSvoxvelt/EyAM64kyoxWtfQoBJ5VGj2 DLoGLUr7q51O6AsyZgY4U+tWAHfM1UcKvIiZ3l8iVy2RBBZqjZ9cK4TCN07jE1F5 jOAeVA5oT/+cUYHLUXOXcmKwIqczRyeBne5GXBi2zbit4QwH7R26uXL7A8jbhh63 X4EQmULMkl/Jc9Hk7162fAdpGlsuAOfGtz5UQ42E/1LE1Ewdt28nogpYPiWb9N4V ukSfIYasdueaO/eTvwc9e1jGd6+tEyTzC/P//bv1NWEWBHMN8sTe1LXzy2qyQckZ VFuLGufNqGfLiVw4tFKUYXQ580HooM+JHemTRdAQG/QFoB3D2bDeyi5cDeHFdxyM jhLzYpO4tcvjwxUYE0EYU74bRU6y7qu14KhySgOYDv4k2JrCCKFISCepccv7R7nk zPBnzT38nHXWQezg+pTDUFk8mgFknXWFUsxlQ4HeoA+e3RVQ1IU= =jxRh -----END PGP SIGNATURE----- --famqxzwwbel5gqca-- From owner-freebsd-ports@freebsd.org Sun Jan 15 13:04:29 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B458CB101A for ; Sun, 15 Jan 2017 13:04:29 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 1F63A1392 for ; Sun, 15 Jan 2017 13:04:29 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: by mailman.ysv.freebsd.org (Postfix) id 1BE23CB1018; Sun, 15 Jan 2017 13:04:29 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B56BCB1017; Sun, 15 Jan 2017 13:04:29 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: from forward2j.cmail.yandex.net (forward2j.cmail.yandex.net [5.255.227.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C9C681391; Sun, 15 Jan 2017 13:04:28 +0000 (UTC) (envelope-from starikarp@yandex.com) Received: from smtp3p.mail.yandex.net (smtp3p.mail.yandex.net [77.88.29.86]) by forward2j.cmail.yandex.net (Yandex) with ESMTP id 7B25220D98; Sun, 15 Jan 2017 16:04:19 +0300 (MSK) Received: from smtp3p.mail.yandex.net (localhost.localdomain [127.0.0.1]) by smtp3p.mail.yandex.net (Yandex) with ESMTP id EE75113200E0; Sun, 15 Jan 2017 16:04:17 +0300 (MSK) Received: by smtp3p.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id gDnGnH1eyp-4FraQAR3; Sun, 15 Jan 2017 16:04:16 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.com; s=mail; t=1484485456; bh=qqmEG0oPG9ki2Pm9gtlLRIpYnbd5qn56s1iuRh89vMs=; h=Message-ID:Subject:From:To:Cc:Date:In-Reply-To:References; b=wq1HBH7fZDlWkoIGeuOep1qIgVM5hAXdJOkROKVBUtOGfwSsJvTKvvojV9i5Q5O/y RglzXBopXeft2FhI8teBK1NqPecfX8IsMTUDereMm7kZkgWIBr9kXszxsn36SHvdCr lspfTHjcLWlQz8JotEhxx5E8QQ0xSd9BccU3/moc= Authentication-Results: smtp3p.mail.yandex.net; dkim=pass header.i=@yandex.com X-Yandex-Suid-Status: 1 0,1 0,1 0,1 0 Message-ID: <1484485453.5341.0.camel@yandex.com> Subject: Re: ATI, libdrm, gnome From: Stari Karp To: Baptiste Daroussin , Andriy Gapon Cc: FreeBSD Ports , freebsd-x11 Date: Sun, 15 Jan 2017 08:04:13 -0500 In-Reply-To: <20170115112708.n2dd5pckxklx6git@ivaldir.etoilebsd.net> References: <1484429824.5679.8.camel@yandex.com> <20170114214500.373tbw4zwhj6sxns@ivaldir.etoilebsd.net> <1484433324.1531.2.camel@yandex.com> <20170114224243.sm7pigpe633ftijt@ivaldir.etoilebsd.net> <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> <20170115112708.n2dd5pckxklx6git@ivaldir.etoilebsd.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 13:04:29 -0000 On Sun, 2017-01-15 at 12:27 +0100, Baptiste Daroussin wrote: > On Sun, Jan 15, 2017 at 01:13:41PM +0200, Andriy Gapon wrote: > > > > On 15/01/2017 00:42, Baptiste Daroussin wrote: > > > > > > If you know how to use svn and are actually using svn for the > > > ports tree can you > > > try reverting the radeon upgrade (only that) (same with git :))? > > > > > I can confirm a similar kind of problem with KDE 4 after upgrading > > to the latest > > packages.  I downgraded xf86-video-ati to the previous version that > > I had > > (7.5.0) and the problem is gone. > > > > More details.  I see the KDM login screen, I can log in, I see the > > KDE splash > > screen and its gets updated with the startup progress.  But in the > > end the > > splash stays on and I never see the actual desktop.  I can verify > > with ps that > > all programs that should start are running and I do not see > > anything unusual in > > their state.  So, it feels like the screen is just not being > > updated after a > > certain stage. > > > I have backed out the upgrade > > Best regards, > bapt Thank you very much. From owner-freebsd-ports@freebsd.org Sun Jan 15 13:40:13 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9F34CB1C3E for ; Sun, 15 Jan 2017 13:40:13 +0000 (UTC) (envelope-from dbaio@bsd.com.br) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id A52A318D1 for ; Sun, 15 Jan 2017 13:40:13 +0000 (UTC) (envelope-from dbaio@bsd.com.br) Received: by mailman.ysv.freebsd.org (Postfix) id A11BACB1C3B; Sun, 15 Jan 2017 13:40:13 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0C0DCB1C3A for ; Sun, 15 Jan 2017 13:40:13 +0000 (UTC) (envelope-from dbaio@bsd.com.br) Received: from mail-qt0-x241.google.com (mail-qt0-x241.google.com [IPv6:2607:f8b0:400d:c0d::241]) (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 61DF918CF for ; Sun, 15 Jan 2017 13:40:13 +0000 (UTC) (envelope-from dbaio@bsd.com.br) Received: by mail-qt0-x241.google.com with SMTP id f4so11532649qte.2 for ; Sun, 15 Jan 2017 05:40:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsd.com.br; s=capeta; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=rr32HGa0LgqOwnWflx4PXCbLHANlb49/WPhKdiiadjA=; b=JjC5kUgKOGRI3mSptKuimKdd47j6upiRFMEd/OjmaZTEGtfbuMNin45LHTaLDKnFq+ ukEIpHG0hwYf+5lSKJF2cvPN+1G0NLSLlQYEmXFb9lwWRat16DNsJIgoAlmcAqVtjsEH HUmiFGC2QYrpMhBYMz27jbvCcJUf4pULdT04s= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=rr32HGa0LgqOwnWflx4PXCbLHANlb49/WPhKdiiadjA=; b=RDoUpToVwd356wEd6RNzCCsViq9Hari8bRMXtpgRBlNacFljGnc2E29TqE+kfBXb6e xxZuzvJZChkIYsd3kAsrloblPFHyydAOzw6gzk6opIColA2/ynGKa1pE2upt3V3QZfGu B+07HRIjvMzZ4e+InIJtuOO1Z70Uir40l44IQhGDeugR5uOINHc1OVcK/VQ8lwYUuG/n wlmQSSZTKkDT2x/f9Dc9iz/0Bj3dwsCKnGQsxwYe2Alk07EaK5wDXGc04CraHbiBI35W uPh+tsYoVNwVCB/w6wm3vydrXIETC4ZO7lrXYUHgotg7AdQKAm+hMSUPqupoKYfua4Sj r21w== X-Gm-Message-State: AIkVDXIMPnDyp8kTdvP4QZm4CHTqEIOIuUmMQSzCRV9L9Sx/1G1gGysn9IU97fntgY2y5A== X-Received: by 10.200.43.201 with SMTP id n9mr15620951qtn.243.1484487612424; Sun, 15 Jan 2017 05:40:12 -0800 (PST) Received: from nucdbaio.localdomain ([2804:d55:cb0:8200:eea8:6bff:fefe:a9f7]) by smtp.gmail.com with ESMTPSA id p47sm13820596qtc.25.2017.01.15.05.40.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 15 Jan 2017 05:40:11 -0800 (PST) Date: Sun, 15 Jan 2017 11:40:08 -0200 From: "Danilo G. Baio (dbaio)" To: Andriy Gapon Cc: Baptiste Daroussin , Stari Karp , FreeBSD Ports , freebsd-x11 Subject: Re: ATI, libdrm, gnome Message-ID: <20170115134008.a2rp6gfnpzzxivil@nucdbaio.localdomain> References: <1484429824.5679.8.camel@yandex.com> <20170114214500.373tbw4zwhj6sxns@ivaldir.etoilebsd.net> <1484433324.1531.2.camel@yandex.com> <20170114224243.sm7pigpe633ftijt@ivaldir.etoilebsd.net> <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="zm3kiuskwl3dblog" Content-Disposition: inline In-Reply-To: <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> User-Agent: NeoMutt/20161126 (1.7.1) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 13:40:13 -0000 --zm3kiuskwl3dblog Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 15, 2017 at 01:13:41PM +0200, Andriy Gapon wrote: > On 15/01/2017 00:42, Baptiste Daroussin wrote: > > If you know how to use svn and are actually using svn for the ports tre= e can you > > try reverting the radeon upgrade (only that) (same with git :))? > >=20 >=20 > I can confirm a similar kind of problem with KDE 4 after upgrading to the= latest > packages. I downgraded xf86-video-ati to the previous version that I had > (7.5.0) and the problem is gone. >=20 > More details. I see the KDM login screen, I can log in, Almost the same with SLIM, after login, shows up a black screen. > I see the KDE splash > screen and its gets updated with the startup progress. But in the end the > splash stays on and I never see the actual desktop. I can verify with ps= that > all programs that should start are running and I do not see anything unus= ual in > their state. So, it feels like the screen is just not being updated afte= r a > certain stage. >=20 > --=20 > Andriy Gapon I noticed that dbus is not being running after update. pkg: dbus upgraded: 1.8.20 -> 1.10.14 Starting dbus. Failed to start message bus: Could not get UID and GID for username "messag= ebus" Box with FreeBSD 11 amd64 and quarterly packages. Regards. -- Danilo G. Baio (dbaio) --zm3kiuskwl3dblog Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEAREIAB0WIQR4FYHqNVeuKIf3e1VdaoicxTE2IQUCWHt7tQAKCRBdaoicxTE2 IWPcAQCYE1VfnHRKVAbBYd0xxxPZ+6kkEJdF9Xk6Qonhsokk2QD/ZwBB6JFwz5yq SrJCRjYw7VbBUYtk6dusqHCoKXWe9kE= =UqgA -----END PGP SIGNATURE----- --zm3kiuskwl3dblog-- From owner-freebsd-ports@freebsd.org Sun Jan 15 16:03:19 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF9EDCB1C60 for ; Sun, 15 Jan 2017 16:03:19 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id CD9411979 for ; Sun, 15 Jan 2017 16:03:19 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C7D78CB1C5E; Sun, 15 Jan 2017 16:03:19 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C70EFCB1C59; Sun, 15 Jan 2017 16:03:19 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D9011976; Sun, 15 Jan 2017 16:03:19 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0FG3EYR021560 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sun, 15 Jan 2017 08:03:17 -0800 (PST) (envelope-from julian@freebsd.org) To: "ports@FreeBSD.org" , "current@freebsd.org" From: Julian Elischer Subject: recent change to vim defaults? Message-ID: Date: Mon, 16 Jan 2017 00:03:08 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 16:03:20 -0000 I noticed that suddenly vim is grabbing mouse movements, which makes life really hard. Was there a specific revision that brought in this change, and can it be removed? From owner-freebsd-ports@freebsd.org Sun Jan 15 16:05:48 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15A63CB1DBD for ; Sun, 15 Jan 2017 16:05:48 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 042481BB4 for ; Sun, 15 Jan 2017 16:05:48 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mailman.ysv.freebsd.org (Postfix) id 036D6CB1DBA; Sun, 15 Jan 2017 16:05:48 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02FA6CB1DB8; Sun, 15 Jan 2017 16:05:48 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7FF9F1BB1; Sun, 15 Jan 2017 16:05:46 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id 8396ae86 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Sun, 15 Jan 2017 09:05:45 -0700 (MST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: recent change to vim defaults? From: Adam Weinberger In-Reply-To: Date: Sun, 15 Jan 2017 09:05:43 -0700 Cc: "ports@FreeBSD.org" , "current@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <74B1D40E-3242-4002-94A6-4F28041B055D@adamw.org> References: To: Julian Elischer X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 16:05:48 -0000 > On 15 Jan, 2017, at 9:03, Julian Elischer wrote: >=20 > I noticed that suddenly vim is grabbing mouse movements, which makes = life really hard. >=20 > Was there a specific revision that brought in this change, and can it = be removed? Which patchlevel are you running? # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Sun Jan 15 16:23:06 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF4BDCAF2A1 for ; Sun, 15 Jan 2017 16:23:06 +0000 (UTC) (envelope-from kevans91@ksu.edu) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9BDA214CA for ; Sun, 15 Jan 2017 16:23:06 +0000 (UTC) (envelope-from kevans91@ksu.edu) Received: by mailman.ysv.freebsd.org (Postfix) id 986B7CAF29F; Sun, 15 Jan 2017 16:23:06 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 979EACAF29D; Sun, 15 Jan 2017 16:23:06 +0000 (UTC) (envelope-from kevans91@ksu.edu) Received: from NAM02-BL2-obe.outbound.protection.outlook.com (mail-bl2nam02on0049.outbound.protection.outlook.com [104.47.38.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 26B5814C8; Sun, 15 Jan 2017 16:23:05 +0000 (UTC) (envelope-from kevans91@ksu.edu) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ksu.edu; s=selector2; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=XZ2V8W0bsfCWP9Hh4LtCxvBp/V10CPiy4QC25FgQzcI=; b=iMEUiWkij27HgmV4UWMED/tHPE83PObJGSGQpXey44kEWTsvdjK5AYJMvjcZ0L1UamYi31mTE1RjwbGVpFipmefazzy4yqs6j2JG4vgATMim0my/SAsvr4kNpcTbK0rojB3G2riDsOxqtz0EEQwJYETOQhYCbnN7KjPkyZkvark= Authentication-Results: spf=none (sender IP is ) smtp.mailfrom=kevans91@ksu.edu; Received: from mail-wm0-f53.google.com (74.125.82.53) by DM2PR0501MB1327.namprd05.prod.outlook.com (10.160.130.156) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.860.6; Sun, 15 Jan 2017 16:23:03 +0000 Received: by mail-wm0-f53.google.com with SMTP id r144so141459209wme.1; Sun, 15 Jan 2017 08:23:03 -0800 (PST) X-Gm-Message-State: AIkVDXKf71U6TuqAbE+XC/9HmqUNCqLaxmH6pdPRsv8dAJUPCWKg4McR/U/xI0eIIuLHjuJQHAdMDRrSvYdfxg== X-Received: by 10.28.129.147 with SMTP id c141mr9990319wmd.12.1484497369097; Sun, 15 Jan 2017 08:22:49 -0800 (PST) MIME-Version: 1.0 Received: by 10.28.59.136 with HTTP; Sun, 15 Jan 2017 08:22:47 -0800 (PST) Received: by 10.28.59.136 with HTTP; Sun, 15 Jan 2017 08:22:47 -0800 (PST) In-Reply-To: References: From: Kyle Evans Date: Sun, 15 Jan 2017 10:22:47 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: recent change to vim defaults? To: Julian Elischer CC: , "current@freebsd.org" X-Originating-IP: [74.125.82.53] X-ClientProxiedBy: AM4PR03CA0002.eurprd03.prod.outlook.com (10.165.240.12) To DM2PR0501MB1327.namprd05.prod.outlook.com (10.160.130.156) X-MS-Office365-Filtering-Correlation-Id: 3e52df1f-4cfe-4948-e42d-08d43d62c7d7 X-Microsoft-Antispam: UriScan:; BCL:0; PCL:0; RULEID:(22001); SRVR:DM2PR0501MB1327; X-Microsoft-Exchange-Diagnostics: 1; DM2PR0501MB1327; 3:vfB4NYk/LrR4XMXtiD9yqnvov8aQo/B8KjHlZSVeEHBGjTUEwiG8DQKVwMARdGzcXdJnVxGCc+dFMnTFxc5T0IFIwY2HWI3UPwYGWBd7Lc0O3x/npMGpwls4LRhR/zR91a3DXCWMg4eVNt64qea77kVvpixLihQC+2Vdy63pdCU7279ginZeLfVFY+zuvxia/3cBwKiFxReWHwoE4KcJS3VZ7c6ROplqGGQHkGLeHhMo6M9ZqAHRmbTu+95sKRajYtVD2A8MbmJ5CCL3XCfZ5A==; 25:AhLhNu3GkxqVKrIqax1nLpaY7BOkjwn+GouvcNrkbWOdY4oLo/halaSaXvo9g2w1OjIplyqDjFE0L9tZeXfuuZ6r8r1ymaep5H0tN1Hb8MTtkJH+sJDnEr6NOp2bSFba9wG8z+wzs7vKc7xE10NMAKyh2JIY0mPgWKZH09t6wymCTkt3dqvXMTmWgWMNRaOC8YFtu2l2qeF4a+f9HkGP+NI+U/uEf8fcfMa9vZTHwrm4/HiCAWYHbhXnyLUpgxSREDbi4BHIFJY2n2nRHzsw+NW7gz9Pbw/1shUFcVh13BjpKUoTfkN/ChyyJihDrPaFBsIZeVYDVVSPIkt2WgtjtTdqaCSTKyVQHmP4+39rdmyKZrO5OzgfbFEsGW2LWwLp/epaTkE7CZXZwBXJltMzXThSj25KPwX6rVXhcEx6zXWFkma17skK2v2TOFc83YzqhFJr3iJs5xnRRv2XgFxN1w== X-Microsoft-Exchange-Diagnostics: 1; DM2PR0501MB1327; 31:gf/ZkVkRjGhDLoitmfQlvMeAKoiZ3qcJFu7Hu5CnDpQudAw93mMCFRy2WsJSg+/4v4nTpwWqckBiJSCvcyk7zTnxruvX5ZGj9rVy/4+Zz3moYcc//VLm8nmS93bAxl/tmszdXH8tuKcvyc+A2uJACFd0LkJlXKrfc9G0pFEYqB2FmKc0cM29Xwz9tDKTjHiSCY25Xt3V13hJIsdCnqDcD2mvw8soS9rfY67RQU/LN9jLqo8nLcdUJI/z3pseE3KVsl5AbgKtrl93N8ebC71UegU8htuMVMiOyrYJwrhiKS0=; 20:d5KrWMS3XQaBknScDh9FRqiCX3y3AgNjmb7WGMTIyC4hykHv1HYYVFkw8NKTokdaosCbodTrH200G+eui27YUt/1DbyjFrYvOgHOBx/xtp2H5naJqRLlqfKs8d+9atEV7TO1yOcxXUZUEMpWT3V29GcLeYRLo6TuJPJ5rBvndY/Yye/RS7UuioQ77/pSndSQBD5yD3umJjgWL38DyTE50Wl91LRbi2ENGGfxLReKLY52mHtSToBc0Td+5LySPRAlbT41oJzM4A6fGKqmqBBZcP7Pc/v1GiAvmplsmTBYmYFeKcZyhThoGCGND1XPD3o+iNX4NKaZ1smOSA0M6E2SfzwceAyDlZJvU9lbEaDth+j3HiMrBwDw7LYP2krJ+DAe9D9odd8lm8guWM+/9Tu41XNO8hkg5yaD9Xzxse7zTd1fgfrkcjSTbESXbEqXax1jIU76I2aQLtb67XbpujwXpMrMnD+Re3K7obDSinlNZvx9c8gMik4x2XANT+i8ljBN X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:(75325880899374); X-Exchange-Antispam-Report-CFA-Test: BCL:0; PCL:0; RULEID:(6040375)(601004)(2401047)(5005006)(8121501046)(3002001)(10201501046)(6041248)(20161123562025)(20161123555025)(20161123564025)(20161123560025)(6072148); SRVR:DM2PR0501MB1327; BCL:0; PCL:0; RULEID:; SRVR:DM2PR0501MB1327; X-Microsoft-Exchange-Diagnostics: 1; DM2PR0501MB1327; 4:U4MgrcRx3KZr5b4fjOKDuA2S7PasHygzuXShjOI1vQeoLH7XSn8V9blQ54YveW4z8vW8L7+LD5GNfazWtchKc+cLDo/D8U8vyuIgeWWN2OhRUN1tV59KDW12Emt+ehSkC8PJOtQLH6lD0yPJMK/WaPRmaaoKRpVlHAoHbv7T4CubYvg0yN31Z/EsX5dyDxmRONgvbwhjKsL+kHpm+NOS+AWbwuxCI29hP6ZgIChxPGELyeTMK2Bsej7iYPD+IH+tpg7XmEezNtwAN8x0Cx+NnCQfMIW1qZ1cjcKFqOlN9PEMfpqY+ldYBbRlyc/gGFLOk8TH78gD23+PkQpepE0mHRs/l4aiJ5bHvFb1shQV3L7kfneMurMuMIOEyJL96p/lt31thMOjydR4rL9Tp0jLFmrXQQqkhkaVRm8eeyBmpL727lX8OP73ZWY8zJZIOK39+EA+3V6pYtQyoIleaQMkqvSqm8uSxWKHGBciTCYK7WT1WynnNpWJqiBSEpkkRV5IpFdALqeBmVieIGzwWloWVlBFMn2V1Hy2kduhOfYzgKMJnySQrp9t8DmqtOdzek/5GkZZ7Ke7/eWcshuAXNAkYDTjDfqrhR3vbTYeZrXmCf+cN8e8grur/x/gjzKDAF2x X-Forefront-PRVS: 0188D66E61 X-Forefront-Antispam-Report: SFV:NSPM; SFS:(10009020)(4630300001)(7916002)(39450400003)(199003)(24454002)(189002)(110136003)(88552002)(229853002)(498394004)(122856001)(606005)(98316002)(81156014)(81166006)(8676002)(8576002)(84326002)(101416001)(236005)(50986999)(93516999)(27001)(6306002)(38730400001)(9686003)(97736004)(69596002)(54906002)(76176999)(450100001)(54356999)(189998001)(63696999)(68736007)(4326007)(55446002)(2906002)(512874002)(61726006)(75432002)(5660300001)(7736002)(305945005)(86362001)(7906003)(2950100002)(6916009)(6116002)(3846002)(61266001)(92566002)(106356001)(66066001)(42186005)(105586002)(55456009); DIR:OUT; SFP:1101; SCL:1; SRVR:DM2PR0501MB1327; H:mail-wm0-f53.google.com; FPR:; SPF:None; PTR:InfoNoRecords; A:1; MX:1; LANG:en; Received-SPF: None (protection.outlook.com: ksu.edu does not designate permitted sender hosts) X-Microsoft-Exchange-Diagnostics: =?us-ascii?Q?1; DM2PR0501MB1327; 23:z+XbWYl2zMaMzkCDw/c9f/KWiESe6DBYYXPLU0N?= =?us-ascii?Q?2pI7lUrTt1tspH4S2cR1esL0DM9gUPaY6Bjc/lKJvEfGU85f1KGO9ooUjJxm?= =?us-ascii?Q?02L8kETTGAz7uFN9nGQgMf4GFXTk33xovdRO/B5QDpzoCR9vfzdkLM9IPh2i?= =?us-ascii?Q?i7fynvsdndV24rWDs18JodOgyQXWcvozJbMgBCidII2AuCLYCQIupD3p/Ahf?= =?us-ascii?Q?94N6D8N33WEE0azI881KAt/sm7j1EF4gHVJ7hGIhykCzPu4SqCdPKU+2H1y2?= =?us-ascii?Q?KsLfdcMpU0YYKBEmERSQymMXjkzh1lD+Aet2cTu2gZJ3GC7GBH+3+cmpeghq?= =?us-ascii?Q?akBmmozDuRnu0kTMIKkHrs40zDGRbQFJpyPGbaO7lcgfzU41Ei57WHS3QkFG?= =?us-ascii?Q?awjIDmf5zEZEepMgQWZf6EdlOLydeSJz/0+zIn5lGAPaeeFiX+q7DuPr5HM7?= =?us-ascii?Q?F3o8Xbc4TJd9XxfcFNRWpS0BSe1IFZXDFRPCQweFs8ohHmrLnCkecrDLu1W1?= =?us-ascii?Q?7/cXNNzFSHSLv3sb/UAQH+UIwi9ZO1Sw+/kXOdg4r5JJd7jY/A7uEk7KjBKb?= =?us-ascii?Q?AOkjFfmEQjOdDEfThi1+pqsaVGTlHxzce13KrgEGE8hbn7j3ff2R135LOQDD?= =?us-ascii?Q?KCyma81YwGKNdRO0AYexTz8+OfRQSY+r+jYakqcb0QYTfbJByBOmixD5li8A?= =?us-ascii?Q?f6iC1G6zlzr608l6fGFjIJsJwoCGIdIw7uUpwn0qLp2iJcVOb/tEHi2q76md?= =?us-ascii?Q?pPmpoOrUa84O7HHvFWjcEBEQoZknQ5+UsiaJiOZBCRXt4ZvmxEb8dmS+4ovH?= =?us-ascii?Q?Gj/J4iSPlTykcNZKBvqK4mLP0BGyCGHdL0kfUa7fo6pcLNL+xF01tf/g86Oj?= =?us-ascii?Q?m7HsPBb/naDiJupHfgNAlYiSk4pYAaom9LuPLVfc59qinplVo0yeh80K9C9j?= =?us-ascii?Q?lCN0jd5r8GR3vyNM3N68kcX6gKziGR803NBXYiG9eSbrAd5qgfboP5vQvR/Q?= =?us-ascii?Q?5bhK5/PadmGz3w8Vib8ZZv81YST2VA8NNFAM4EN7xFFKqqrRFlCaIvH7Ub+5?= =?us-ascii?Q?TLByDbx2wfLYJFS62KADXRME/37WMqq0usm1wq2aQJDmKcjpnTFdsoSIlrac?= =?us-ascii?Q?zIahj+ZuoefKT0tBgSc35iKfvpFII2wWQejFtkC4qk02oh37hV7SPvL2SFgG?= =?us-ascii?Q?hp4Dfj8TEn5gkJR+u3oUY02ylgPZ1ZINr3RtpY8IRtxfmfcaUB4tjb3tuARb?= =?us-ascii?Q?Pm0Ms9Un2FadKGgP133kqC3rd2+nXME/wSSa1RwEZnU6GcNCFWPqxMIHknDX?= =?us-ascii?Q?LTc0tkCWFVVuf1UqBBACqXI5KrZ4zgUYOzBnrHQbfKXrT?= X-Microsoft-Exchange-Diagnostics: 1; DM2PR0501MB1327; 6:PTcNq3JklB6JWAinJKll1Gv6H9B1B6TjOvHvbIIsDUdj2XeBhim9tzKlk4oV3gpLXx02/7ue3jahv7wOFVrLnn38jXPzGPNsHZdrmd1rwr9Reds6P7xQvDqFCA6gVo5ZEj/ofsCKLCASVWsPdUFaVW0ixXoasNTi6iHRdENyZpVUfxNkCNEf1IJ1EfDoJK6IHWYVHqi68/UpvrHTIhM+UpslPBYgFt7PwjpKILAoAjb96FH25Ue7xe8fxEf1EnZM4lBpnGdXCWrPRu6Zp/9Vy47291YAzVp3upelS761UzYwY1Sq41dhQkyL6McfL9GmlACYI6vluz4XnwdwAFdMOux/vviMg1i9fR1V7QoV+0qkULdrEyKvfiAAVDpaklskB6jXst3xKgPEN5Zyfaqb21n7xd77jOn1nJbrwvCMryI=; 5:Aid1AeHeJkp3KBO4nqt7XCMIOOL5uoNu8LQ+nIaT2BvlUbb6OrvgwO8Y4jpIUMLeZWudjS8H3fGMnyeXuZ0qzHXtZlCNlH1ujNzc2npzEka+d+B6rpJ+UCNXbwcM9V7Y7gubGA08sw6YRc6lQza5Ow==; 24:e8EAd9AWZtaI2gG5bq05AtJUs0QHTZpLmv4C3gTjiiYczABj/9kRmD9BncoT1vQEjvvuW7KWZ73WeB/GxhxJpFDU5skvEW3bER/F3cNVv3w= SpamDiagnosticOutput: 1:99 SpamDiagnosticMetadata: NSPM X-Microsoft-Exchange-Diagnostics: 1; DM2PR0501MB1327; 7:7MnpFTU8ZRPIOn8e3RCYBVNxftHS/WtrYmw+A8s7lOqSaR2Tm/sLYGZQyKagvJHoTa15LqHl4rqtRCM0x/YLTYD65K01kPZ7fGqN3d4WMtlTyBXGbh2FW70XdAjTUTLt5ay0FVJkcR7Roe9A7Dopip4E+ewtGSq+Dyr4ltWmAGr1qLldgTj+fqkcCA1rC3qZlbqhUVgHusgxF1e+ntUpNYhlUmN9xN8WEnoCyitpmOZmflglPzSWp1yj5Qftto7RBM0vHri3wsPgWeVZvY2FCSuqlFNQUUJL9/LcsUX8IiLWj8l5pYZ5jB8zv9eybnrateZyGLO6f0PoZEL722s1b9oIOeSTKcJEoQg9nKurQcgNz/SE8eWl0tplWz7cz1NI6Gyr5FLDP3W9w8zEDbPwa93pfn7RIrROaG4pfxtxCS2nUt2yULKwc4jDMMCS1M08KwmzBj4JQsQKM5Kg50DbjA==; 20:ubyt0o5dkGq6vrETezQN1kD0hoq+K9/FdqGom85Kev5rbf13vcEDtY7+W63U5FmO2OpI8JFwQQzymEQ7SjKpqN+hw7abkZNag9WrycoqMgU/grL0oglLMJFPGHQ7ucq3hACFwXoiOi04AQBYEcAGplnEw7wu+59di2cQ1GOOHDs= X-OriginatorOrg: ksu.edu X-MS-Exchange-CrossTenant-OriginalArrivalTime: 15 Jan 2017 16:23:03.4956 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-Transport-CrossTenantHeadersStamped: DM2PR0501MB1327 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 16:23:06 -0000 On Jan 15, 2017 10:03, "Julian Elischer" wrote: I noticed that suddenly vim is grabbing mouse movements, which makes life really hard. Was there a specific revision that brought in this change, and can it be removed? _______________________________________________ freebsd-current@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" Hi, You might add "set mouse=v" to your vimrc -- it was a new default as of 8.0, IIRC. "set nohl" if the new highlighted of search matches irritates as well. Thanks, Kyle Evans From owner-freebsd-ports@freebsd.org Sun Jan 15 16:58:28 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BA33CAFFFD for ; Sun, 15 Jan 2017 16:58:28 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 26A371531 for ; Sun, 15 Jan 2017 16:58:28 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 25F63CAFFFA; Sun, 15 Jan 2017 16:58:28 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 257C3CAFFF9; Sun, 15 Jan 2017 16:58:28 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citapm.icyb.net.ua (citapm.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 7A632152F; Sun, 15 Jan 2017 16:58:26 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citapm.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id SAA26922; Sun, 15 Jan 2017 18:58:18 +0200 (EET) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1cSo8H-000MW5-TA; Sun, 15 Jan 2017 18:58:17 +0200 Subject: Re: ATI, libdrm, gnome To: "Danilo G. Baio (dbaio)" References: <1484429824.5679.8.camel@yandex.com> <20170114214500.373tbw4zwhj6sxns@ivaldir.etoilebsd.net> <1484433324.1531.2.camel@yandex.com> <20170114224243.sm7pigpe633ftijt@ivaldir.etoilebsd.net> <98f12ab2-850f-d5f4-1db4-ce742f62af60@FreeBSD.org> <20170115134008.a2rp6gfnpzzxivil@nucdbaio.localdomain> Cc: Baptiste Daroussin , Stari Karp , FreeBSD Ports , freebsd-x11 From: Andriy Gapon Message-ID: <3ac00fe6-deb0-9167-f5fc-5e15620409ac@FreeBSD.org> Date: Sun, 15 Jan 2017 18:57:21 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170115134008.a2rp6gfnpzzxivil@nucdbaio.localdomain> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 16:58:28 -0000 On 15/01/2017 15:40, Danilo G. Baio (dbaio) wrote: > On Sun, Jan 15, 2017 at 01:13:41PM +0200, Andriy Gapon wrote: >> On 15/01/2017 00:42, Baptiste Daroussin wrote: >>> If you know how to use svn and are actually using svn for the ports tree can you >>> try reverting the radeon upgrade (only that) (same with git :))? >>> >> >> I can confirm a similar kind of problem with KDE 4 after upgrading to the latest >> packages. I downgraded xf86-video-ati to the previous version that I had >> (7.5.0) and the problem is gone. >> >> More details. I see the KDM login screen, I can log in, > > Almost the same with SLIM, after login, shows up a black screen. > >> I see the KDE splash >> screen and its gets updated with the startup progress. But in the end the >> splash stays on and I never see the actual desktop. I can verify with ps that >> all programs that should start are running and I do not see anything unusual in >> their state. So, it feels like the screen is just not being updated after a >> certain stage. > > I noticed that dbus is not being running after update. > pkg: dbus upgraded: 1.8.20 -> 1.10.14 > > Starting dbus. > Failed to start message bus: Could not get UID and GID for username "messagebus" > > Box with FreeBSD 11 amd64 and quarterly packages. I don't have that problem... dbus-1.10.14_1 $ service dbus status dbus is running as pid 1588. -- Andriy Gapon From owner-freebsd-ports@freebsd.org Sun Jan 15 19:46:36 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A4CB4CB1A25 for ; Sun, 15 Jan 2017 19:46:36 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 82D6D1754 for ; Sun, 15 Jan 2017 19:46:36 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 7F763CB1A20; Sun, 15 Jan 2017 19:46:36 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EBBFCB1A1D; Sun, 15 Jan 2017 19:46:36 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pg0-x231.google.com (mail-pg0-x231.google.com [IPv6:2607:f8b0:400e:c05::231]) (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 571C11752; Sun, 15 Jan 2017 19:46:36 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mail-pg0-x231.google.com with SMTP id 194so9220905pgd.2; Sun, 15 Jan 2017 11:46:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=4QVIJgdQy8G/BGBPrRq88CAeX8yF1y/HgnxCjQHGBYA=; b=mO+mZ2uzkhWjAkFK38fhqpbt2mHibrRTbxxAD5fNPUfLV9oivbzfPAxOkaopfF58mC IvF75k/OFWNgFS4s0xOVf0wYVN2nizb59VrtnpMdoebE5eUa9GWrsucXcdWvJpmDdZyK kHDXKibX17F+iSwbuiUozSmR09TW1YhsG/yVUMXtfdV4IYKWQAADulTON4yR1pzGATY5 7wBtgSYuYE1hMy8qHWSko6qs3PQAUOGR143yw+hXQEsbXewDwSoXh+Ay7MY2r+jVtRcC O2/xb9Ho0dZq1004T0DBvRrQTBsK83c9R02eDJ6Zhro5VJTx2xXqKbP7ef2IdOSYKL1R pirQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=4QVIJgdQy8G/BGBPrRq88CAeX8yF1y/HgnxCjQHGBYA=; b=Qlg9QNXiNOu3ODk7V+RTargA1dgvqhlTHsAQvzBTTq3F5DMjM+clNRXtR9b/+ttNly T3xGgvPk85v12itXJIxOoQ5uXuAdoFbeYthnsr5Kcow8dTPQ9OFcIVzrjcRm+Ztq8ZlJ PJSR/mgMlJicH/NbJAtbCLCjHIdESHR2AU7emQmUGWBqsa/kWr29z1836BVsW4X36cg4 YjVKdK8s+aHy15Sml+HDmEsh5jAMt1t2X+lFvxJvHK8cmicBCw3De6/uR26kxaKvM5IQ Y9EmnbtqoMpV176KZ05WTpB2+9oy2YuYDJ4VvBiOslThvliytIhoUXaBRN3/EKd7vryP vvxg== X-Gm-Message-State: AIkVDXLypo+Apd2LIDcjDjixVDX1iS5OisfmueP9ezGJZGv5hCsGehwXKLtaxiXj8WVutA== X-Received: by 10.99.232.21 with SMTP id s21mr35865562pgh.19.1484509595744; Sun, 15 Jan 2017 11:46:35 -0800 (PST) Received: from [192.168.20.13] (c-73-19-52-228.hsd1.wa.comcast.net. [73.19.52.228]) by smtp.gmail.com with ESMTPSA id u124sm42323240pgb.6.2017.01.15.11.46.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 15 Jan 2017 11:46:35 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: recent change to vim defaults? From: Ngie Cooper X-Mailer: iPhone Mail (14C92) In-Reply-To: Date: Sun, 15 Jan 2017 11:46:34 -0800 Cc: "ports@FreeBSD.org" , "current@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Julian Elischer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 19:46:36 -0000 > On Jan 15, 2017, at 08:03, Julian Elischer wrote: >=20 > I noticed that suddenly vim is grabbing mouse movements, which makes life r= eally hard. >=20 > Was there a specific revision that brought in this change, and can it be r= emoved? "set mouse=3D" will disable the feature you're describing. -Ngie PS I find the new feature incredibly annoying and disable it on all FreeBSD c= lients where I install vim.= From owner-freebsd-ports@freebsd.org Sun Jan 15 20:38:29 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E945CB1ACF for ; Sun, 15 Jan 2017 20:38:29 +0000 (UTC) (envelope-from carsten.kunze@arcor.de) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 2337914AF for ; Sun, 15 Jan 2017 20:38:29 +0000 (UTC) (envelope-from carsten.kunze@arcor.de) Received: by mailman.ysv.freebsd.org (Postfix) id 1D904CB1ACD; Sun, 15 Jan 2017 20:38:29 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B0B2CB1ACB; Sun, 15 Jan 2017 20:38:29 +0000 (UTC) (envelope-from carsten.kunze@arcor.de) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.arcor.de", Issuer "Verizon Public SureServer CA G14-SHA2" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C156114AD; Sun, 15 Jan 2017 20:38:27 +0000 (UTC) (envelope-from carsten.kunze@arcor.de) Received: from mail-in-12-z2.arcor-online.net (mail-in-12-z2.arcor-online.net [151.189.8.29]) by mx.arcor.de (Postfix) with ESMTP id 3v1nPY39rrzwSTs; Sun, 15 Jan 2017 21:04:01 +0100 (CET) Received: from mail-in-17.arcor-online.net (mail-in-17.arcor-online.net [151.189.21.57]) by mail-in-12-z2.arcor-online.net (Postfix) with ESMTP id 6A50DCEB03; Sun, 15 Jan 2017 21:04:01 +0100 (CET) Received: from webmail17.arcor-online.net (webmail17.arcor-online.net [151.189.8.75]) by mail-in-17.arcor-online.net (Postfix) with ESMTP id 3v1nPY2hStzZvF; Sun, 15 Jan 2017 21:04:01 +0100 (CET) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-17.arcor-online.net 3v1nPY2hStzZvF DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arcor.de; s=mail-in; t=1484510641; bh=FxIUNYa/DaMmeZx1QLFoktuC9oMesJPhTdPVXuH/LlA=; h=Date:From:To:Message-ID:In-Reply-To:References:Subject: MIME-Version:Content-Type:Content-Transfer-Encoding; b=P2c9dFiqjHM8jHfWbVRCd8PzS/3zirJqzYmfWBmoqCU2nDZdaF5r66VINXCxXQ+E9 J3iNz5szshGCmwq8NN4LQFp93yaSvvuyBNi2Gp/sNF6olMCpAV57dGUGOk5NWRd7hI bnsjkDvBurjOvXueYWZPnf+auRKgNvGyJ15lu64o= Received: from [84.179.25.123] by webmail17.arcor-online.net (151.189.8.75) with HTTP (Arcor Webmail); Sun, 15 Jan 2017 21:03:59 +0100 (CET) Date: Sun, 15 Jan 2017 21:04:00 +0100 (CET) From: Carsten Kunze To: ports@freebsd.org, current@freebsd.org Message-ID: <1432939043.384531.1484510640488.JavaMail.ngmail@webmail17.arcor-online.net> In-Reply-To: References: Subject: Aw: recent change to vim defaults? MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-ngMessageSubType: MessageSubType_MAIL X-WebmailclientIP: 84.179.25.123 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 20:38:29 -0000 Julian Elischer wrote: > I noticed that suddenly vim is grabbing mouse movements, which makes > life really hard. > > Was there a specific revision that brought in this change, and can it > be removed? Of course this behavior can be disabled as suggested by others--or you give it a try. IMHO using the mouse in vim has many advantages. To temporarily disable the mouse you can press the SHIFT key. As long as SHIFT is pressed vim ignores the mouse. So you may use copy/paste with left and middle mouse buttons as before or you now use the mouse to position the cursor or select text--very useful IMHO (I actually have "set mouse=a" in .vimrc... ;) From owner-freebsd-ports@freebsd.org Sun Jan 15 21:48:28 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9DDBFCB159C for ; Sun, 15 Jan 2017 21:48:28 +0000 (UTC) (envelope-from kaduk@mit.edu) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 7EDD51781 for ; Sun, 15 Jan 2017 21:48:28 +0000 (UTC) (envelope-from kaduk@mit.edu) Received: by mailman.ysv.freebsd.org (Postfix) id 7AECACB1599; Sun, 15 Jan 2017 21:48:28 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A4E3CB1595; Sun, 15 Jan 2017 21:48:28 +0000 (UTC) (envelope-from kaduk@mit.edu) Received: from dmz-mailsec-scanner-4.mit.edu (dmz-mailsec-scanner-4.mit.edu [18.9.25.15]) (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 F1BC3177E; Sun, 15 Jan 2017 21:48:27 +0000 (UTC) (envelope-from kaduk@mit.edu) X-AuditID: 1209190f-dcbff70000001997-4e-587bee2749e2 Received: from mailhub-auth-2.mit.edu ( [18.7.62.36]) (using TLS with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by (Symantec Messaging Gateway) with SMTP id 3E.FE.06551.72EEB785; Sun, 15 Jan 2017 16:48:25 -0500 (EST) Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by mailhub-auth-2.mit.edu (8.13.8/8.9.2) with ESMTP id v0FLmNQ7021922; Sun, 15 Jan 2017 16:48:23 -0500 Received: from kduck.kaduk.org (24-107-191-124.dhcp.stls.mo.charter.com [24.107.191.124]) (authenticated bits=56) (User authenticated as kaduk@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.8/8.12.4) with ESMTP id v0FLmKMg026431 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 15 Jan 2017 16:48:22 -0500 Date: Sun, 15 Jan 2017 15:48:20 -0600 From: Benjamin Kaduk To: Julian Elischer Cc: "ports@FreeBSD.org" , "current@freebsd.org" Subject: Re: recent change to vim defaults? Message-ID: <20170115214819.GG8460@kduck.kaduk.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.1 (2016-04-27) X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrKIsWRmVeSWpSXmKPExsUixG6noqv5rjrC4OZ+c4sJV34wWVyd+5PZ YtvkVkYHZo8Zn+azBDBGcdmkpOZklqUW6dslcGW8u/eRtWA5a8WbKR9YGxhnsnQxcnJICJhI HJy9jLGLkYtDSKCNSeLb0QesIAkhgY2MEnffe0EkrjJJdJ5cAJZgEVCVaDjxBcxmE1CRaOi+ zAxiiwhoSFzfMQMsziyQKDHv8yMmEFtYQFtiyte7YDW8AsYSp3fdY+ti5AAaaiexYr0eRFhQ 4uTMJywQrVoSN/69ZAIpYRaQllj+jwMkzClgL9HfvxJsoqiAskTDjAfMExgFZiHpnoWkexZC 9wJG5lWMsim5Vbq5iZk5xanJusXJiXl5qUW6Jnq5mSV6qSmlmxhBIcopyb+DcU6D9yFGAQ5G JR7eH7uqI4RYE8uKK3MPMUpyMCmJ8h7TAQrxJeWnVGYkFmfEF5XmpBYfYpTgYFYS4eV4BZTj TUmsrEotyodJSXOwKInzVq2ojBASSE8sSc1OTS1ILYLJynBwKEnwBrwFahQsSk1PrUjLzClB SDNxcIIM5wEazgRSw1tckJhbnJkOkT/FqMtx6tOFl0xCLHn5ealS4ryr3gAVCYAUZZTmwc0B pRaJ7P01rxjFgd4S5rUEGcUDTEtwk14BLWECWnJdB2xJSSJCSqqBsSNAxNtNL05V8eKj+fsU 16XnlGgk3bRbce7eaS8nI626cOl6bsElEkYtHuxFOq93ntbVMmV3O/NEWTmVc+/hc3v2bV5U eOhB9bxkrk6xFxyNJ6fybJ30ZO1RT3Wn9ssLLrZzXmnL4d/CFWh4traxLjVV4MH/tJVvus4J FLxTUigRVeut/+KoxFKckWioxVxUnAgANVP0OggDAAA= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 21:48:28 -0000 On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: > I noticed that suddenly vim is grabbing mouse movements, which makes > life really hard. > > Was there a specific revision that brought in this change, and can it > be removed? I remember seeing something go by during an upgrade somewhat recently about there now being a defaults file that gets used when a user does not specify a .vimrc. Unfortunately, I don't remember whether I saw that notice on a FreeBSD machine or a Debian one, and haven't been able to find the notice I remember through searching some likely places. Just to check: do you have a .vimrc file in place already? -Ben From owner-freebsd-ports@freebsd.org Mon Jan 16 06:42:33 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70374CB2FD0 for ; Mon, 16 Jan 2017 06:42:33 +0000 (UTC) (envelope-from loic.blot@unix-experience.fr) Received: from smtp.unix-experience.fr (kingslanding.unix-experience.fr [62.4.22.5]) (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 321D812D2 for ; Mon, 16 Jan 2017 06:42:32 +0000 (UTC) (envelope-from loic.blot@unix-experience.fr) Received: from smtp.unix-experience.fr (unknown [192.168.200.21]) by smtp.unix-experience.fr (Postfix) with ESMTP id BE77A6B021 for ; Mon, 16 Jan 2017 07:35:27 +0100 (CET) X-Virus-Scanned: scanned by unix-experience.fr Received: from smtp.unix-experience.fr ([192.168.200.21]) by smtp.unix-experience.fr (smtp.unix-experience.fr [192.168.200.21]) (amavisd-new, port 10024) with ESMTP id cEXhqtRoU4mJ for ; Mon, 16 Jan 2017 07:35:26 +0100 (CET) Received: from [10.42.69.14] (LFbn-1-710-40.w86-246.abo.wanadoo.fr [86.246.185.40]) by smtp.unix-experience.fr (Postfix) with ESMTPSA id BB4386B018 for ; Mon, 16 Jan 2017 07:35:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=unix-experience.fr; s=uxselect; t=1484548525; bh=rNq9bX8Sv5DFRFJxkCL3VKW21I8gg/fBVI2HZSJXMHQ=; h=Subject:From:To:Date; b=iLsnM0l3AZkcl+/fyimE8Ob0gVdAtccFMM1F4hjBMlBO3ntOnlcw1ux01H0Pu9jGW Ci03Az8BAO2qiH7QLgme2n1C99xGBAOJKWhD/0FmXXRbFxuQCgPqwHMrkYQpHS8JaF TvHWSMj0gTydUINCH0HnJAZ1c4UbKzooLXWQkkuk= Message-ID: <1484548525.4613.0.camel@unix-experience.fr> Subject: call for a port committer From: =?ISO-8859-1?Q?Lo=EFc?= BLOT To: freebsd-ports Date: Mon, 16 Jan 2017 07:35:25 +0100 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.22.3 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 06:42:33 -0000 Hello, Searx was updated recently, i sent the diff on bugzilla : https://bugs. freebsd.org/bugzilla/show_bug.cgi?id=216007 can someone commit the update? Thanks -- Best regards, Loïc BLOT, UNIX systems, security and network engineer http://www.unix-experience.fr From owner-freebsd-ports@freebsd.org Mon Jan 16 07:01:53 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FC77CB1AE7 for ; Mon, 16 Jan 2017 07:01:53 +0000 (UTC) (envelope-from franco@lastsummer.de) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0E8E118F9 for ; Mon, 16 Jan 2017 07:01:53 +0000 (UTC) (envelope-from franco@lastsummer.de) Received: by mailman.ysv.freebsd.org (Postfix) id 0DD1ECB1AE6; Mon, 16 Jan 2017 07:01:53 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BCD4CB1AE5 for ; Mon, 16 Jan 2017 07:01:53 +0000 (UTC) (envelope-from franco@lastsummer.de) Received: from host64.shmhost.net (unknown [IPv6:2a01:4f8:a0:51d6::108: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 C2DE618F7 for ; Mon, 16 Jan 2017 07:01:52 +0000 (UTC) (envelope-from franco@lastsummer.de) Received: from francos-mbp.homeoffice.local (ipservice-092-217-062-255.092.217.pools.vodafone-ip.de [92.217.62.255]) by host64.shmhost.net (Postfix) with ESMTPSA id DADE682A77 for ; Mon, 16 Jan 2017 08:01:49 +0100 (CET) From: Franco Fichtner Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: pending PRs Message-Id: <50C570A4-561C-40D9-A073-0A590360E3CE@lastsummer.de> Date: Mon, 16 Jan 2017 08:01:49 +0100 To: FreeBSD Ports list X-Mailer: Apple Mail (2.3259) X-Virus-Scanned: clamav-milter 0.99.2 at host64.shmhost.net X-Virus-Status: Clean X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 07:01:53 -0000 Hi, Please have a look at either one of: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215313 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215900 Thanks, Franco From owner-freebsd-ports@freebsd.org Mon Jan 16 07:07:41 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F8FCCB1CEB for ; Mon, 16 Jan 2017 07:07:41 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D9881E78 for ; Mon, 16 Jan 2017 07:07:40 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0G77aYj024346 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Sun, 15 Jan 2017 23:07:39 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: Aw: recent change to vim defaults? To: freebsd-ports@freebsd.org References: <1432939043.384531.1484510640488.JavaMail.ngmail@webmail17.arcor-online.net> From: Julian Elischer Message-ID: Date: Mon, 16 Jan 2017 15:07:30 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <1432939043.384531.1484510640488.JavaMail.ngmail@webmail17.arcor-online.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 07:07:41 -0000 On 16/01/2017 4:04 AM, Carsten Kunze wrote: > Julian Elischer wrote: > >> I noticed that suddenly vim is grabbing mouse movements, which makes >> life really hard. >> >> Was there a specific revision that brought in this change, and can it >> be removed? > Of course this behavior can be disabled as suggested by others--or you give it a try. IMHO using the mouse in vim has many advantages. To temporarily disable the mouse you can press the SHIFT key. As long as SHIFT is pressed vim ignores the mouse. So you may use copy/paste with left and middle mouse buttons as before or you now use the mouse to position the cursor or select text--very useful IMHO (I actually have "set mouse=a" in .vimrc... ;) Since i use a mac I cut and paste using blob-c and blob-v. Unfortunatley shift-blob-xxx doesn't work and is interpretted as a different command by the mac. my sessions are [OSX]=>[iTerm]=>[ssh]=>[screen]=>[vim] so I'm quite surprised my mouse movements are getting as far as vim. but if I hold shift.. I can't cut and paste in the OSX layer any more. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@freebsd.org Mon Jan 16 09:24:38 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C383FCB2A69 for ; Mon, 16 Jan 2017 09:24:38 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A1C281DF2 for ; Mon, 16 Jan 2017 09:24:38 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0G9OUFF024935 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Mon, 16 Jan 2017 01:24:36 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: pending PRs [ports] -[lightsquid],[pftop] To: freebsd-ports@freebsd.org References: <50C570A4-561C-40D9-A073-0A590360E3CE@lastsummer.de> From: Julian Elischer Message-ID: <8a0eb08e-9004-0f5f-4898-df5d89440f78@freebsd.org> Date: Mon, 16 Jan 2017 17:24:25 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <50C570A4-561C-40D9-A073-0A590360E3CE@lastsummer.de> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 09:24:38 -0000 On 16/01/2017 3:01 PM, Franco Fichtner wrote: > Hi, > > Please have a look at either one of: > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215313 > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215900 you should say what the patches are abut so the right people know to look at them > > > Thanks, > Franco > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@freebsd.org Mon Jan 16 11:58:37 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61290CB2D3F for ; Mon, 16 Jan 2017 11:58:37 +0000 (UTC) (envelope-from kremels@kreme.com) Received: from mail.covisp.net (mail.covisp.net [65.121.55.42]) (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 49BA01599 for ; Mon, 16 Jan 2017 11:58:36 +0000 (UTC) (envelope-from kremels@kreme.com) Received: from mail.covisp.net (localhost [127.0.0.1]) by mail.covisp.net (Postfix) with ESMTP id 3v2BZt1hgwzFwNb; Mon, 16 Jan 2017 04:58:30 -0700 (MST) X-Virus-Scanned: amavisd-new at covisp.net Received: from mail.covisp.net ([127.0.0.1]) by mail.covisp.net (mail.covisp.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id A5aa5nlojQYy; Mon, 16 Jan 2017 04:58:20 -0700 (MST) From: "@lbutlr" Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: PHP56 and php56-filter Date: Mon, 16 Jan 2017 04:58:19 -0700 References: <369ed632-3c17-a6d7-bf51-ff4513d1776e@timon.net.nz> To: freebsd-ports@freebsd.org In-Reply-To: <369ed632-3c17-a6d7-bf51-ff4513d1776e@timon.net.nz> Message-Id: <21F94FF9-1661-4541-91D7-0F6ED570625F@kreme.com> X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 11:58:37 -0000 On 2017-01-15 (04:25 MST), Aleksandr Matveev wrote: >=20 > Open it in your web-browser and check for "filter" section presence. I went ahead and installed php70 and then tried to compile mod_php which = generated the following error: checking for Apache 2.0 handler-module support via DSO through APXS... = configure: error: ZTS currently requires working POSIX threads. We were = unable to verify that your system supports Pthreads. I disabled Zend in both the PHP70 config and the mod_php70 config and = yet there was a large =E2=80=9CConfiguring Zend=E2=80=9D section when = making php70 along with an error right at starting compilation: configure: WARNING: unrecognized options: --with-regex, --with-zend-vm and php -m shows Zend OPCache. When trying to build mod_php70 I get the same configuration error at the = start: =3D=3D=3D> Configuring for mod_php70-7.0.14 configure: WARNING: unrecognized options: --with-regex, --with-zend-vm and then the above error. I=E2=80=99ve done a make clean in php70 and mod_php70 and = php70-extensions but it still seems to find an existing configuration. = I=E2=80=99ve manually done make config and made sure Zend is disabled=E2=80= =A6 no joy in Mudville. 10.3-RELEASE-p11 Everything is up-to-date as of yesterday. I can certainly remove php70 = and go back to php56. # php -m [PHP Modules] bz2 Core ctype curl date dom exif filter hash iconv json libxml mcrypt mysqli mysqlnd openssl pcre PDO pdo_sqlite Phar posix Reflection session SimpleXML SPL sqlite3 standard tokenizer xml xmlreader xmlwriter Zend OPcache zip [Zend Modules] Zend OPcache # pkg-static info -g -Ea GeoIP-1.6.9 Find the country that any IP address or = hostname originates from amavis-logwatch-1.51.03 Amavisd-new log parser amavisd-new-2.11.0_1,1 Mail scanner interface between mailer and = content checkers apache24-2.4.25_1 Version 2.4.x of Apache web server apr-1.5.2.1.5.4_2 Apache Portability Library arc-5.21p Create & extract files from DOS .ARC = files arj-3.10.22_4 Open source implementation of the ARJ = archiver asciidoc-8.6.9_5 Text document format for writing short = documents and man pages aspell-0.60.6.1_6 Spelling checker with better suggestion = logic than ispell aspell-ispell-0.60.6.1 Ispell compatibility script for aspell autoconf-2.69_1 Automatically configure source code on = many Un*x platforms autoconf-wrapper-20131203 Wrapper script for GNU autoconf automake-1.15_1 GNU Standards-compliant Makefile = generator automake-wrapper-20131203 Wrapper script for GNU automake bash-4.4.5 GNU Project's Bourne Again SHell bind99-9.9.9P5_1 BIND DNS suite with updated DNSSEC and = DNS64 binutils-2.27_5,1 GNU binary tools bison-3.0.4,1 Parser generator from FSF, (mostly) = compatible with Yacc boehm-gc-7.6.0 Garbage collection and memory leak = detection for C and C++ bsdadminscripts-6.1.1_8 Collection of administration scripts c-ares-1.12.0 Asynchronous DNS resolver library ca_root_nss-3.28.1 Root certificate bundle from the Mozilla = Project cabextract-1.6 Program to extract Microsoft cabinet = (.CAB) files cclient-2007f_2,1 C-client mail access routines by Mark = Crispin clamav-0.99.2_2 Command line virus scanner written = entirely in C clamav-unofficial-sigs-5.3.2_1 Update script for third-party ClamAV = databases clang34-3.4.2_5 C, Objective-C, and C++ compiler cmake-modules-3.7.1 Modules and Templates for CMake cscope-15.8b Interactive C program browser ctags-5.8 Feature-filled tagfile generator for vi = and emacs clones curl-7.52.1_1 Non-interactive tool to get files from = FTP, GOPHER, HTTP(S) servers cyrus-sasl-2.1.26_12 RFC 2222 SASL (Simple Authentication and = Security Layer) cython-0.25.2 Compiler for Writing C Extensions for the = Python Language db5-5.3.28_6 Oracle Berkeley DB, revision 5.3 dcc-dccd-1.3.158_2 Distributed Checksum Clearinghouse bulk = email detector dehydrated-0.3.1_1 Pure BASH/ZSH Lets Encrypt client docbook-1.5 Meta-port for the different versions of = the DocBook DTD docbook-sgml-4.5_1 DocBook SGML DTD docbook-xml-5.0_3 DocBook XML DTD docbook-xsl-1.76.1_3 XSL DocBook stylesheets dovecot2-2.2.27_4 Secure, fast and powerful IMAP and POP3 = server expat-2.2.0_1 XML 1.0 parser written in C fdupes-1.6.1,1 Fdupes is a program for identifying or = deleting duplicate files file-5.29 Utility to determine file type fish-2.4.0 User friendly command line shell fontconfig-2.12.1,1 XML-based font configuration API for X = Windows freetype2-2.6.3 Free and portable TrueType font rendering = engine freeze-2.5_2 Compression program - often used in QNX gdbm-1.12 GNU database manager getopt-1.1.6 Replacement for getopt(1) that supports = GNU-style long options gettext-0.19.8.1 GNU gettext meta package gettext-runtime-0.19.8.1_1 GNU gettext runtime libraries and = programs gettext-tools-0.19.8.1 GNU gettext development and translation = tools giflib-5.1.4 Tools and library routines for working = with GIF images gmake-4.2.1_1 GNU version of 'make' utility gmp-5.1.3_3 Free library for arbitrary precision = arithmetic gnupg-2.1.16_2 The GNU Privacy Guard (modern version) gnupg1-1.4.21_3 The GNU Privacy Guard (minimalist = "classic" version) gnutls-3.5.8 GNU Transport Layer Security library gsed-4.2.2_1 The GNU stream editor help2man-1.47.4 Automatically generating simple manual = pages from program output iconv-2.0_4 Charset conversion library and utilities icu-58.2,1 International Components for Unicode = (from IBM) idnkit-1.0_6 Library to handle internationalized = domain names imapsync-1.727_1 IMAP synchronization, copy or migration = tool indexinfo-0.2.6 Utility to regenerate the GNU info page = index inputproto-2.3.2 Input extension headers iso8879-1986_3 Character entity sets from ISO 8879:1986 = (SGML) jansson-2.9 C library for encoding, decoding, and = manipulating JSON data jbig2dec-0.13 Decoder implementation of the JBIG2 image = compression format jpeg-turbo-1.5.1 SIMD-accelerated JPEG codec which = replaces libjpeg json-c-0.12.1 JSON (JavaScript Object Notation) = implementation in C jsoncpp-1.8.0_1 JSON reader and writer library for C++ kbproto-1.0.7 KB extension headers lha-1.14i_6 Archive files using LZSS and Huffman = compression (.lzh files) libICE-1.0.9_1,1 Inter Client Exchange library for X11 libSM-1.2.2_3,1 Session Management library for X11 libX11-1.6.4,1 X11 library libXau-1.0.8_3 Authentication Protocol library for X11 libXaw-1.0.13,2 X Athena Widgets library libXdmcp-1.1.2 X Display Manager Control Protocol = library libXext-1.3.3_1,1 X11 Extension library libXmu-1.1.2_3,1 X Miscellaneous Utilities libraries libXp-1.0.3,1 X print library libXpm-3.5.12 X Pixmap library libXt-1.1.5,1 X Toolkit library libarchive-3.2.2,1 Library to create and read several = streaming archive formats libassuan-2.4.3 IPC library used by GnuPG and gpgme libatomic_ops-7.4.4 Atomic operations access library libcheck-0.10.0 Unit test framework for C libedit-3.1.20150325_2,1 Command line editor library libev-4.22,1 Full-featured and high-performance event = loop library libevent2-2.0.22_1 API for executing callback functions on = events or timeouts libffi-3.2.1 Foreign Function Interface libgcrypt-1.7.5 General purpose crypto library based on = code used in GnuPG libgpg-error-1.26 Common error values for all GnuPG = components libiconv-1.14_10 Character set conversion library libidn-1.33_1 Internationalized Domain Names command = line tool libidn2-0.14 Implementation of IDNA2008 = internationalized domain names libksba-1.3.5 KSBA is an X.509 Library libltdl-2.4.6 System independent dlopen wrapper liblz4-131 LZ4 compression library, lossless and = very fast libmcrypt-2.5.8_3 Multi-cipher cryptographic library (used = in PHP) libnghttp2-1.18.1 HTTP/2.0 C Library libpaper-1.1.24.4 Library providing routines for paper size = management libpthread-stubs-0.3_6 This library provides weak aliases for = pthread functions libsigsegv-2.10_1 Handling page faults in user mode libsodium-1.0.11_1 Library to build higher-level = cryptographic tools libssh2-1.8.0,3 Library implementing the SSH2 protocol libtasn1-4.9 ASN.1 structure parser library libtool-2.4.6 Generic shared library support script libunistring-0.9.7 Unicode string library libxcb-1.12 The X protocol C-language Binding (XCB) = library libxml2-2.9.4 XML parser library for GNOME libxslt-1.1.29_1 The XSLT C library for GNOME libyaml-0.1.6_2 YAML 1.1 parser and emitter written in C libzip-1.1.3 C library for reading, creating, and = modifying ZIP archives llvm34-3.4.2_4 Low Level Virtual Machine lrzip-0.631 Long Range ZIP or Lzma RZIP lua52-5.2.4 Small, compilable scripting language = providing easy access to C code lynx-2.8.8.2_5,1 Non-graphical, text-based World-Wide Web = client lzo2-2.09 Portable speedy, lossless data = compression library lzop-1.03 Fast file compressor similar to gzip, = using the LZO library m4-1.4.18,1 GNU M4 mDNSResponder-765.20.4 Bonjour (zero-configuration networking) = by Apple mime-support-3.59 MIME Media Types list mpfr-3.1.5 Library for multiple-precision = floating-point computations mutt-1.7.2 Small but powerful text based program for = read/writing e-mail mysql56-client-5.6.34 Multithreaded SQL database (client) mysql56-server-5.6.34 Multithreaded SQL database (server) netqmail-1.06_3 Secure, reliable, efficient, simple, and = fast MTA nettle-3.3 Low-level cryptographic library nghttp2-1.18.1 HTTP/2.0 C Library nmap-7.40 Port scanning utility for large networks nmh-1.6_1 Cleaned up MH mailer suite npth-1.3 New GNU Portable Threads oniguruma5-5.9.6_1 BSDL Regular Expressions library = compatible with POSIX/GNU/Perl openldap-client-2.4.44 Open source LDAP client implementation openssl-1.0.2j_1,1 SSL and crypto library p11-kit-0.23.3 Library for loading and enumerating of = PKCS#11 modules p5-Archive-Zip-1.59 Create, manipulate, read, and write Zip = archive files p5-Authen-SASL-2.16_1 Perl5 module for SASL authentication p5-BerkeleyDB-0.55_1 Perl5 interface to the Berkeley DB = package p5-Bit-Vector-7.4 Library of advanced math functions that = includes a Perl OO module p5-CPAN-Meta-2.150010 Distribution metadata for a CPAN dist p5-Canary-Stability-2012 Checks what version of perl you're = running and then complains about it p5-Carp-Clan-6.06 Report errors from perspective of caller = of a "clan" of modules p5-Convert-BinHex-1.125 Perl module to extract data from = Macintosh BinHex files p5-Convert-TNEF-0.18_1 Perl module to read TNEF files p5-Convert-UUlib-1.50,1 Perl5 interface to the uulib library = (a.k.a. uudeview/uuenview) p5-Crypt-CBC-2.33_1 Perl5 interface to Cipher Block Chaining = with DES and IDEA p5-Crypt-DES-2.07_1 Perl5 interface to DES block cipher p5-Crypt-OpenSSL-Bignum-0.07 OpenSSL's multiprecision integer = arithmetic p5-Crypt-OpenSSL-RSA-0.28_1 Perl5 module to RSA encode and decode = strings using OpenSSL p5-Crypt-OpenSSL-Random-0.11 Perl5 interface to the OpenSSL = pseudo-random number generator p5-DBD-mysql-4.041 MySQL driver for the Perl5 Database = Interface (DBI) p5-DBI-1.636_1 Perl5 Database Interface, required for = DBD::* modules p5-Data-OptList-0.110 Parse and validate simple name/value = option pairs p5-Date-Calc-6.4 Gregorian calendar date calculations p5-Date-Manip-6.53 Perl5 module containing date manipulation = routines p5-Devel-GlobalDestruction-0.14 Expose PL_dirty, the flag which marks = global destruction p5-Digest-BubbleBabble-0.02_1 Perl5 interface to a fingerprint in = "bubble babble" format p5-Digest-HMAC-1.03_1 Perl5 interface to HMAC Message-Digest = Algorithms p5-Digest-SHA1-2.13_1 Perl interface to the SHA-1 Algorithm p5-Dist-CheckConflicts-0.11_1 Declare version conflicts for your dist p5-Encode-Detect-1.01_1 Encode::Encoding subclass that detects = the encoding of data p5-Error-0.17024 Error/exception handling in = object-oriented programming style p5-ExtUtils-Config-0.008_1 Wrapper for perl configuration p5-ExtUtils-Helpers-0.026 Various portability utilities for module = builders p5-ExtUtils-InstallPaths-0.011 Build.PL install path logic made easy p5-File-Copy-Recursive-0.38_1 Perl extension for recursively copying = files and directories p5-GSSAPI-0.28_1 Perl extension providing access to the = GSSAPIv2 library p5-Geo-IP-1.50 Gets country name by IP or hostname p5-HTML-Parser-3.72 Perl5 module for parsing HTML documents p5-HTML-Tagset-3.20_1 Some useful data table in parsing HTML p5-HTTP-Date-6.02_1 Conversion routines for the HTTP protocol = date formats p5-IO-Multiplex-1.13_1 IO::Multiplex - Manage IO on many file = handles p5-IO-Socket-INET6-2.72_1 Perl module with object interface to = AF_INET6 domain sockets p5-IO-Socket-IP-0.38 Drop-in replacement for IO::Socket::INET = supporting IPv4 and IPv6 p5-IO-Socket-SSL-2.038 Perl5 interface to SSL sockets p5-IO-Tee-0.64_3 Multiplex output to multiple output = handles p5-IO-stringy-2.111 Use IO handles with non-file objects p5-JSON-PP-2.27400 JSON::XS compatible pure-Perl module p5-Lchown-1.01_2 Perl5 module providing access to = lchown(2) p5-Locale-gettext-1.06 Message handling functions p5-Log-Dispatch-2.58 Suite of OO modules for logging messages = to multiple outputs p5-Log-Log4perl-1.48 Log4j implementation for Perl p5-MIME-Tools-5.508,2 Set of perl5 modules for MIME p5-Mail-DKIM-0.40_2 Perl5 module to process and/or create = DKIM email p5-Mail-IMAPClient-3.38 Perl5 module to talk to a IMAP4rev1 = (RFC2060) server p5-Mail-SPF-2.9.0_3 Object-oriented implementation of Sender = Policy Framework p5-Mail-Sendmail-0.79_1 Perl module implementing a simple, = platform-independent mailer p5-Mail-Tools-2.14 Perl5 modules for dealing with Internet = e-mail messages p5-Module-Build-0.4220 Build and install Perl modules p5-Module-Build-Tiny-0.039_2 Tiny replacement for Module::Build p5-Module-Implementation-0.09_1 Loads one of several alternate = underlying implementations for a module p5-Module-Runtime-0.014_1 Runtime module handling p5-Mozilla-CA-20160104 Perl extension for Mozilla CA cert bundle = in PEM format p5-Net-DNS-1.07,1 Perl5 interface to the DNS resolver, and = dynamic updates p5-Net-DNS-Resolver-Programmable-0.003_2 Programmable DNS resolver for = off-line testing p5-Net-Domain-TLD-1.74 Look up and validate TLDs p5-Net-LibIDN-0.12_4 This module provides access to the libidn = library p5-Net-SMTPS-0.03_2 SSL/STARTTLS support for Net::SMTP p5-Net-SNMP-6.0.1_1 Object oriented interface to SNMP p5-Net-SSLeay-1.80 Perl5 interface to SSL p5-Net-Server-2.008_3 Configurable base class for writing = internet servers in Perl p5-NetAddr-IP-4.078 Work with IPv4 and IPv6 addresses and = subnets p5-Params-Util-1.07_2 Utility functions to aid in parameter = checking p5-Params-Validate-1.26 Validate method/function parameters p5-Parse-RecDescent-1.967.009_2 Recursive descent parsing framework for = Perl p5-Parse-Syslog-1.10_1 Perl5 routines that present a simple = interface to parse syslog files p5-Readonly-2.05 Facility for creating read-only scalars, = arrays, hashes p5-Socket-2.024 Networking constants and support = functions p5-Socket6-0.28 IPv6 related part of the C socket.h = defines and structure manipulators p5-Storable-2.45_1 Persistency for perl data structures p5-Sub-Exporter-0.987_1 Sophisticated exporter for custom-built = routines p5-Sub-Exporter-Progressive-0.001013 Only use Sub::Exporter if you need = it p5-Sub-Install-0.928_1 Install subroutines into packages easily p5-Term-ReadKey-2.37 Perl5 module for simple terminal control p5-Time-HiRes-1.9726_1,1 Perl5 module implementing High resolution = time, sleep, and alarm p5-TimeDate-2.30_2,1 Perl5 module containing a better/faster = date parser for absolute dates p5-Try-Tiny-0.24 Minimal try/catch with proper = localization of $@ p5-URI-1.71 Perl5 interface to Uniform Resource = Identifier (URI) references p5-Unicode-String-2.10 Perl5 modules to handle various Unicode = issues p5-Unix-Syslog-1.1_1 Perl5 interface to the UNIX syslog(3) = calls p7zip-16.02 File archiver with high compression ratio patch-2.7.5 GNU patch utility pcre-8.39_1 Perl Compatible Regular Expressions = library perl5-5.20.3_15 Practical Extraction and Report Language pflogsumm-1.1.5,1 Postfix Log Entry Summarizer php70-7.0.14 PHP Scripting Language php70-bz2-7.0.14 The bz2 shared extension for php php70-ctype-7.0.14 The ctype shared extension for php php70-curl-7.0.14 The curl shared extension for php php70-dom-7.0.14 The dom shared extension for php php70-exif-7.0.14 The exif shared extension for php php70-extensions-1.1 "meta-port" to install PHP extensions php70-filter-7.0.14 The filter shared extension for php php70-hash-7.0.14 The hash shared extension for php php70-iconv-7.0.14 The iconv shared extension for php php70-json-7.0.14 The json shared extension for php php70-mcrypt-7.0.14 The mcrypt shared extension for php php70-mysqli-7.0.14_1 The mysqli shared extension for php php70-opcache-7.0.14 The opcache shared extension for php php70-openssl-7.0.14 The openssl shared extension for php php70-pdo-7.0.14 The pdo shared extension for php php70-pdo_sqlite-7.0.14 The pdo_sqlite shared extension for php php70-phar-7.0.14 The phar shared extension for php php70-posix-7.0.14 The posix shared extension for php php70-session-7.0.14 The session shared extension for php php70-simplexml-7.0.14 The simplexml shared extension for php php70-sqlite3-7.0.14 The sqlite3 shared extension for php php70-tokenizer-7.0.14 The tokenizer shared extension for php php70-xml-7.0.14 The xml shared extension for php php70-xmlreader-7.0.14 The xmlreader shared extension for php php70-xmlwriter-7.0.14 The xmlwriter shared extension for php php70-zip-7.0.14 The zip shared extension for php pinentry-1.0.0 Collection of simple PIN or passphrase = entry dialogs pinentry-tty-1.0.0 Console version of the GnuPG password = dialog pkg-1.9.4_1 Package manager pkgconf-1.1.1 Utility to help to configure compiler and = linker flags png-1.6.27 Library for manipulating PNG images portsearch-1.3.4 Port searching tool that supports search = by packing list files postfinger-1.30 Postfix Configuration Summary Reporter postfix-current-3.2.20161224,4 Experimental Postfix version postfix-logwatch-1.40.03 Postfix MTA log parser postfix-postfwd-1.35_1 Postfix firewall policy daemon printproto-1.0.5 Print extension headers psearch-2.0.2 Utility for searching the FreeBSD Ports = Collection pure-ftpd-1.0.44_1 Small, easy to set up, fast, and secure = FTP server py27-Babel-2.3.4 Collection of tools for = internationalizing Python applications py27-Jinja2-2.8 Fast and easy to use stand-alone template = engine py27-MarkupSafe-0.23 Implements XML/HTML/XHTML Markup safe = string for Python py27-acme-0.9.3,1 ACME protocol implementation in Python py27-alabaster-0.7.6 Modified Kr Sphinx theme py27-authres-0.800 Python module for RFC 5451 = Authentication-Results headers py27-certbot-0.9.3,1 Let's Encrypt client py27-cffi-1.7.0 Foreign Function Interface for Python = calling C code py27-configargparse-0.11.0 Drop-in replacement for argparse py27-configobj-5.0.6_1 Simple but powerful config file reader = and writer py27-cryptography-1.6 Cryptographic recipes and primitives for = Python developers py27-dns-2.3.6_1 DNS (Domain Name Service) library for = Python py27-dnspython-1.15.0 DNS toolkit for Python py27-docutils-0.13.1 Python Documentation Utilities py27-ecdsa-0.11_1 ECDSA cryptographic signature library = (pure python) py27-enum34-1.1.6 Python 3.4 Enum backported to 3.3, 3.2, = 3.1, 2.7 py27-funcsigs-1.0.2 Python function signatures from PEP362 py27-idna-2.0 Internationalized Domain Names in = Applications (IDNA) py27-imagesize-0.7.1 Python image size library py27-ipaddr-2.1.11 Google open source IPv4/IPv6 manipulation = library in Python py27-ipaddress-1.0.18 Python 3.3's ipaddress for Python 2.6 and = 2.7 py27-mock-1.3.0_1 Mock unit tests for Python py27-ndg_httpsclient-0.4.2 Enhance HTTPS support for httplib and = urllib2 py27-openssl-16.0.0 Python interface to the OpenSSL library py27-paramiko-2.0.4 Python SSH2 protocol library py27-parsedatetime-2.1 Python module for parsing 'human = readable' date/time expressions py27-pbr-1.8.1 Python Build Reasonableness py27-pip-9.0.1 Tool for installing and managing Python = packages py27-postfix-policyd-spf-python-1.3.2_1 Pure Python Postfix policy = daemon for SPF checking py27-psutil-5.0.1 Process utilities module for Python py27-pyasn1-0.1.9 ASN.1 toolkit for Python py27-pycparser-2.10 C parser in Python py27-pygments-2.1.3 Syntax highlighter written in Python py27-pyrfc3339-1.0 Generate and parse RFC 3339 timestamps py27-pyspf-2.0.12_4 SPF (Sender Policy Framework) implemented = in Python py27-pystemmer-1.3.0_1 Snowball Stemming Algorithms for = Information Retrieval py27-python2-pythondialog-3.4.0 Backport of pythondialog to Python 2 py27-pytz-2016.10,1 World Timezone Definitions for Python py27-requests-2.11.1 HTTP library written in Python for human = beings py27-setuptools27-32.1.0 Python packages installer py27-six-1.10.0 Python 2 and 3 compatibility utilities py27-snowballstemmer-1.2.0_1 Snowball stemming library collection for = Python py27-sphinx-1.4.8,1 Python documentation generator py27-sphinx_rtd_theme-0.1.9 Mobile-friendly py-sphinx theme py27-sqlite3-2.7.13_7 Standard Python binding to the SQLite3 = library (Python 2.7) py27-werkzeug-0.11.15 Python utilities collection for building = WSGI applications py27-zope.component-4.2.2 Zope Component Architecture py27-zope.event-4.1.0 Very basic event publishing system py27-zope.interface-4.1.3 Interfaces for Python python2-2_3 The "meta-port" for version 2 of the = Python interpreter python27-2.7.13_1 Interpreted object-oriented programming = language python3-3_3 The "meta-port" for version 3 of the = Python interpreter python34-3.4.5 Interpreted object-oriented programming = language python35-3.5.2 Interpreted object-oriented programming = language re2c-0.14.3 Compile regular expression to C (much = faster final code than flex) readline-6.3.8 Library for editing command lines as they = are typed ripole-0.2.2 Small program designed to pull = attachments out of OLE2 documents rpm2cpio-1.4_2 Convert .rpm files to cpio format rsnapshot-1.4.2 Filesystem snapshot utility based on = rsync(1) rsync-3.1.2_6 Network file distribution/synchronization = utility ruby-2.3.3_1,1 Object-oriented interpreted scripting = language scons-2.5.1 Build tool alternative to make sdocbook-xml-1.1_2,2 "Simplified" DocBook XML DTD spamassassin-3.4.1_9 Highly efficient mail filter for = identifying spam spdylay-1.4.0_1 SPDY protocol version 2, 3 and 3.1 = implementation in C speedtest-mini-2.1.8.20160830,1 Mini bandwidth speed test on your own = server sqlite3-3.15.1_1 SQL database engine in a C library t1lib-5.1.2_4,1 Type 1 font rasterization library for = Unix/X11 tcl86-8.6.6_2 Tool Command Language tpm-emulator-0.7.4_1 Trusted Platform Module (TPM) emulator trousers-0.3.14_1 Open-source TCG Software Stack ucspi-tcp-0.88_2 Command-line tools for building TCP = client-server applications unrar-5.40,5 Extract, view & test RAR archives unzoo-4.4_2 ZOO archive extractor urlview-0.9.20131021_1 URL extractor/launcher vim-8.0.0149_2 Improved version of the vi editor vpopmail-5.4.33_2 Easy virtual domain and authentication = package for use with qmail w3m-0.5.3.20170102 Pager/text-based WWW browser wget-1.18_2 Retrieve files from the Net via HTTP(S) = and FTP xcb-proto-1.12 The X protocol C-language Binding (XCB) = protocol xcmiscproto-1.2.2 XCMisc extension headers xextproto-7.3.0 XExt extension headers xf86bigfontproto-1.2.0 XFree86-Bigfont extension headers xmlcatmgr-2.2_2 SGML and XML catalog manager xmlcharent-0.3_2 XML character entities xmlto-0.0.28 Front-end to an XSL toolchain xorg-macros-1.19.0 X.Org development aclocal macros xproto-7.0.31 X11 protocol headers xtrans-1.3.5 Abstract network code for X zoo-2.10.1_3 Manipulate archives of files in = compressed form --=20 Apple broke AppleScripting signatures in Mail.app, so no random = signatures. From owner-freebsd-ports@freebsd.org Mon Jan 16 16:07:20 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B547CB2DF1 for ; Mon, 16 Jan 2017 16:07:20 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 647B01587 for ; Mon, 16 Jan 2017 16:07:20 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: by mailman.ysv.freebsd.org (Postfix) id 5ED79CB2DEC; Mon, 16 Jan 2017 16:07:20 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C491CB2DE7; Mon, 16 Jan 2017 16:07:20 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.15.19]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC9FB1584; Mon, 16 Jan 2017 16:07:19 +0000 (UTC) (envelope-from ohauer@gmx.de) Received: from [109.42.1.74] by msvc-mesg-gmx018.server.lan (via HTTP); Mon, 16 Jan 2017 17:07:08 +0100 Message-ID: From: ohauer To: "Benjamin Kaduk" , "Julian Elischer" Cc: "ports@FreeBSD.org" , "current@freebsd.org" Subject: Re: Re: recent change to vim defaults? Date: Mon, 16 Jan 2017 17:07:08 +0100 X-Provags-ID: V03:K0:JHhNqQ+O5baiMqKbnktqLHIRf0Klisl9IIBlQFxrpSa 085nd3wgyDvdwWQJ5Z7P5uMB1W2gCTVtr6UZZAFZ0fXAvjyS0F eUd/ThE9AWqD3ZVc3q01kxe+HcBGw4p+1DyKJZzUbimRqP6Uav AAkS9Z+Pgk5Jia5xpJu1XdIqxNcjn6OjlxPUSMRDrucfwqcA/a jjrFHwVsOQYmfaqiT+GGqJDJjJ9iQTzpKtO0IlIeGdVXJ3Mmtc ysKxN8ZNLeIx/nk8ePIeN5igNHrs7pBOY8b00tmqrs62SCGO2i f2DPg4= X-UI-Out-Filterresults: notjunk:1;V01:K0:p7CTG9DWZRc=:8i7qW0VPRteVFkilK6hC3L 7ijKmKXgXhXHF+TQy/hUQYwcN2/6vF2taX0LGMcFnEAFy7MMxCX7u8cH3M6eLoe/jpXkN9jty MxxR4ZPe1wpgyuvScmYRGrQzu5yosVfbHhZNEUwp1NIp4V06SyY+GGIOJ+STozYyPmN+CL4rp DhRBSVHIMezjFnK8+CoxbIsxXr177rhKIeIYOr4vWWkyyFqGoaxGyXKUT22kWfHNINJEgi4a4 YXyVXaM8qml65H7H1mP95qNJFCq3EGKhkPShu9BPkbBeERDnw6HZ+WHnTCLVM8g0fu6+7wA0b lcvgXUS5LFBaEFjR8uRe8ArNlqvnLw+LZg0i+W9uLgGtzJTItHlNxHzfdPL53WX5PqN2n6RiR DNW/3ZBkP29hAjLTcHsDoKmPg49fpmu+d0w4V4rxHClwlmXZmTn576u+6Ye3sBuqvKsNJvHe4 ZjaFNqMCasWO+qO610yfMO7sa0btrH9tlG3pLsqOPsAb5d9NRrKH MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 16:07:20 -0000 From owner-freebsd-ports@freebsd.org Mon Jan 16 16:25:30 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC172CB2428 for ; Mon, 16 Jan 2017 16:25:30 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 88146119D for ; Mon, 16 Jan 2017 16:25:30 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 82419CB2426; Mon, 16 Jan 2017 16:25:30 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81623CB2424; Mon, 16 Jan 2017 16:25:30 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x22c.google.com (mail-wm0-x22c.google.com [IPv6:2a00:1450:400c:c09::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 1B693119A; Mon, 16 Jan 2017 16:25:30 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x22c.google.com with SMTP id r126so165714756wmr.0; Mon, 16 Jan 2017 08:25:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=qrnzQntjvlIFYa3aeDvYQEEyMe3iPbx7mswtGwo5MWI=; b=SDiYCD0N47ZmFutdapJxe0MAqv7xoMlu4irnCphRuPYLBVPXdZIldm2oPYMxUGBNgQ 691uQ3+30pIL92FS7pvCzx20FUlzesyehjFj4Bll3VM1Bw6sW2oM6uYA9fEPsghU7ytq wXgR2ulnLaK9QlLS7iK+roQyOw+uCj9YzaqZSWLgTPDUogmXvxcwoZuwkGrCBNH+KzcD DjXln/n2qt4o8XW438eoX340YDGoFRD5s3uOz7Vosu4fU2KxkPDGGR8zJzmFn5DP1cWn 3/hUxk+kre1paoucMRvDpwObZ3YVdDtBBQFOpJ78A5ox6J/yjmGtTu/D6xueK1iM/7zo nLbQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=qrnzQntjvlIFYa3aeDvYQEEyMe3iPbx7mswtGwo5MWI=; b=WXMCyIia9YuefSC4Q8VhIY4URHkl1X1G4kq0T3ZXH8OuPnncYPNqp5gUCAFVjjMO9j Jx1H8V3JZ1RgBJqceg0Rmk80GHhseO+l4pNh2mC77AufZDjzA9J0bqnvINH8BtqHBx9P dWrMjWpLQnUhOF88oGqvkvsfM9Lk+qYeU7OHFMlVpT5AbRdWHtQWc/cjBqPgzkEk4rfi PQCl9FXCfV+gMBlcWAWqixYcuErWX47HfgHOcNbkd4mGOmwyNJ9Hm8RRXdiI7JKuHYNR hmGQ0yBwG/Fd8SXn8ByTrvfhR0EkW3IKkNnfY3/x+x+fBaRV53jmyDpsTTDK9I7+3OJk 2iUA== X-Gm-Message-State: AIkVDXKpyMlbXOouCE8BuJ+5XNezkS1lhlqGdH9fq+I50nw2M/aagxmp0nK3xTitKZm5Dw== X-Received: by 10.28.21.84 with SMTP id 81mr13521001wmv.106.1484583928074; Mon, 16 Jan 2017 08:25:28 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id v143sm15717815wmv.4.2017.01.16.08.25.27 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 16 Jan 2017 08:25:27 -0800 (PST) Sender: Baptiste Daroussin Date: Mon, 16 Jan 2017 17:25:26 +0100 From: Baptiste Daroussin To: Julian Elischer Cc: "ports@FreeBSD.org" , "current@freebsd.org" Subject: Re: recent change to vim defaults? Message-ID: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="rmu5oix3kic5fakw" Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20161126 (1.7.1) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 16:25:30 -0000 --rmu5oix3kic5fakw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: > I noticed that suddenly vim is grabbing mouse movements, which makes life > really hard. >=20 > Was there a specific revision that brought in this change, and can it be > removed? This change appeared in one of the last patchset of vim 7.4 and was one of = the "features" of the vim 8.0 release. I do agree this is just totally painful :( Best regards, Bapt --rmu5oix3kic5fakw Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAlh88/MACgkQY4mL3PG3 PloVUw/7B7ayI2t5JEHlrp2y+oml3Txc7ibnU/7DV30C2xwWalCJ8Zt9jxuQKh8o VahMMpjSi2gW6hTQqE7lWlag2HodqJWZYnAHROvRnwlsmBNQbNh4eTaejkwWU6Gm jm14em3WygPAV+sCuKsLYsVNMyApNgudMa5yVOOqN8I1tE1T3kmV/w71noMi2f0V zKLpzrI8Fp+vIYrczaM8Vjva8evh6plg5s/X/BkLWH1p8WgbCdvhilIVd0RXqZEU nHu8viALd4K07m8wK5CLWn8iXTRP6Ct6DULlJMZxinYYy+6h4dxcR66bC6Eff1pp bWoMcEQmglKnh8eg5KyMdqMI2CwsW/ajVkNrYUIBPccyBWS+nl7IJ2+/LapDrdMc xEyW2F+oO4WMBIDKEs7uVC0XoXHLN1uh4a8bSJSrKQ91pSADd2aPJHjhdH74Fwru kqcNBE8Pm7g9iodhS8pLguCsFv7kUeD+ABTuhu6YmVbnJroQ9T8FSxIfx7ZwnKws AfSS2rV3bGZ39/AywWRn7XdH2zsDDi5uvUd19uyYP7aXW/UsSwPAOy1eNgbsU1ok rv3WwjCB0APjGk0MhYZijg9VFItZWQpFodPO4FY3rejwuSolgsqT5yF20AKtKDU4 gNkNPzdL70/SpKU6vjZcdijs1YQzj5wXmih0deW68CJhqq2593U= =O1XS -----END PGP SIGNATURE----- --rmu5oix3kic5fakw-- From owner-freebsd-ports@freebsd.org Mon Jan 16 16:46:44 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1179CAF076 for ; Mon, 16 Jan 2017 16:46:44 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id CEAC9138F for ; Mon, 16 Jan 2017 16:46:44 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: by mailman.ysv.freebsd.org (Postfix) id C8B3ACAF073; Mon, 16 Jan 2017 16:46:44 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8195CAF070; Mon, 16 Jan 2017 16:46:44 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98]) (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 89AED138C; Mon, 16 Jan 2017 16:46:44 +0000 (UTC) (envelope-from slw@zxy.spb.ru) Received: from slw by zxy.spb.ru with local (Exim 4.86 (FreeBSD)) (envelope-from ) id 1cTAQb-000EWt-FO; Mon, 16 Jan 2017 19:46:41 +0300 Date: Mon, 16 Jan 2017 19:46:41 +0300 From: Slawa Olhovchenkov To: Baptiste Daroussin Cc: Julian Elischer , "ports@FreeBSD.org" , "current@freebsd.org" Subject: Re: recent change to vim defaults? Message-ID: <20170116164641.GD58505@zxy.spb.ru> References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> User-Agent: Mutt/1.5.24 (2015-08-30) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 16:46:45 -0000 On Mon, Jan 16, 2017 at 05:25:26PM +0100, Baptiste Daroussin wrote: > On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: > > I noticed that suddenly vim is grabbing mouse movements, which makes life > > really hard. > > > > Was there a specific revision that brought in this change, and can it be > > removed? > > This change appeared in one of the last patchset of vim 7.4 and was one of the > "features" of the vim 8.0 release. > > I do agree this is just totally painful :( Wat about edit 8-bit files in utf-8 locale? Still corrupted files? From owner-freebsd-ports@freebsd.org Mon Jan 16 17:05:42 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E20EBCAFF2D for ; Mon, 16 Jan 2017 17:05:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id C31C418B3 for ; Mon, 16 Jan 2017 17:05:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id BF822CAFF2B; Mon, 16 Jan 2017 17:05:42 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF1F4CAFF2A for ; Mon, 16 Jan 2017 17:05:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5C1F318B2; Mon, 16 Jan 2017 17:05:42 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 7C8C4BDC89; Mon, 16 Jan 2017 18:05:39 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 403F1BDC85; Mon, 16 Jan 2017 18:05:39 +0100 (CET) Subject: Re: suggested patch for bsd.ports.mk To: Julian Elischer , Kurt Jaeger References: <6453cdb9-b27a-e061-7249-51d84dbaefcc@freebsd.org> <20170103200532.GZ2648@home.opsec.eu> <54125c8e-3b2a-814b-4e87-5c65d3b581b3@freebsd.org> Cc: "ports@FreeBSD.org" From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: Date: Mon, 16 Jan 2017 18:05:38 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <54125c8e-3b2a-814b-4e87-5c65d3b581b3@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ghpBfivtTJB0duXHUmAXPmhBwFCs0VAwe" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 17:05:43 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --ghpBfivtTJB0duXHUmAXPmhBwFCs0VAwe Content-Type: multipart/mixed; boundary="mvK2eCwCUAIjvdF0bRHfPiRfrmFkAtbAm"; protected-headers="v1" From: Mathieu Arnold To: Julian Elischer , Kurt Jaeger Cc: "ports@FreeBSD.org" Message-ID: Subject: Re: suggested patch for bsd.ports.mk References: <6453cdb9-b27a-e061-7249-51d84dbaefcc@freebsd.org> <20170103200532.GZ2648@home.opsec.eu> <54125c8e-3b2a-814b-4e87-5c65d3b581b3@freebsd.org> In-Reply-To: <54125c8e-3b2a-814b-4e87-5c65d3b581b3@freebsd.org> --mvK2eCwCUAIjvdF0bRHfPiRfrmFkAtbAm Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Le 14/01/2017 =C3=A0 18:02, Julian Elischer a =C3=A9crit : > On 4/01/2017 4:05 AM, Kurt Jaeger wrote: >> Hi! >> >>> I got several "yes please" from members of the public, >>> but no actionable response from members of the ports group >>> So I am asking again. >> I'd also like to have this patch. >> >> If I look at the PR, mat is already working to integrate it. >> > yes though I've no estimate of when we could see it. > > If it is going to take too long I'd like to put in my version and have > it replaced when Mat works out his version. > > Mat? Patches to the framework are worked on, and tested, rinse/lather/repeat as long as it does not work for all the 25k ports in the tree. There can be no estimate as to when any patch will land, I work on it on them in my spare time. --=20 Mathieu Arnold --mvK2eCwCUAIjvdF0bRHfPiRfrmFkAtbAm-- --ghpBfivtTJB0duXHUmAXPmhBwFCs0VAwe Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJYfP1iXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I64gQAJwythPxdj1so7Bn4R7zd8uj OIkD3ODS+VQeaYR5e8hSTOPyXuCygt9chaMjj6M83yKw2UvqBL0txZ4LXYUZprv1 I9//8v8kZ2SGhV34p8mvJgmLDZQYqDBgy5RnGU0JrYHCxpht+sem3kWhFSAhRmVN 9nZa/FGO0xbSts8klmBFjNaB2gg8m1njx2/SlRf2EZI7RZasS4uSNNmXFiB4xpVI qyoz+u9j3Dnj1MCdoBHmZEUyVXGZ/ukCAK4HYn3kTV6hEuUkeVBg3rd2NtMWUQMC GOLinB0Bz0mGeuGWBQZlp62ak4HUI+ZDdPNFq5ALlBfOVNOZNBGttTuKOcCGSXwK szxhfLf4yEpDj3c/+AcfeV9s90qcGACqYBBCU/qDZgCHUl7WFFselEGPknZm/YcS HQssM1R20Rwpc8R5fBGQCwmJL9UJfKcM6EjHsAQ8aY2+HCA/Rv3Of5Qx+uK9tPXJ tiC3h9jED1gIc/+IKtj3vqpgFeG6GW+XTku4g992oNGBux8bL6CStSyKDHcUWAww kPJAdfQwwLvGb6wCiqkdmndpJCPzREJ8EA4ZLzwTd9AAaPDBw4hHC7O4O2Ugn8vE hU1wHmzslSVSZUX2ytQbofyGHk7HYeUtGFxofnVeCyYDw4tTAuR57X06AdFAyQt8 4wHIIQGTlGIKdr/oE8P4 =5EKR -----END PGP SIGNATURE----- --ghpBfivtTJB0duXHUmAXPmhBwFCs0VAwe-- From owner-freebsd-ports@freebsd.org Mon Jan 16 17:19:15 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C4A1CB11EF for ; Mon, 16 Jan 2017 17:19:15 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 26CB61E4F for ; Mon, 16 Jan 2017 17:19:15 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 20FA2CB11ED; Mon, 16 Jan 2017 17:19:15 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2034DCB11EB; Mon, 16 Jan 2017 17:19:15 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wj0-x242.google.com (mail-wj0-x242.google.com [IPv6:2a00:1450:400c:c01::242]) (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 A5CD41E4D; Mon, 16 Jan 2017 17:19:14 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wj0-x242.google.com with SMTP id ip10so424701wjb.1; Mon, 16 Jan 2017 09:19:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=OCY3XtEVJyEZGt6OALl3bVQapnTy4KZVsSZzOgqSemc=; b=ZhZZzAHeQqEeHXXjDTPqJ062/2PCHsV2fGJY52R5dAz5V8oQo/Jrh3matOUzMLLW0l /sDo8KNdPwdsV5TzSDGebvNNGfjPSe+htUdpB2L8top4Dxa3/jh5mU7ZG51QbNHA3LeP T7nZXpEkPlv5Vs7dXNpp5skxDje7UX9po37aPaqjjgHNUSQ7WivyqnC85brWlepEYMmP Gq8X9eDMecEQOn3eA4q4s1gVgLgF4XnDJDmbiwLgMhJZtxq5ZQb1aekAVEPAyJ25Gek7 rKZ2YRqJ/y9eY6/y7QyxrrbJsDpS4AYedbDz/A1v2oT4K/C/C5UDNAKvnb1r+KIMV1Hg HhDA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=OCY3XtEVJyEZGt6OALl3bVQapnTy4KZVsSZzOgqSemc=; b=dVZxDFKIciAbWkQQuJGb2Kb6zzl4yCATIqeOAc9ryqe4bbl68EeOzjcewC2oCrAAfE Wih7hhtHmu5JCcciFNATPhni3nLhN5LLubGAi396vYPWd1TESzwoniQo2jTAQnggzXBG 5u7dfnAJlcv3ZshWItPyl/tACv5G9Xi2Suawc4DLikgxRnc1CsnaBlYG0TdKmO+wJD5E CZA0mFqxJ7zvV7INirHqkdVo+NvEqh9wvDnjTvYASjV5Ab1LlIYml7So24w9iVCSOyEa HVw6fxvk45kvfuYQEqnQvCmlTUWH8IEqKM3Ncw9jkXSgJK5Tq766lJXmsBz8Mib99/n7 OcTA== X-Gm-Message-State: AIkVDXLLrL7IOX8vDbKC3EcMGqTs29p1kGmk41Yq/6Uz4Z+ftEHxU0tHvDzj1TgMgMrwXA== X-Received: by 10.223.169.115 with SMTP id u106mr23558910wrc.54.1484587152457; Mon, 16 Jan 2017 09:19:12 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id d29sm30148282wmi.19.2017.01.16.09.19.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 16 Jan 2017 09:19:11 -0800 (PST) Sender: Baptiste Daroussin Date: Mon, 16 Jan 2017 18:19:10 +0100 From: Baptiste Daroussin To: Slawa Olhovchenkov Cc: Julian Elischer , "ports@FreeBSD.org" , "current@freebsd.org" Subject: Re: recent change to vim defaults? Message-ID: <20170116171910.ysufcxlcwvu2lbu2@ivaldir.etoilebsd.net> References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> <20170116164641.GD58505@zxy.spb.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="z6qywgqenmj5ig4y" Content-Disposition: inline In-Reply-To: <20170116164641.GD58505@zxy.spb.ru> User-Agent: NeoMutt/20161126 (1.7.1) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 17:19:15 -0000 --z6qywgqenmj5ig4y Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 16, 2017 at 07:46:41PM +0300, Slawa Olhovchenkov wrote: > On Mon, Jan 16, 2017 at 05:25:26PM +0100, Baptiste Daroussin wrote: >=20 > > On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: > > > I noticed that suddenly vim is grabbing mouse movements, which makes = life > > > really hard. > > >=20 > > > Was there a specific revision that brought in this change, and can it= be > > > removed? > >=20 > > This change appeared in one of the last patchset of vim 7.4 and was one= of the > > "features" of the vim 8.0 release. > >=20 > > I do agree this is just totally painful :( >=20 > Wat about edit 8-bit files in utf-8 locale? > Still corrupted files? What are you speaking about I never had this issue with vim We had this issue with vi in base which is now worked arounded so it just f= ails so save instead of corrupting (which is still bad but a bit better :)) Bapt --z6qywgqenmj5ig4y Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAlh9AIMACgkQY4mL3PG3 PlonghAA6IJjBJGdFRWuEcuhYGM+UKTGa2s1acfAJzK9PjHA17Y9BpTJHw1itq06 cuR9wiDNg72nAvkHVXsXvRmY/vv5hSefgaONLSrybSfBXtAmvw2PwgyPlgYEm71Y KFHPjbxvndl7MxNE9M3aPUAPOgGoHkQ7w3oocWEe5nEdSKy7gR2FNtHaicE5eLKs 5Zp3lJTMT3pCudhuJG/8jvVXL7rHyl8azVENsFdvDXoy5gF2aW7OXS071rNyAT5l gzPJLrV0EQ560v4XwaafEAy9ZIDw3IjZEPKY5Osyh3WP67IknvuLDLKmjIY0AE66 x9oAUu37Y9STTwovAQpmCOjppoBfl806euXWizEHONg6k9hOXhNlI2acCi+7uwcz zY97idEnhF+/M6OJ3rcTJd6o4gqBOLVpyPEU32gzkXbyOkw81F71Dt8K5ZgjUP6V 8dZxpczNL8uVQuUT2dUt4bDaEF0lnFTxO/Fegy1cj9UGUkB+3kpPzrcMlzXX69Xw lTAP91BBdFB+KocdDbnQXzqwTeD587xQvvnfju9Fj7tdW1LjCJi3qH+k7WY5Qm/Z 9qltJP3xHBjz+/WIy7pqxc2/PRDR0oSWihjx+SFoqxmSMejYqKcoPTiIsryTrqG8 5YL5ZI2GzkeJDYxBnSyL7a6BoSafbpREEBhB8LC7nBD4vQ1lBiM= =x3Kr -----END PGP SIGNATURE----- --z6qywgqenmj5ig4y-- From owner-freebsd-ports@freebsd.org Mon Jan 16 17:19:38 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B41A0CB127A for ; Mon, 16 Jan 2017 17:19:38 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from mail-lf0-x236.google.com (mail-lf0-x236.google.com [IPv6:2a00:1450:4010:c07::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 3A6851F50 for ; Mon, 16 Jan 2017 17:19:38 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: by mail-lf0-x236.google.com with SMTP id n124so20037238lfd.2 for ; Mon, 16 Jan 2017 09:19:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=Y6jbLN0A8y+SqN+Z9BTj2b0x/Ko0P5BnNa8PB7u2Rfg=; b=keQazNyA82UiLvS/8gyRPECdMkn1foIdYEdnZFDBOw4czTglHiULSyRDwl4DvC/9+T 7lJFFK84Snz/ALT+Yu3Z6j9xqOzzQJkdnlH746hWscs+ijhSnfU4OD+qkyReoDTXTRtj vfGYOX5TCqfKflz1t2CE2zrMNY6LyZhVTTyef56+2HgyPxElelEtAkr/39C/TUYd8qqz 7Nr72rVytJszM+wwU/imQ5MesuI4nR5kqV4vKQxeMyDSsg+rojMf68ScEf1azOnyxov6 qeyu8EnKvlKTIAe3cwC/t9DSJFGXYpJHOiOy8x82mGWEL2x4btXQ0o7H+Do/SNBO/ykY TsXg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=Y6jbLN0A8y+SqN+Z9BTj2b0x/Ko0P5BnNa8PB7u2Rfg=; b=i1rKYzVLQcqaqLrGsmFBXVtIPNritaRy4WExMulfBNPINAvPlvxJAsPiG61p0rKtpW ah6xyN/1xmiRAtWJcfr00UogEpXxURz+c3qkicG4TW9uO8vwS2CIxKn2fPAJdQqDtN2h K1g1ZFl8wOJOAmgPN1zZto5JKU4D4JakrHztDzOeRAR1YekNy2eBc39Q2Cfkta3K5GjI 0IAmGOcV/9Euwygh+AqUrWiODgblTAMK20DkHt3BejApLxSKVx1hP5AcrGF+1hlxZ837 eMnSoQCwRh6zngoEaEk+Z8Sa6Pgg+xGLgkevnazYerM7gznXjJhRJ6q1dXSrCqdvBQ3n kbQA== X-Gm-Message-State: AIkVDXLZzO+oLCljk4jZvtQ7GQK0LvdCEURje+XKF8JEiQj2kFAon3y60mhpdhzaJJK/hffcrosmKE+9gahFzA== X-Received: by 10.25.25.73 with SMTP id 70mr739929lfz.153.1484587175897; Mon, 16 Jan 2017 09:19:35 -0800 (PST) MIME-Version: 1.0 Received: by 10.25.79.15 with HTTP; Mon, 16 Jan 2017 09:19:35 -0800 (PST) From: =?UTF-8?Q?Fernando_Apestegu=C3=ADa?= Date: Mon, 16 Jan 2017 18:19:35 +0100 Message-ID: Subject: pkg install avrdude wants to deinstall firefox To: FreeBSD Mailing List Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 17:19:38 -0000 Hi, I'm running FreeBSD 11.0-RELEASE-p2. When I try to install avrdude, I get this: $ pkg install avrdude Updating FreeBSD repository catalogue... FreeBSD repository is up-to-date. All repositories are up-to-date. The following 9 package(s) will be affected (of 0 checked): Installed packages to be REMOVED: firefox-50.1.0_3,1 New packages to be INSTALLED: avrdude: 6.3 libftdi1: 1.3_2 boost-libs: 1.63.0_1 libconfuse: 2.7_2 Installed packages to be UPGRADED: icu: 57.1,1 -> 58.2,1 harfbuzz: 1.3.4 -> 1.4.1 texlive-base: 20150521_13 -> 20150521_14 qt5-core: 5.6.1_1 -> 5.6.2_1 Number of packages to be removed: 1 Number of packages to be installed: 4 Number of packages to be upgraded: 4 The process will require 21 MiB more space. 25 MiB to be downloaded. Why is this operation trying to remove firefox? From owner-freebsd-ports@freebsd.org Mon Jan 16 17:23:26 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99BC5CB15AE for ; Mon, 16 Jan 2017 17:23:26 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8732913D5 for ; Mon, 16 Jan 2017 17:23:26 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mailman.ysv.freebsd.org (Postfix) id 839DECB15AB; Mon, 16 Jan 2017 17:23:26 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 831E4CB15A9; Mon, 16 Jan 2017 17:23:26 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 85A1A13D3; Mon, 16 Jan 2017 17:23:25 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id cfbb460d TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Mon, 16 Jan 2017 10:23:18 -0700 (MST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: recent change to vim defaults? From: Adam Weinberger In-Reply-To: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> Date: Mon, 16 Jan 2017 10:23:16 -0700 Cc: Julian Elischer , "ports@FreeBSD.org" , "current@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.org> References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> To: Baptiste Daroussin X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 17:23:26 -0000 > On 16 Jan, 2017, at 9:25, Baptiste Daroussin wrote: >=20 > On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: >> I noticed that suddenly vim is grabbing mouse movements, which makes = life >> really hard. >>=20 >> Was there a specific revision that brought in this change, and can it = be >> removed? >=20 > This change appeared in one of the last patchset of vim 7.4 and was = one of the > "features" of the vim 8.0 release. >=20 > I do agree this is just totally painful :( >=20 > Best regards, > Bapt One of the things that I inherited with the Vim port was the = DEFAULT_VIMRC option (which installs = /usr/ports/editors/vim/files/vimrc), and I haven't touched it. I have moused disabled in all my boxes so I have no idea about bad mouse = behaviour in Vim. If there is a bad default that is causing grief, let's = just fix it in that default vimrc. I'm not really understanding what the unexpected behaviour is so I can't = make an intelligent recommendation myself, but I'll go with whatever you = folks suggest. # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Mon Jan 16 17:46:27 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22131CB20BE for ; Mon, 16 Jan 2017 17:46:27 +0000 (UTC) (envelope-from stb@lassitu.de) Received: from gilb.zs64.net (gilb.zs64.net [IPv6:2a00:14b0:4200:32e0::1ea]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gilb.zs64.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E476515B9 for ; Mon, 16 Jan 2017 17:46:26 +0000 (UTC) (envelope-from stb@lassitu.de) Received: by gilb.zs64.net (Postfix, from stb@lassitu.de) id 7C64230F78F for ; Mon, 16 Jan 2017 17:46:24 +0000 (UTC) From: Stefan Bethke Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: Ports options in make.conf vs. GSSIAPI Date: Mon, 16 Jan 2017 18:46:23 +0100 References: <65E129D8-F68C-43D6-944B-F5E18396E78C@lassitu.de> To: FreeBSD Ports In-Reply-To: <65E129D8-F68C-43D6-944B-F5E18396E78C@lassitu.de> Message-Id: X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 17:46:27 -0000 > Am 13.01.2017 um 14:12 schrieb Stefan Bethke : >=20 >=20 >> Am 13.01.2017 um 13:30 schrieb Stefan Bethke : >>=20 >> For example, with dns/bind99, without options for that port in = make.conf, I can run make showconfig and other build commands without = issue. As soon as I add either of these: >> #OPTIONS_UNSET+=3D GSSAPI_BASE >> #OPTIONS_SET+=3D GSSAPI_MIT >> dns_bind99_UNSET+=3D GSSAPI_BASE >> dns_bind99_SET+=3D GSSAPI_MIT >>=20 >> running make showconfig produces: >> # make showconfig >> =3D=3D=3D=3D> You must select one and only one option from the GSSAPI = single >> *** Error code 1 >>=20 >> Stop. >> make: stopped in /freebsd/checkout/ports/dns/bind99 >=20 > I swear I=E2=80=99ve looked at this for I don=E2=80=99t know how long, = but it=E2=80=99s really trivial: >=20 > Some ports have GSSAPI_BASE as their OPTIONS_DEFAULTS, some have = GSSAPI_NONE. >=20 > $ find . -name Makefile | xargs grep 'OPTIONS_DEFAULT=3D.*GSSAPI_' | = sort > ./databases/mariadb101-server/Makefile:OPTIONS_DEFAULT=3D = GSSAPI_BASE > ./dns/bind9-devel/Makefile:OPTIONS_DEFAULT=3D SSL THREADS SIGCHASE IDN = GSSAPI_NONE JSON > ./dns/bind910/Makefile:OPTIONS_DEFAULT=3D SSL THREADS SIGCHASE IDN = GSSAPI_NONE JSON \ > ./dns/bind911/Makefile:OPTIONS_DEFAULT=3D SSL THREADS SIGCHASE IDN = GSSAPI_NONE JSON > ./dns/bind99/Makefile:OPTIONS_DEFAULT=3D SSL THREADS SIGCHASE IDN = GSSAPI_NONE RRL DLZ_FILESYSTEM \ > ./mail/dovecot2-pigeonhole/Makefile:OPTIONS_DEFAULT=3DMANAGESIEVE = GSSAPI_NONE > ./mail/dovecot2/Makefile:OPTIONS_DEFAULT=3DKQUEUE GSSAPI_NONE > ./mail/fetchmail/Makefile:OPTIONS_DEFAULT=3D GSSAPI_BASE > ./net-mgmt/adcli/Makefile:OPTIONS_DEFAULT=3D GSSAPI_BASE > ./security/cyrus-sasl2-gssapi/Makefile:OPTIONS_DEFAULT=3D = GSSAPI_BASE > ./security/p5-Authen-Krb5-Simple/Makefile:OPTIONS_DEFAULT=3D = GSSAPI_BASE > ./security/p5-Authen-Krb5/Makefile:OPTIONS_DEFAULT=3D GSSAPI_BASE > ./security/p5-GSSAPI/Makefile:OPTIONS_DEFAULT=3D GSSAPI_BASE > ./security/p5-Heimdal-Kadm5/Makefile:OPTIONS_DEFAULT=3D = GSSAPI_BASE > ./security/py-kerberos/Makefile:OPTIONS_DEFAULT=3D GSSAPI_BASE > ./sysutils/msktutil/Makefile:OPTIONS_DEFAULT=3DGSSAPI_BASE > ./www/mod_auth_kerb2/Makefile:OPTIONS_DEFAULT=3D GSSAPI_BASE >=20 > In order to have only a single GSSAPI option selected, OPTIONS_UNSET = must include both: > OPTIONS_UNSET+=3D GSSAPI_BASE GSSAPI_NONE Here=E2=80=99s a small improvement to bsd.port.mk to print out all the = active options for OPTION_SINGLEs and OPTION_RADIOs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D216150 Stefan --=20 Stefan Bethke Fon +49 151 14070811 From owner-freebsd-ports@freebsd.org Tue Jan 17 05:12:37 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38A58CB36DC for ; Tue, 17 Jan 2017 05:12:37 +0000 (UTC) (envelope-from hsakamt@tsnr.com) Received: from sv.tsnr.com (sv.tsnr.com [203.181.83.169]) (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 0E14B112D for ; Tue, 17 Jan 2017 05:12:36 +0000 (UTC) (envelope-from hsakamt@tsnr.com) Received: from MacBook-Air.local (tipc00.tsnr.com [210.159.194.168]) by sv.tsnr.com (Postfix) with ESMTPSA id 282D888530; Tue, 17 Jan 2017 14:02:51 +0900 (JST) To: freebsd-ports@FreeBSD.org From: Hideki SAKAMOTO Subject: databases/phppgadmin fails pg_dump with databases/postgresql95* ports Organization: Tsukuba Secure Network Research Message-ID: <8816ac3d-6ca8-4d14-13b5-4b4e9e2d2ad5@tsnr.com> Date: Tue, 17 Jan 2017 14:02:51 +0900 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 05:12:37 -0000 Hi, I'm using databases/phppgadmin ports with databases/postgresql95*. When I use DB export I get an error with: --- pg_dump: invalid option -- i Try "pg_dump --help" for more information. --- Because '-i' option has been removed from pg_dump command in PostgreSQL 9.5. I find this problem has been fixed in latest github repository. https://github.com/phppgadmin/phppgadmin So, could you please update distfile with latest one? I also attach quick-fix patch for this problem. (works /usr/ports/databases/phppgadmin/files/patch-dbexport.php) Thanks in advance. -- Hideki SAKAMOTO E-mail: hsakamt@tsnr.com From owner-freebsd-ports@freebsd.org Tue Jan 17 08:00:31 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA7EFCB4AA2 for ; Tue, 17 Jan 2017 08:00:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 973A811FC for ; Tue, 17 Jan 2017 08:00:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9685FCB4AA1; Tue, 17 Jan 2017 08:00:31 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96244CB4AA0 for ; Tue, 17 Jan 2017 08:00:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.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 8979A11FB for ; Tue, 17 Jan 2017 08:00:31 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org ([127.0.1.123]) by portscout.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v0H80VV1017098 for ; Tue, 17 Jan 2017 08:00:31 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v0H80VuP017097; Tue, 17 Jan 2017 08:00:31 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201701170800.v0H80VuP017097@portscout.ysv.freebsd.org> X-Authentication-Warning: portscout.ysv.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, 17 Jan 2017 08:00:31 +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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 08:00:31 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ java/jgrapht | 0.7.3 | 1.0.1 ------------------------------------------------+-----------------+------------ lang/kawa | 2.1 | 2.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 Jan 17 13:48:09 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 491F7CB40BE for ; Tue, 17 Jan 2017 13:48:09 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from BAY004-OMC4S25.hotmail.com (bay004-omc4s25.hotmail.com [65.54.190.227]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D50D1778 for ; Tue, 17 Jan 2017 13:48:09 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from NAM04-CO1-obe.outbound.protection.outlook.com ([65.54.190.199]) by BAY004-OMC4S25.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Tue, 17 Jan 2017 05:48:03 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=outlook.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=VeNMHljVu8/hgVQ7zWlrjJ01ioUqjQt0lTqYyFJqKFk=; b=ZRiZiPkC7fvAlTn7xv+wZ6aklcM7UBX1XGAS0o4qoxVFnSWld/vjIwuPrtnHLlBfaYMhyfpAlLTHj/eslH1JcX5foZEYr7sRP+IzrM+ir2XLz369g1JJ+2pVKlf3SiOz9NFuSBS0DrAwo0LDWLPhgSi5AoFEtiFBZBJl1aQCl16xRGoGYXDWD/mDCmyqaIfy8au4alg/PhWcPEecDdIl9a4vbeZEX43OwRIc1lc56HZkBuJhkBbif4rEe4wYhDqJz+bqAWi2CTMphBNQZGrlXTBopuSrplYtdIr5tbJN0ctrxs4l4Cl5jDkN2udxnMszi60P2/s0HsW6rS3gZpsEVA== Received: from BN3NAM04FT030.eop-NAM04.prod.protection.outlook.com (10.152.92.51) by BN3NAM04HT201.eop-NAM04.prod.protection.outlook.com (10.152.93.57) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.803.8; Tue, 17 Jan 2017 13:48:01 +0000 Received: from CY4PR20MB1397.namprd20.prod.outlook.com (10.152.92.56) by BN3NAM04FT030.mail.protection.outlook.com (10.152.92.164) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.803.8 via Frontend Transport; Tue, 17 Jan 2017 13:48:02 +0000 Received: from CY4PR20MB1397.namprd20.prod.outlook.com ([10.171.167.147]) by CY4PR20MB1397.namprd20.prod.outlook.com ([10.171.167.147]) with mapi id 15.01.0845.014; Tue, 17 Jan 2017 13:48:01 +0000 From: Gerard Seibert To: FreeBSD Ports Subject: Installing Samba on FreeBSD-11 amd64 Thread-Topic: Installing Samba on FreeBSD-11 amd64 Thread-Index: AQHScMhRe4Hrz+TbI060D5RM15+3ug== Date: Tue, 17 Jan 2017 13:48:01 +0000 Message-ID: Reply-To: FreeBSD Ports Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: freebsd.org; dkim=none (message not signed) header.d=none;freebsd.org; dmarc=none action=none header.from=outlook.com; x-incomingtopheadermarker: OriginalChecksum:BB3091AD93FCCD95AF1F25138AAC0989D7FCF6BF192EFD6AC1BB63DE40775728; UpperCasedChecksum:38C3B51E163C4E4B7B85B504191F6405EBDCADA2CBA7F04E3DFF1C396A77C342; SizeAsReceived:7354; Count:35 x-ms-exchange-messagesentrepresentingtype: 1 x-incomingheadercount: 35 x-eopattributedmessage: 0 x-microsoft-exchange-diagnostics: 1; BN3NAM04HT201; 7:cjGqNQ67KnDGVzSu51s7j/61dulxB1PRngdTOuByeIBbWBYl6i+qelo5uGCLfmB6OOzsu6L4cLQCyKLm7aK8lxnkJYky66eS2Ehmytd3fH0IbE0ARfGgau7cvoOxPfZIUjAxUEYmFgaK7xIBIUyXvbnnYm1NeD3xeDoX09+lH/0XwGf1ZluGJ+zMM3sSj2+ceOiGhvsBTVdhFmqCCIb+IYcrVB+s6wHNNbJUfcrND5LiENTW458plugmyp28qHYTlVoV1cQLudPWNTHQ/Z/enxjm5cRsz2yF3Da+T5emxVv/DHn1VjkH/hpWsWTMNu1hJ3ROd2M4WT4HEzsni0niPp7jIBFfXgxCqh8tZn8LpgJEPKd2QZdxtxQWBASM7goVt0pDv9K3e8cC7feEuQgMupnSsiyWsKAQD+uchuc+Bb8+Fhn22+wfORual2tGKNZybBIC+bqQ7w/Q2JDlncl/xQ== x-forefront-antispam-report: EFV:NLI; SFV:NSPM; SFS:(10019020)(98900005); DIR:OUT; SFP:1102; SCL:1; SRVR:BN3NAM04HT201; H:CY4PR20MB1397.namprd20.prod.outlook.com; FPR:; SPF:None; LANG:en; x-ms-office365-filtering-correlation-id: c31ebd0f-d05d-42f1-7c5f-08d43edf73ba x-microsoft-antispam: UriScan:; BCL:0; PCL:0; RULEID:(22001)(1601124038)(5061506344)(5061507293)(1603103113)(1603101340)(1601125047)(1701031023); SRVR:BN3NAM04HT201; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(444111334)(444112120)(432015012)(82015046); SRVR:BN3NAM04HT201; BCL:0; PCL:0; RULEID:; SRVR:BN3NAM04HT201; x-forefront-prvs: 01901B3451 spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" Content-ID: <734248456CE70F428212D5669DA487E7@namprd20.prod.outlook.com> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: outlook.com X-MS-Exchange-CrossTenant-originalarrivaltime: 17 Jan 2017 13:48:01.8483 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: BN3NAM04HT201 X-OriginalArrivalTime: 17 Jan 2017 13:48:03.0274 (UTC) FILETIME=[52D6BAA0:01D270C8] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 13:48:09 -0000 I have been unable to install either samba43 or samba44 on my PC. It continually ends with this error message: 4 errors generated. Waf: Leaving directory `/usr/ports/net/samba43/work/samba-4.3.13/bin' Build failed: -> task failed (err #1): {task: cc dnsrecord.c -> dnsrecord_1.o} File "buildtools/bin/waf", line 76, in Scripting.prepare(t, cwd, VERSION, wafdir) File "/usr/ports/net/samba43/work/samba-4.3.13/third_party/waf/wafadmin/Scriptin= g.py", line 147, in prepare error(str(e)) *** Error code 1 The error message is basically the same for samba44. I need to gain accerss to this computer from my Windows network. I have access via "putty"; however, I would prefer to get samba working. I have tried disabling "ldap" and a few othr knobs, but without success. Is there a working solution? Thanks! --=20 Carmel From owner-freebsd-ports@freebsd.org Tue Jan 17 20:29:02 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BB4FCB5E5D for ; Tue, 17 Jan 2017 20:29:02 +0000 (UTC) (envelope-from ler@FreeBSD.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 3B7061619 for ; Tue, 17 Jan 2017 20:29:02 +0000 (UTC) (envelope-from ler@FreeBSD.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:Sender:Reply-To:Cc:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=//BHLYGIsj3GG3IDybi5JZHSptDPk4V7DUr6JkznMwU=; b=cmTK08gtP5b7A2e0xgxB5CvnLl cf0ir0GLMLlj1FP3z+hUH/45XQkLbFhxge8vWlPdotJRohDQ2Ss41heCtiR/XTGo8I8eZZUaigvhN iTNeVgeETm4GtKMjPI8i2WeQBz/De5TovDV0Bx1TW/6ZpF52bU75LjopHmqhRMtsgvYk=; Received: from thebighonker.lerctr.org ([2001:470:1f0f:3ad:223:7dff:fe9e:6e8a]:45766 helo=webmail.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.88 (FreeBSD)) (envelope-from ) id 1cTaNJ-000Ev9-BF for freebsd-ports@freebsd.org; Tue, 17 Jan 2017 14:29:01 -0600 Received: from proxy.na.alcatel-lucent.com ([135.245.48.73]) by webmail.lerctr.org with HTTP (HTTP/1.1 POST); Tue, 17 Jan 2017 14:29:01 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Date: Tue, 17 Jan 2017 14:29:01 -0600 From: Larry Rosenman To: Freebsd ports Subject: net/boinc-client: make LINUX option a default or Slave port? Message-ID: X-Sender: ler@FreeBSD.org User-Agent: Roundcube Webmail/1.2.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 20:29:02 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 With the imminent demise of astro/boinc-setiathome-v7, I'm wondering if the community would object to net/boinc-client having its LINUX set as a default for the package. Or a slave port with that option set. I'm planning on taking MAINTAINER of net/boinc-client but would like input on the above. Thanks! - -- Larry Rosenman http://people.freebsd.org/~ler Phone: +1 214-642-9640 E-Mail: ler@FreeBSD.org US Mail: 17716 Limpia Crk, Round Rock, TX 78664-7281 -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJYfn6NAAoJEGl8mbGrSKd9RzIH+QGjGjHKwldyKh+0SDre5LGc nAyoyrJb6oreTeHluuQwXi5ir8DhdC2wo3h7KyGbGkwH4vMSeycvjizU0JMadK9t EqaqOzMPCizhtytWVAvLproFSD+fXN4ZhFcBRwp85YPpt7+Q5GMe2POxGJ+2sLJw /I4VIaiZuxtad/hd0qK1evVeYF+YfZg4SI+SzHJRpxSMoGeOsHv+uLsSmRES/gqF Q5re12iNcyBmEpgrP7eseuD2CFLZ2lXs3y4PQy090dFouPkpV3T0B6BzFzc6bT7v xSGT/Jr+BvZyWiXnSVML94XRd/gzL72piMllqY+maPFmoymLBUKLkYz66UQ6dSU= =MZan -----END PGP SIGNATURE----- From owner-freebsd-ports@freebsd.org Tue Jan 17 21:14:18 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0D72CB4D9A for ; Tue, 17 Jan 2017 21:14:18 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from fmailer.gwdg.de (fmailer.gwdg.de [134.76.11.16]) (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 79B0E13C9; Tue, 17 Jan 2017 21:14:18 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from um-excht-a01.um.gwdg.de ([134.76.11.221] helo=email.gwdg.de) by mailer.gwdg.de with esmtp (Exim 4.80) (envelope-from ) id 1cTasN-0006W5-7S; Tue, 17 Jan 2017 22:01:07 +0100 Received: from krabat.raven.hur (79.210.250.118) by email.gwdg.de (134.76.9.210) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 17 Jan 2017 22:01:06 +0100 Subject: Re: net/boinc-client: make LINUX option a default or Slave port? To: Larry Rosenman References: CC: Freebsd ports From: Rainer Hurling Message-ID: <8462f341-a749-b439-a440-18d1e2ff70aa@gwdg.de> Date: Tue, 17 Jan 2017 22:01:02 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Spam-Level: - X-Virus-Scanned: (clean) by clamav X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 21:14:18 -0000 Am 17.01.2017 um 21:29 schrieb Larry Rosenman: > With the imminent demise of astro/boinc-setiathome-v7, I'm wondering if > the > community would object to net/boinc-client having its LINUX set as a > default for the package. Or a slave port with that option set. > > I'm planning on taking MAINTAINER of net/boinc-client but would like > input > on the above. > > Thanks! Thanks for taking this up. It is really appreciated. Excuse my ignorance. But, what are the differences in using native or Linux boinc clients? And is this only of interest for SetiAtHome? Thanks for any answer. Best regards, Rainer Hurling From owner-freebsd-ports@freebsd.org Tue Jan 17 21:16:29 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC2AECB4F81 for ; Tue, 17 Jan 2017 21:16:29 +0000 (UTC) (envelope-from ler@FreeBSD.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 BB48D160A for ; Tue, 17 Jan 2017 21:16:29 +0000 (UTC) (envelope-from ler@FreeBSD.org) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lerctr.org; s=lerami; h=Message-ID:References:In-Reply-To:Subject:Cc:To:From:Date: Content-Transfer-Encoding:Content-Type:MIME-Version:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=xam+dKLPxw3WvyRwOtYUXnw66/hUvmcWzmDxyrvwDxI=; b=c3K+9ZMTByFydS4ojclfKaMJAL jn3YoTo03uSuVbA7sZPZRDRxwGNPS2LrViO+mGXK3G3r4I9bKCXlTdcs0uRlNsUCa2hC0WmLl8vrC V9nhhh0KOhUZGEFiQY83/v6q5k7VrC4HnpTUMWXW2TR3X7rm71iqv7UliYwUkbMUd7s8=; Received: from thebighonker.lerctr.org ([2001:470:1f0f:3ad:223:7dff:fe9e:6e8a]:36466 helo=webmail.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.88 (FreeBSD)) (envelope-from ) id 1cTb7F-000Gcr-0u; Tue, 17 Jan 2017 15:16:29 -0600 Received: from proxy.na.alcatel-lucent.com ([135.245.48.73]) by webmail.lerctr.org with HTTP (HTTP/1.1 POST); Tue, 17 Jan 2017 15:16:28 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Date: Tue, 17 Jan 2017 15:16:28 -0600 From: Larry Rosenman To: Rainer Hurling Cc: Freebsd ports Subject: Re: net/boinc-client: make LINUX option a default or Slave port? In-Reply-To: <8462f341-a749-b439-a440-18d1e2ff70aa@gwdg.de> References: <8462f341-a749-b439-a440-18d1e2ff70aa@gwdg.de> Message-ID: X-Sender: ler@FreeBSD.org User-Agent: Roundcube Webmail/1.2.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 21:16:30 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2017-01-17 15:01, Rainer Hurling wrote: > Am 17.01.2017 um 21:29 schrieb Larry Rosenman: >> With the imminent demise of astro/boinc-setiathome-v7, I'm wondering if >> the >> community would object to net/boinc-client having its LINUX set as a >> default for the package. Or a slave port with that option set. >> >> I'm planning on taking MAINTAINER of net/boinc-client but would like >> input >> on the above. >> >> Thanks! > > Thanks for taking this up. It is really appreciated. > > Excuse my ignorance. But, what are the differences in using native or > Linux boinc clients? And is this only of interest for SetiAtHome? > > Thanks for any answer. > > Best regards, > Rainer Hurling net/boinc-client would still be a native FreeBSD binary. This would allow SETI@home (and other science projects) to send Linux binaries to our FreeBSD boinc-client. The downside is it would bring in a linux-base port by default. - -- Larry Rosenman http://people.freebsd.org/~ler Phone: +1 214-642-9640 E-Mail: ler@FreeBSD.org US Mail: 17716 Limpia Crk, Round Rock, TX 78664-7281 -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJYfomsAAoJEGl8mbGrSKd9gFsH/Al/AN8Ym46dWln88LaqBenC 8LClG4BpjvSs0ev3fI6uHKFShn+BPmQhuCMzsMakxCBqir2cV/FlV2EvENhLgQ8p 56dHgFRMnXDpSneyScfUcs4RDTIZmUnp/6cku3Us/qh/0mChA9rY73Yiqyh3C9UB q5a068XT6So3nzos/DcyQ3In4y8OYs4H9DmDzHt2yDaRvwITp1nQmycAjgBY3gbS B+UiA23PjjT700fnAjLQNnu/9T7fRUgl7t46th4i1hQbxWW6MlMhCHfgBz/cWzsA 5iKprdcUz7bHB6Ul/2wewsx0cSpRUiprK4mSRD05Rb6OX/0U1a6aJabcTA7y+7o= =IFkG -----END PGP SIGNATURE----- From owner-freebsd-ports@freebsd.org Tue Jan 17 22:31:37 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1973ECB4E21 for ; Tue, 17 Jan 2017 22:31:37 +0000 (UTC) (envelope-from manfredantar@yahoo.com) Received: from pozo.com (pozo.com [50.197.129.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "pozo.com", Issuer "pozo.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 02FD61DD3; Tue, 17 Jan 2017 22:31:36 +0000 (UTC) (envelope-from manfredantar@yahoo.com) Received: from octo.pozo.com (octo.pozo.com [192.168.0.2]) (authenticated bits=128) by pozo.com (8.15.2/8.15.2) with ESMTPA id v0HMVQPo000495; Tue, 17 Jan 2017 14:31:27 -0800 (PST) (envelope-from manfredantar@yahoo.com) From: Manfred Antar Message-Id: <5CC44640-544B-4997-97A8-725BC00CC85F@yahoo.com> Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: net/boinc-client: make LINUX option a default or Slave port? Date: Tue, 17 Jan 2017 14:31:26 -0800 In-Reply-To: Cc: rhurlin@gwdg.de To: Larry Rosenman , FreeBSD Ports ML References: X-Mailer: Apple Mail (2.3259) X-Spam-Status: No, score=-0.4 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FORGED_YAHOO_RCVD,FREEMAIL_FROM,HTML_MESSAGE, NML_ADSP_CUSTOM_MED,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.1, No X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on pozo.com X-pozocom-MailScanner-Information: Please contact the ISP for more information X-pozocom-MailScanner-ID: v0HMVQPo000495 X-pozocom-MailScanner: Found to be clean X-pozocom-MailScanner-From: manfredantar@yahoo.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 22:31:37 -0000 > On Jan 17, 2017, at 12:29 PM, Larry Rosenman > wrote: >=20 > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 >=20 > With the imminent demise of astro/boinc-setiathome-v7, I'm wondering if > the > community would object to net/boinc-client having its LINUX set as a > default for the package. Or a slave port with that option set. >=20 > I'm planning on taking MAINTAINER of net/boinc-client but would like > input > on the above. >=20 > Thanks! I=E2=80=99ve been running a freebsd compiled seti version 8 here for months. I think someone needs to update the port. i put the precomiled binaries on my website at : www.pozo.com/seti this is for current amd64 seti-pkg.tar.bz2 =E2=80=94 precompiled setiathome.tar.bz =E2=80=94 the source trees for boinc and seti current = =E2=80=94 I will update this in about 20 minutes so wait a bit before downl= oading I=E2=80=99ve been using this since last summer and works fine. a linux port= would be nice but From owner-freebsd-ports@freebsd.org Tue Jan 17 22:41:58 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE87BCB54E0 for ; Tue, 17 Jan 2017 22:41:58 +0000 (UTC) (envelope-from ler@FreeBSD.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 CB44416DB for ; Tue, 17 Jan 2017 22:41:58 +0000 (UTC) (envelope-from ler@FreeBSD.org) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lerctr.org; s=lerami; h=Message-ID:References:In-Reply-To:Subject:Cc:To:From:Date: Content-Type:MIME-Version:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=r7u5SJmFXaZS65+bahvG41+3gYrBZmCst8la3Flhl7w=; b=bsZ4YHz2xVQokWNiewpMaJPZsO c3d3P+CPh+c/q7KcYqEG7f4apdT6S1I+6s9cAxTYTK3IBFyBev1kX6Y78ZiQ0Ga9mHhyKeSwhvzZG t/vQ+4vJKk8NXjpR5G7IhcIYhY8xCZKjQGPH2B9qAjfdJgrO9a2apjCGfqmSaE4biWa0=; Received: from thebighonker.lerctr.org ([2001:470:1f0f:3ad:223:7dff:fe9e:6e8a]:20931 helo=webmail.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.88 (FreeBSD)) (envelope-from ) id 1cTcRw-000JWJ-1W; Tue, 17 Jan 2017 16:41:56 -0600 Received: from 74-196-221-212.pfvlcmta01.res.dyn.suddenlink.net ([74.196.221.212]) by webmail.lerctr.org with HTTP (HTTP/1.1 POST); Tue, 17 Jan 2017 16:41:55 -0600 MIME-Version: 1.0 Date: Tue, 17 Jan 2017 16:41:55 -0600 From: Larry Rosenman To: Manfred Antar Cc: FreeBSD Ports ML , rhurlin@gwdg.de Subject: Re: net/boinc-client: make LINUX option a default or Slave port? In-Reply-To: <5CC44640-544B-4997-97A8-725BC00CC85F@yahoo.com> References: <5CC44640-544B-4997-97A8-725BC00CC85F@yahoo.com> Message-ID: <365a46d61b0ae80a2303e77abd2aae06@FreeBSD.org> X-Sender: ler@FreeBSD.org User-Agent: Roundcube Webmail/1.2.3 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 22:41:59 -0000 On 2017-01-17 16:31, Manfred Antar wrote: >> On Jan 17, 2017, at 12:29 PM, Larry Rosenman wrote: >> >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> With the imminent demise of astro/boinc-setiathome-v7, I'm wondering if >> the >> community would object to net/boinc-client having its LINUX set as a >> default for the package. Or a slave port with that option set. >> >> I'm planning on taking MAINTAINER of net/boinc-client but would like >> input >> on the above. >> >> Thanks! > > I've been running a freebsd compiled seti version 8 here for months. > I think someone needs to update the port. > > i put the precomiled binaries on my website at : > > www.pozo.com/seti [1] > > this is for current amd64 > seti-pkg.tar.bz2 -- precompiled > > setiathome.tar.bz -- the source trees for boinc and seti current -- I will update this in about 20 minutes so wait a bit before downloading > > I've been using this since last summer and works fine. a linux port would be nice but How did you compile the sources? (Can you send me in private mail the Makefile, etc?) Thanks! -- Larry Rosenman http://people.freebsd.org/~ler Phone: +1 214-642-9640 E-Mail: ler@FreeBSD.org US Mail: 17716 Limpia Crk, Round Rock, TX 78664-7281 Links: ------ [1] http://www.pozo.com/seti From owner-freebsd-ports@freebsd.org Tue Jan 17 23:38:50 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16B70CB5D12 for ; Tue, 17 Jan 2017 23:38:50 +0000 (UTC) (envelope-from contato@ferplam.com.br) Received: from mx0.ferplam.com.br (mx0.ferplam.com.br [78.41.202.23]) by mx1.freebsd.org (Postfix) with ESMTP id 9656113DB for ; Tue, 17 Jan 2017 23:38:47 +0000 (UTC) (envelope-from contato@ferplam.com.br) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=default; d=ferplam.com.br; h=From:To:Subject:Date:MIME-Version:Message-ID:Reply-To:Content-Type; i=contato@ferplam.com.br; bh=ZonF+msGVgCLh1o+K2jaUUDAl0g=; b=kfTWigLKlT18dASiHK1tJnWtZbiajy8u1S66WHslnjNCyXpOBHPns0t03s0GRPnQJDGOYsVHBq4N JQXquxNrTqgp77KkKlvELVDN45jeI+P+s4fQMhF/n3AuwcGHjsdNdh/LIsJz0MLGW6Q5tar9YsSq ERGsV52EQJ/kdIIF4yI= From: "BLOG SPINA" To: freebsd-ports@freebsd.org Subject: Dicas de Saude, Alimentacao, Beleza e Higiene Date: Tue, 17 Jan 2017 15:36:54 -0800 MIME-Version: 1.0 Message-ID: <14845881503b61b22ffc41e18c56282b7dcd23c818_@ferplam.com.br> Reply-To: contato@spinaconsultoria.com.br Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 23:38:50 -0000 O Blog Spina d=C3=A1 dicas de sa=C3=BAde, alimenta=C3=A7=C3=A3o, beleza e= higiene. Visite o nosso Blog. http://bit.ly/blog-spi =E2=86=92 13 Problemas causados por n=C3=A3o beber =C3=A1gua suficiente =E2=86=92 Dezembro Laranja: C=C3=A2ncer de Pele =E2=86=92 A vida sem =C3=A1gua =E2=86=92 Refluxo Gastroesof=C3=A1gico =E2=86=92 Dezembro Laranja: Cuidados com a pele negra =E2=86=92 Moda: Dicas e Tend=C3=AAncias 2017 =E2=86=92 Alimentos alerg=C3=AAnicos come=C3=A7am a ser rotulados =E2=86=92 Dezembro Laranja: =E2=86=92 Alergia nas axilas =E2=86=92 Lim=C3=A3o, nosso super her=C3=B3i =E2=86=92 Manchas de Desodorante =E2=86=92 NOVEMBRO AZUL: C=C3=A2ncer de Pr=C3=B3stata =E2=86=92 NOVEMBRO AZUL: Doen=C3=A7as da Pr=C3=B3stata =E2=86=92 NOVEMBRO AZUL: Muito prazer, Pr=C3=B3stata!!! =E2=86=92=C2=A0H. Pylori: Voc=C3=AA pode ter e n=C3=A3o sabe =E2=86=92=C2=A0Cabeleireiro ensina como manter os fios brilhantes e livres da= oleosidade =E2=86=92=C2=A0Dicas para preparar a sua pele para o ver=C3=A3o =E2=86=92=C2=A0Como guardar edredons e cobertores ap=C3=B3s o inverno =E2=86=92 Lancamento do livro: Antes que Eu me Esque=C3=A7a =E2=86=92 O que o seu coco diz sobre voc=C3=AA? =E2=86=92 Embriaguez Patol=C3=B3gica =E2=86=92 GOTA =E2=86=92 =C3=81gua: Fonte de vida =E2=86=92 Botox: O dentista pode fazer!!!!! =E2=86=92 Perigo: Uso cont=C3=ADnuo do descongestionante nasal traz consequ= =C3=AAncias =E2=86=92 Rem=C3=A9dios Caseiros: Semente de Sucupira =E2=86=92 OUTUBRO ROSA: C=C3=A2ncer de mama =E2=86=92 OUTUBRO ROSA: 14 Mitos e verdades sobre a amamenta=C3=A7=C3=A3o =E2=86=92 OUTUBRO ROSA: Aleitamento materno =E2=86=92 Cuidados com o cabelo em cada idade =E2=86=92 FERMENTA=C3=87=C3=83O NATURAL: Quais as vantagens ? =E2=86=92 Respirar MATA!!!!!! =E2=86=92 Dicas para ter um bom rendimento no ENEM =E2=86=92 CUPINS saiba mais. =E2=86=92 Natura comemora dez anos sem testes em animais. =E2=86=92 Lan=C3=A7amentos NATURA EKOS. =E2=86=92 PLACENTOFAGIA: j=C3=A1 ouviu falar? =E2=86=92 Semana do cliente Natura. =E2=86=92 Voc=C3=AA escova a l=C3=ADngua? O Hipop=C3=B3tamo sim. =E2=86=92 Doutores c=C3=A3es. =E2=86=92 O t=C3=AAnis nosso de cada dia. =E2=86=92 Os Shakes da Herbalife podem sim ajudar a controlar seu peso. =E2=86=92 Exerc=C3=ADcios Faciais para Eliminar as Rugas Naturalmente. =E2=86=92 ALUM=C3=8DNIO =E2=80=93 Vil=C3=A3o ou Mocinho? =E2=86=92 DENGUE, CHIKUNGUNYA E ZIKA. =E2=86=92 Como lidar com as consequ=C3=AAncias de uma cat=C3=A1strofe? =E2=86=92 Meu Filho =C3=A9 Autista? Saiba identificar sintomas de autismo. =E2=86=92 Saiba como os ativos da biodiversidade brasileira ajudam na beleza= da pele. =E2=86=92 Alimentos para ajudar o crescimento das crian=C3=A7as. =E2=86=92 5 Motivos para hidratar a pele no inverno. =E2=86=92 Formigamento nos p=C3=A9s? =E2=86=92 Pokemon Go: Um novo desafio para os pais e seus filhos. =E2=86=92 LEUCEMIA: Um pesadelo dentro da minha fam=C3=ADlia que mudou a= minha vida. =E2=86=92 Top 10 da alimenta=C3=A7=C3=A3o dos homens (e das mulheres tamb=C3= =A9m). =E2=86=92 Como tirar manchas de ferrugem. =E2=86=92 Como usar o cupom desconto da REDE NATURA. =E2=86=92 Pokemon Go: Um novo desafio. =E2=86=92 LEUCEMIA: Um pesadelo dentro da minha fam=C3=ADlia que mudou a= minha vida. =E2=86=92 Top 10 da alimenta=C3=A7=C3=A3o dos homens (e das mulheres tamb=C3= =A9m). =E2=86=92 Como tirar manchas de ferrugem. =E2=86=92 Como usar o cupom desconto da REDE NATURA. Compre on-line com os nossos Parceiros!!! http://bit.ly/blog-spi Natura Herbalife Pandora Loccitane Botic=C3=A1rio The beauty box Sephora quem disse berenice? Eudora Saraiva Drogaria S=C3=A3o Paulo Plano sa=C3=BAde Empresarial "1=C2=AA mensalidade GR=C3=81TIS" From owner-freebsd-ports@freebsd.org Wed Jan 18 07:24:24 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93399CB505F for ; Wed, 18 Jan 2017 07:24:24 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 7D9261571 for ; Wed, 18 Jan 2017 07:24:24 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 77EB5CB505D; Wed, 18 Jan 2017 07:24:24 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 771B7CB505B; Wed, 18 Jan 2017 07:24:24 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 48605156D; Wed, 18 Jan 2017 07:24:24 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0I7OB2g035486 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Tue, 17 Jan 2017 23:24:14 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: recent change to vim defaults? To: ohauer , Benjamin Kaduk References: Cc: "ports@FreeBSD.org" , "current@freebsd.org" From: Julian Elischer Message-ID: Date: Wed, 18 Jan 2017 15:24:05 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 07:24:24 -0000 On 17/01/2017 12:07 AM, ohauer wrote: > I suspect you mean the /usr/local/etc/vim/vimrc and gvimrc files. > That was the first place I've tried to overwrite it, but without > luck (even with set mouse=) but it works in ~/.vimrc what to put IN the file? > > -- > olli > -- > send with broken GMX mailer client, sorry for tofu and html scrap > On 15/01/2017, 22:48 Benjamin Kaduk wrote: > > On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: > > I noticed that suddenly vim is grabbing mouse movements, which > makes > > life really hard. > > > > Was there a specific revision that brought in this change, and > can it > > be removed? > > I remember seeing something go by during an upgrade somewhat > recently > about there now being a defaults file that gets used when a user > does > not specify a .vimrc. Unfortunately, I don't remember whether I saw > that notice on a FreeBSD machine or a Debian one, and haven't > been able > to find the notice I remember through searching some likely places. > > Just to check: do you have a .vimrc file in place already? > not yet. when I work out what to put into it I will make it. > > -Ben > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-ports@freebsd.org Wed Jan 18 08:20:10 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48E0ACB4981 for ; Wed, 18 Jan 2017 08:20:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 325D117B4 for ; Wed, 18 Jan 2017 08:20:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 31C63CB497E; Wed, 18 Jan 2017 08:20:10 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31772CB497D for ; Wed, 18 Jan 2017 08:20:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.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 2465517B2 for ; Wed, 18 Jan 2017 08:20:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org ([127.0.1.123]) by portscout.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v0I8KAns095745 for ; Wed, 18 Jan 2017 08:20:10 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v0I8KAkL095744; Wed, 18 Jan 2017 08:20:10 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201701180820.v0I8KAkL095744@portscout.ysv.freebsd.org> X-Authentication-Warning: portscout.ysv.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: Wed, 18 Jan 2017 08:20:10 +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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 08:20:10 -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 ------------------------------------------------+-----------------+------------ lang/js_of_ocaml | 2.5 | 2.8.4 ------------------------------------------------+-----------------+------------ multimedia/obs-studio | 17.0.0 | 17.0.1 ------------------------------------------------+-----------------+------------ net/abills | 0.59 | 0.75 ------------------------------------------------+-----------------+------------ 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 Wed Jan 18 09:11:16 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 808B0CB5576 for ; Wed, 18 Jan 2017 09:11:16 +0000 (UTC) (envelope-from rs@trust64.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6754417DB for ; Wed, 18 Jan 2017 09:11:16 +0000 (UTC) (envelope-from rs@trust64.com) Received: by mailman.ysv.freebsd.org (Postfix) id 66A1DCB5574; Wed, 18 Jan 2017 09:11:16 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 661D0CB5573; Wed, 18 Jan 2017 09:11:16 +0000 (UTC) (envelope-from rs@trust64.com) Received: from t64ammx01.trust64.com (t64ammx01.trust64.com [54.93.84.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 148C917D9; Wed, 18 Jan 2017 09:11:15 +0000 (UTC) (envelope-from rs@trust64.com) Received: from [10.234.12.76] (unknown [31.4.228.129]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by t64ammx01.trust64.com (Postfix) with ESMTPSA id 1E120B05DF; Wed, 18 Jan 2017 10:25:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=trust64.com; s=20150428; t=1484731505; bh=f3tpMHJJZyNWAw7IDho/K9TCLhB3pK416IEntEkMxGY=; h=In-Reply-To:References:Subject:From:Date:To:CC:From; b=iw82qGcOvhC50XW8xIUbD81NMk4Jj81ObajC/BAkuzKuHFwJUrkFEnegq1k6lAMUa 5T0hTK1WlrZqGOql28ysbVrE6+dhNsygx6M6KekzHplsdH5MjZBK8ABphu26DEwyyn XM0R4Z0H+gK0j6G4ZK71IQvlicbKek06paWXfG+g= In-Reply-To: References: X-Referenced-Uid: 10217 Thread-Topic: Re: recent change to vim defaults? User-Agent: Type for Android MIME-Version: 1.0 Subject: Re: recent change to vim defaults? From: Raimund Sacherer Date: Wed, 18 Jan 2017 10:03:25 +0100 To: Julian Elischer CC: ohauer ,Benjamin Kaduk , "ports@FreeBSD.org" , "current@freebsd.org" Message-ID: <41760da4-a348-4063-8fec-14cf88c0ed05@typeapp.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 09:11:16 -0000 I have to put mouse=v to get the behavior I am used to. Best⁣ Sent from TypeApp ​ On Jan 18, 2017, 08:46, at 08:46, Julian Elischer wrote: >On 17/01/2017 12:07 AM, ohauer wrote: >> I suspect you mean the /usr/local/etc/vim/vimrc and gvimrc files. >> That was the first place I've tried to overwrite it, but without >> luck (even with set mouse=) but it works in ~/.vimrc > >what to put IN the file? >> >> -- >> olli >> -- >> send with broken GMX mailer client, sorry for tofu and html scrap >> On 15/01/2017, 22:48 Benjamin Kaduk wrote: >> >> On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: >> > I noticed that suddenly vim is grabbing mouse movements, which >> makes >> > life really hard. >> > >> > Was there a specific revision that brought in this change, and >> can it >> > be removed? >> >> I remember seeing something go by during an upgrade somewhat >> recently >> about there now being a defaults file that gets used when a user >> does >> not specify a .vimrc. Unfortunately, I don't remember whether I >saw >> that notice on a FreeBSD machine or a Debian one, and haven't >> been able >> to find the notice I remember through searching some likely >places. >> >> Just to check: do you have a .vimrc file in place already? >> >not yet. >when I work out what to put into it I will make it. > >> >> -Ben >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> https://lists.freebsd.org/mailman/listinfo/freebsd-current >> To unsubscribe, send any mail to >> "freebsd-current-unsubscribe@freebsd.org" >> > >_______________________________________________ >freebsd-ports@freebsd.org mailing list >https://lists.freebsd.org/mailman/listinfo/freebsd-ports >To unsubscribe, send any mail to >"freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@freebsd.org Wed Jan 18 15:57:10 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D810CB6366 for ; Wed, 18 Jan 2017 15:57:10 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-lf0-x232.google.com (mail-lf0-x232.google.com [IPv6:2a00:1450:4010:c07::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 EEB1415E0 for ; Wed, 18 Jan 2017 15:57:09 +0000 (UTC) (envelope-from tingox@gmail.com) Received: by mail-lf0-x232.google.com with SMTP id n124so15384396lfd.2 for ; Wed, 18 Jan 2017 07:57:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=dZc7mimqeJrDU6bKQKYGtAv3ssSG0MPm8uCZviBLCQw=; b=dFrI81m9bBgGTAq6gO3crprkTNURw8p7C4w7z6RJa8ST0yWzfjJHeJ+dXB34g43bIl 0HWdac0VhAIJCPhrNTS6pXmehXR3orU3ky9HNuYeMj1EhAmn+ivkB7Kj89Czsq2qaSIm 6+FEWG2jFpcshlkwEpV1n75XOpumZJ8pnYfGRSYzFqiqVl9B9II8pPsl9Dsk8pGHf5Yw KggugoSzLucu3o1+chRl5ONlBTAh9FnOV9WaNnSr01T9R1VJldpjO/mvkXNfE/yd5FPD 46ffQOAZcD/hZbJU9ktGlKUzssunK+QZ+WQ/Pse8KnmkUBQ1pop03ZMSaHnK4qk/tWEg /tNA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=dZc7mimqeJrDU6bKQKYGtAv3ssSG0MPm8uCZviBLCQw=; b=qyK7iN4Rnk9TD+ZkDjhnQHmJT8Hro/R8NVTbnST6EqNA3T7lfJCSS3NRd1qi/s3tEz EH7R135SMGTZ+lGhTKye9XkeG1HIHVEZwWgS6AqHWX+oBmsDuVDpWeSebrfhbVAv5rjL W49G0URl7NkAeDEd4NbVLslqPFr7omaRevxc1skghvG3otLZrOvIujxVjInKVUzDLVBg Iq6fbKdHF+vE4TbOsgeZmX1iG6e6Z2S8dMvOvuKAc1bq3PnH/XJtk8dvSsUn0bHajuzS 3o/AMeWBq9bYYJLutF6f8Je4khF2TxTr7NKcI4+YVI1gUm8qDflV6H7KQVw9PfSRZpTy 9Afg== X-Gm-Message-State: AIkVDXISHt/XjhMXQcpBTh/P9bqIMDjp03iYXKFyqGeTpIxEMw5tZv7NBgsNRNT/MUWHnNgd7aATfz5St7Qo3Q== X-Received: by 10.25.76.196 with SMTP id z187mr1554439lfa.60.1484755027034; Wed, 18 Jan 2017 07:57:07 -0800 (PST) MIME-Version: 1.0 Received: by 10.25.141.140 with HTTP; Wed, 18 Jan 2017 07:57:06 -0800 (PST) In-Reply-To: <365a46d61b0ae80a2303e77abd2aae06@FreeBSD.org> References: <5CC44640-544B-4997-97A8-725BC00CC85F@yahoo.com> <365a46d61b0ae80a2303e77abd2aae06@FreeBSD.org> From: Torfinn Ingolfsen Date: Wed, 18 Jan 2017 16:57:06 +0100 Message-ID: Subject: Re: net/boinc-client: make LINUX option a default or Slave port? To: FreeBSD Ports ML Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 15:57:10 -0000 On Tue, Jan 17, 2017 at 11:41 PM, Larry Rosenman wrote: > On 2017-01-17 16:31, Manfred Antar wrote: > >> >> I've been running a freebsd compiled seti version 8 here for months. >> I think someone needs to update the port. >> >> i put the precomiled binaries on my website at : >> >> www.pozo.com/seti [1] >> >> this is for current amd64 >> seti-pkg.tar.bz2 -- precompiled >> >> setiathome.tar.bz -- the source trees for boinc and seti current -- I will update this in about 20 minutes so wait a bit before downloading >> >> I've been using this since last summer and works fine. a linux port would be nice but > > How did you compile the sources? (Can you send me in private mail the > Makefile, etc?) FWIW, the sources that Manfred put up compiled with the instructions in the INSTALL file, except that you have to use gmake instead of make. So $ MAKE=/usr/local/bin/gmake ./_autosetup $ ./configure --disable-server $ gmake I just did that on FreeBSD 10.3-stable about a week and a half ago. tingo@kg-core1$ uname -a FreeBSD kg-core1.kg4.no 10.3-STABLE FreeBSD 10.3-STABLE #0 r310083: Wed Dec 14 21:00:13 CET 2016 root@kg-core1.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 (FYI, I also tested the compile on machine running FreeBSD 8.3 from June 2013 but that compile failed) I haven't done anything with the compiled binaries yet (had to upgrade my BOINC machine first) but I expect that they will work well. Also, I would prefer that the boinc port did NOT depend on / bring in linux_base, but if it does I can live with it. -- Regards, Torfinn Ingolfsen From owner-freebsd-ports@freebsd.org Wed Jan 18 16:05:48 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1F61CB6674 for ; Wed, 18 Jan 2017 16:05:48 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from tatiana.utanet.at (tatiana.utanet.at [IPv6:2001:938:1337:25::25:46]) (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 933771AEB for ; Wed, 18 Jan 2017 16:05:48 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=oJghUdHGdIiMDAfHNJvJZx1xuqqaf994yGA1emdmmmQ=; b=G6tLot1O+NerPH0zlVJCqkMzYnPQaUwJxhAMcDk6aKQBowF92vb3NpJA/eCRPohVw1x/xY714Vtux15UlBI+7ZPiMNSXe1/Tf2KacsxzJB9P8YisI8Wrpw559ih5YI5VmXkXsQkefDIslkfCBx7JQlkCm/6uFS+nSVVKsvP7auM=; Received: from plenty.xoc.tele2net.at ([213.90.36.8]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cTsk6-0001Cu-Df for freebsd-ports@freebsd.org; Wed, 18 Jan 2017 17:05:46 +0100 Received: from 91-115-93-56.adsl.highway.telekom.at ([91.115.93.56] helo=[10.0.0.93]) by plenty.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cTsk6-0005Sy-Bv for freebsd-ports@freebsd.org; Wed, 18 Jan 2017 17:05:46 +0100 To: freebsd-ports@freebsd.org References: <20170112055446.Horde.q9fVphfwLB3qZNXfNLHYrA1@www.vfemail.net> Subject: Re: Any plans to update Mythtv port to 0.28? From: Walter Schwarzenfeld Message-ID: <4a90874e-1275-81b3-4e05-4acc67c2ea23@utanet.at> Date: Wed, 18 Jan 2017 17:05:37 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170112055446.Horde.q9fVphfwLB3qZNXfNLHYrA1@www.vfemail.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 16:05:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216237 please, try this update patch (and tell me if something not working as expected). From owner-freebsd-ports@freebsd.org Wed Jan 18 16:10:59 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EDBBCB67D9; Wed, 18 Jan 2017 16:10:59 +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 0C5F01D91; Wed, 18 Jan 2017 16:10:59 +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:References:In-Reply-To:Subject:Cc:To:From:Date: Content-Transfer-Encoding:Content-Type:MIME-Version:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=5ZgURYX4URv8FsQ0KAD78heszlUv3XzoxJBuHgfzsKk=; b=MIV/D/4EC9EgxOMViTqI173/3u uTwZApAJtOkz0WEyHy2KxA6H6QOzie18uN//4dp/Y5jq9GrBp1TbSHb95Haj3hefdLjgnXdFPtGLx 1jfsd2JHyCiH0GxZCoPHxQ/13vRnwD59dmN444DUJvLpIpc/IPgWs62FSL+Hn3s2ynuM=; Received: from thebighonker.lerctr.org ([2001:470:1f0f:3ad:223:7dff:fe9e:6e8a]:28194 helo=webmail.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.88 (FreeBSD)) (envelope-from ) id 1cTsp8-0001Oa-32; Wed, 18 Jan 2017 10:10:58 -0600 Received: from proxy.na.alcatel-lucent.com ([135.245.48.73]) by webmail.lerctr.org with HTTP (HTTP/1.1 POST); Wed, 18 Jan 2017 10:10:58 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 18 Jan 2017 10:10:58 -0600 From: Larry Rosenman To: Torfinn Ingolfsen Cc: FreeBSD Ports ML , owner-freebsd-ports@freebsd.org Subject: Re: net/boinc-client: make LINUX option a default or Slave port? In-Reply-To: References: <5CC44640-544B-4997-97A8-725BC00CC85F@yahoo.com> <365a46d61b0ae80a2303e77abd2aae06@FreeBSD.org> Message-ID: <6a4f3cca3061f7465eb556292822621b@lerctr.org> X-Sender: ler@lerctr.org User-Agent: Roundcube Webmail/1.2.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 16:10:59 -0000 On 2017-01-18 09:57, Torfinn Ingolfsen wrote: > On Tue, Jan 17, 2017 at 11:41 PM, Larry Rosenman > wrote: >> On 2017-01-17 16:31, Manfred Antar wrote: >> >>> >>> I've been running a freebsd compiled seti version 8 here for months. >>> I think someone needs to update the port. >>> >>> i put the precomiled binaries on my website at : >>> >>> www.pozo.com/seti [1] >>> >>> this is for current amd64 >>> seti-pkg.tar.bz2 -- precompiled >>> >>> setiathome.tar.bz -- the source trees for boinc and seti current -- >>> I will update this in about 20 minutes so wait a bit before >>> downloading >>> >>> I've been using this since last summer and works fine. a linux port >>> would be nice but >> >> How did you compile the sources? (Can you send me in private mail the >> Makefile, etc?) > > FWIW, the sources that Manfred put up compiled with the instructions > in the INSTALL file, except that you have to use gmake instead of > make. > So > $ MAKE=/usr/local/bin/gmake ./_autosetup > $ ./configure --disable-server > $ gmake > > I just did that on FreeBSD 10.3-stable about a week and a half ago. > tingo@kg-core1$ uname -a > FreeBSD kg-core1.kg4.no 10.3-STABLE FreeBSD 10.3-STABLE #0 r310083: > Wed Dec 14 21:00:13 CET 2016 > root@kg-core1.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 > > (FYI, I also tested the compile on machine running FreeBSD 8.3 from > June 2013 but that compile failed) > I haven't done anything with the compiled binaries yet (had to upgrade > my BOINC machine first) but I expect that they will work well. > > Also, I would prefer that the boinc port did NOT depend on / bring in > linux_base, but if it does I can live with it. I'm working on making Manfred's sources used in the port, and will *NOT* be flipping the LINUX option. I'll be pushing an update for net/boinc-client soon. -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 214-642-9640 E-Mail: ler@lerctr.org US Mail: 17716 Limpia Crk, Round Rock, TX 78664-7281 From owner-freebsd-ports@freebsd.org Wed Jan 18 17:25:29 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A635CB7000 for ; Wed, 18 Jan 2017 17:25:29 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 788341D38 for ; Wed, 18 Jan 2017 17:25:29 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7295ECB6FFD; Wed, 18 Jan 2017 17:25:29 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E5AACB6FFB; Wed, 18 Jan 2017 17:25:29 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 45C091D36; Wed, 18 Jan 2017 17:25:28 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0IHPOh1038197 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Jan 2017 09:25:27 -0800 (PST) (envelope-from julian@freebsd.org) To: "ports@FreeBSD.org" , freebsd , pkg@freebsd.org From: Julian Elischer Subject: standard settings for ports. Message-ID: Date: Thu, 19 Jan 2017 01:25:18 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 17:25:29 -0000 I know there are some standard setting one can set.. make ports shows 8 but I know there are many more. like what version of perl you want to use throughout your system or whether you want to use openssl from ports or system or what version of python.. or whether to use some version of gcc or ... Is there a list somewhere as to where all these are found? for example setting NO-X11-yes (or someting like that) things I'd like to turn off include DOCS, EXAMPLES, MAN, X11, Also I'd like to specify that I'd like everything to try use python 2.7 and jdk8 can I set the USES stuff from the command line?(no?) pointers appreciated... Julian From owner-freebsd-ports@freebsd.org Wed Jan 18 17:28:31 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3917ECB6162 for ; Wed, 18 Jan 2017 17:28:31 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 1F6371F9D for ; Wed, 18 Jan 2017 17:28:31 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: by mailman.ysv.freebsd.org (Postfix) id 1AFCDCB6160; Wed, 18 Jan 2017 17:28:31 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A620CB615E; Wed, 18 Jan 2017 17:28:31 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from smtp.fagskolen.gjovik.no (smtp.fagskolen.gjovik.no [IPv6:2001:700:1100:1:200:ff:fe00:b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.fagskolen.gjovik.no", Issuer "Fagskolen i Gj??vik" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A3EBF1F9C; Wed, 18 Jan 2017 17:28:30 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from mail.fig.ol.no (localhost [127.0.0.1]) by mail.fig.ol.no (8.15.2/8.15.2) with ESMTPS id v0IHSKqp040029 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 18 Jan 2017 18:28:21 +0100 (CET) (envelope-from trond@fagskolen.gjovik.no) Received: from localhost (trond@localhost) by mail.fig.ol.no (8.15.2/8.15.2/Submit) with ESMTP id v0IHSKvL040026; Wed, 18 Jan 2017 18:28:20 +0100 (CET) (envelope-from trond@fagskolen.gjovik.no) X-Authentication-Warning: mail.fig.ol.no: trond owned process doing -bs Date: Wed, 18 Jan 2017 18:28:20 +0100 (CET) From: =?ISO-8859-1?Q?Trond_Endrest=F8l?= Sender: Trond.Endrestol@fagskolen.gjovik.no To: Julian Elischer cc: "ports@FreeBSD.org" , freebsd , pkg@freebsd.org Subject: Re: standard settings for ports. In-Reply-To: Message-ID: References: User-Agent: Alpine 2.20 (BSF 67 2015-01-07) Organization: Fagskolen Innlandet OpenPGP: url=http://fig.ol.no/~trond/trond.key MIME-Version: 1.0 X-Spam-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mail.fig.ol.no Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 17:28:31 -0000 On Thu, 19 Jan 2017 01:25+0800, Julian Elischer wrote: > pointers appreciated... Try something like this in /etc/make.conf: DEFAULT_VERSIONS=apache=2.4 bdb=6 firebird=2.5 gcc=4.9 ghostscript=9 lua=5.2 mysql=5.7 perl5=5.22 php=5.6 pgsql=9.5 python=2.7 python2=2.7 python3=3.5 ruby=2.2 ssl=openssl tcltk=8.6 -- +-------------------------------+------------------------------------+ | Vennlig hilsen, | Best regards, | | Trond Endrestl, | Trond Endrestl, | | IT-ansvarlig, | System administrator, | | Fagskolen Innlandet, | Gjvik Technical College, Norway, | | tlf. mob. 952 62 567, | Cellular...: +47 952 62 567, | | sentralbord 61 14 54 00. | Switchboard: +47 61 14 54 00. | +-------------------------------+------------------------------------+ From owner-freebsd-ports@freebsd.org Wed Jan 18 17:35:27 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40DA2CB64FA for ; Wed, 18 Jan 2017 17:35:27 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 2BF321713 for ; Wed, 18 Jan 2017 17:35:27 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 26491CB64F8; Wed, 18 Jan 2017 17:35:27 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25774CB64F6; Wed, 18 Jan 2017 17:35:27 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C20D41711; Wed, 18 Jan 2017 17:35:26 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0IHZK4t038250 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Jan 2017 09:35:23 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: recent change to vim defaults? To: Adam Weinberger , Baptiste Daroussin References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.org> Cc: "ports@FreeBSD.org" , "current@freebsd.org" From: Julian Elischer Message-ID: <3008e8e4-2386-2bcb-b779-f8e2125c6f63@freebsd.org> Date: Thu, 19 Jan 2017 01:35:14 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 17:35:27 -0000 On 17/01/2017 1:23 AM, Adam Weinberger wrote: >> On 16 Jan, 2017, at 9:25, Baptiste Daroussin wrote: >> >> On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: >>> I noticed that suddenly vim is grabbing mouse movements, which makes life >>> really hard. >>> >>> Was there a specific revision that brought in this change, and can it be >>> removed? >> This change appeared in one of the last patchset of vim 7.4 and was one of the >> "features" of the vim 8.0 release. >> >> I do agree this is just totally painful :( >> >> Best regards, >> Bapt > One of the things that I inherited with the Vim port was the DEFAULT_VIMRC option (which installs /usr/ports/editors/vim/files/vimrc), and I haven't touched it. > > I have moused disabled in all my boxes so I have no idea about bad mouse behaviour in Vim. If there is a bad default that is causing grief, let's just fix it in that default vimrc. > > I'm not really understanding what the unexpected behaviour is so I can't make an intelligent recommendation myself, but I'll go with whatever you folks suggest. > > # Adam I'm in iterm on my mac. I ssh to a freebsd machine I use vim on a file. I used to be able to use the mouse on my mac to copy a few lines into the cut buffer.. slide-shift-click etc.. now suddenly if I try highlight some code in vim to copy it vim drags stuff around, scrolls up and down, deletes stuff and generally makes a mess. if click, instead of starting a copy zone it grabs some of the text. basically it makes hte mouse useless. I can;t copy and paste from a file I'm ediitng. I end up having to exit vim and do it in vi. > > From owner-freebsd-ports@freebsd.org Wed Jan 18 17:37:36 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0BD1CB669E for ; Wed, 18 Jan 2017 17:37:36 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id DD24E1A15 for ; Wed, 18 Jan 2017 17:37:36 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mailman.ysv.freebsd.org (Postfix) id DC71DCB669D; Wed, 18 Jan 2017 17:37:36 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC01FCB669A; Wed, 18 Jan 2017 17:37:36 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from anoxia.adamw.org (anoxia.adamw.org [104.225.8.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "anoxia.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 018B91A13; Wed, 18 Jan 2017 17:37:35 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by anoxia.adamw.org (OpenSMTPD) with ESMTPSA id 1a76c3bb TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Wed, 18 Jan 2017 10:37:34 -0700 (MST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: recent change to vim defaults? From: Adam Weinberger In-Reply-To: <3008e8e4-2386-2bcb-b779-f8e2125c6f63@freebsd.org> Date: Wed, 18 Jan 2017 10:37:32 -0700 Cc: Baptiste Daroussin , "ports@FreeBSD.org" , "current@freebsd.org" Content-Transfer-Encoding: quoted-printable Message-Id: <37A99792-9E8E-4505-AA63-5E619D20DF36@adamw.org> References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.org> <3008e8e4-2386-2bcb-b779-f8e2125c6f63@freebsd.org> To: Julian Elischer X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 17:37:37 -0000 > On 18 Jan, 2017, at 10:35, Julian Elischer wrote: >=20 > On 17/01/2017 1:23 AM, Adam Weinberger wrote: >>> On 16 Jan, 2017, at 9:25, Baptiste Daroussin = wrote: >>>=20 >>> On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: >>>> I noticed that suddenly vim is grabbing mouse movements, which = makes life >>>> really hard. >>>>=20 >>>> Was there a specific revision that brought in this change, and can = it be >>>> removed? >>> This change appeared in one of the last patchset of vim 7.4 and was = one of the >>> "features" of the vim 8.0 release. >>>=20 >>> I do agree this is just totally painful :( >>>=20 >>> Best regards, >>> Bapt >> One of the things that I inherited with the Vim port was the = DEFAULT_VIMRC option (which installs = /usr/ports/editors/vim/files/vimrc), and I haven't touched it. >>=20 >> I have moused disabled in all my boxes so I have no idea about bad = mouse behaviour in Vim. If there is a bad default that is causing grief, = let's just fix it in that default vimrc. >>=20 >> I'm not really understanding what the unexpected behaviour is so I = can't make an intelligent recommendation myself, but I'll go with = whatever you folks suggest. >>=20 >> # Adam > I'm in iterm on my mac. > I ssh to a freebsd machine > I use vim on a file. > I used to be able to use the mouse on my mac to copy a few lines into = the cut buffer.. slide-shift-click etc.. > now suddenly if I try highlight some code in vim to copy it vim drags = stuff around, scrolls up and down, deletes stuff and generally makes a = mess. > if click, instead of starting a copy zone it grabs some of the text. >=20 > basically it makes hte mouse useless. > I can;t copy and paste from a file I'm ediitng. I end up having to = exit vim and do it in vi. There have been a number of recommendations in this thread for you, = Julian, including "set mouse=3Da" and "set mouse=3Dv". Test some of them = out and let me know what works for you. # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Wed Jan 18 17:49:33 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEFD9CB6C4B for ; Wed, 18 Jan 2017 17:49:33 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A4ED712DA for ; Wed, 18 Jan 2017 17:49:33 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 9EA89CB6C49; Wed, 18 Jan 2017 17:49:33 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E354CB6C46; Wed, 18 Jan 2017 17:49:33 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com [IPv6:2a00:1450:400c:c09::244]) (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 3635312CA; Wed, 18 Jan 2017 17:49:33 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x244.google.com with SMTP id r144so5781687wme.0; Wed, 18 Jan 2017 09:49:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=znufPbWaR00QLqBj6BToe/T3T52WJiZC0PsMtOyMvDY=; b=fDgh+rK9Xvdvh0GGaWAZTcSmaJVH4fU//lFZjLIYofzMFgeDlqI99Bx7QRWIdeaFdH 5DGJAil91CFrbWfogXktW754Iz6v8wcSlZ5DbGHDO/PxPEX7CxVaKJFsQOeE5WyhUxBT dZorQkVTzfgshPBT3jUDsfks/L7qlMzme/4y9GNH4pT6+cFYiu4dSs2D+6yX14zPzys2 psPvYodRXL1LASke2zl1/bwOGh13Nj/pfI4DG8pHNZfhw9lFJ/+DG4VwzaBt7Nv6Rusv GOlXvsm06M03RZRJMhcYVAoON8ZGrE0P4bQfcVamIU64spO6pHzFFtIoYxJw4bvxlcBE p5hg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=znufPbWaR00QLqBj6BToe/T3T52WJiZC0PsMtOyMvDY=; b=ftB/AMsyMmmbZSWcOtzy2IUN9LyzpiMU9q51NTz1vKcdXcn6pD5Nn8X9qBFZ2jh24v 6rqqvzbpGjgXz+eeqE3dOhp6zGdLeukneLjVtUKzRqjQO4eTc0x9iib4O+8sthP+CdDg vZcK9V4acp1kjpD8Che2S0avxfdeda6LyWlPTaeY3M6nduGIji9RMkMubSMK7O4vZcPL SKmzL8hOv/ULFBaCvrGsTwNRA9hEEIoQtBaz7oDa51hAsOjmMRal0nUu/WglRsU2N57c ZtIzLD3UjkUFXFovUfKNrnUsflV9NfUZATUzPr0+WhPZkCjqwnmO4LBn6RU0XOl2lgqB shZw== X-Gm-Message-State: AIkVDXLKcie4bJVKH5QHKR6SeAou2dNIqPcZdbRPLb0Lk3k8lVHS5TDNZRtDil4roAHNaw== X-Received: by 10.28.174.208 with SMTP id x199mr4169500wme.107.1484761771307; Wed, 18 Jan 2017 09:49:31 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id 197sm46822064wmy.16.2017.01.18.09.49.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Jan 2017 09:49:30 -0800 (PST) Sender: Baptiste Daroussin Date: Wed, 18 Jan 2017 18:49:29 +0100 From: Baptiste Daroussin To: Adam Weinberger Cc: Julian Elischer , "ports@FreeBSD.org" , "current@freebsd.org" Subject: Re: recent change to vim defaults? Message-ID: <20170118174929.awmn5olimtn476xq@ivaldir.etoilebsd.net> References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.org> <3008e8e4-2386-2bcb-b779-f8e2125c6f63@freebsd.org> <37A99792-9E8E-4505-AA63-5E619D20DF36@adamw.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="l64qh4uuwhu77tow" Content-Disposition: inline In-Reply-To: <37A99792-9E8E-4505-AA63-5E619D20DF36@adamw.org> User-Agent: NeoMutt/20161126 (1.7.1) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 17:49:33 -0000 --l64qh4uuwhu77tow Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 18, 2017 at 10:37:32AM -0700, Adam Weinberger wrote: > > On 18 Jan, 2017, at 10:35, Julian Elischer wrote: > >=20 > > On 17/01/2017 1:23 AM, Adam Weinberger wrote: > >>> On 16 Jan, 2017, at 9:25, Baptiste Daroussin wrote: > >>>=20 > >>> On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: > >>>> I noticed that suddenly vim is grabbing mouse movements, which makes= life > >>>> really hard. > >>>>=20 > >>>> Was there a specific revision that brought in this change, and can i= t be > >>>> removed? > >>> This change appeared in one of the last patchset of vim 7.4 and was o= ne of the > >>> "features" of the vim 8.0 release. > >>>=20 > >>> I do agree this is just totally painful :( > >>>=20 > >>> Best regards, > >>> Bapt > >> One of the things that I inherited with the Vim port was the DEFAULT_V= IMRC option (which installs /usr/ports/editors/vim/files/vimrc), and I have= n't touched it. > >>=20 > >> I have moused disabled in all my boxes so I have no idea about bad mou= se behaviour in Vim. If there is a bad default that is causing grief, let's= just fix it in that default vimrc. > >>=20 > >> I'm not really understanding what the unexpected behaviour is so I can= 't make an intelligent recommendation myself, but I'll go with whatever you= folks suggest. > >>=20 > >> # Adam > > I'm in iterm on my mac. > > I ssh to a freebsd machine > > I use vim on a file. > > I used to be able to use the mouse on my mac to copy a few lines into t= he cut buffer.. slide-shift-click etc.. > > now suddenly if I try highlight some code in vim to copy it vim drags s= tuff around, scrolls up and down, deletes stuff and generally makes a mess. > > if click, instead of starting a copy zone it grabs some of the text. > >=20 > > basically it makes hte mouse useless. > > I can;t copy and paste from a file I'm ediitng. I end up having to exit= vim and do it in vi. >=20 > There have been a number of recommendations in this thread for you, Julia= n, including "set mouse=3Da" and "set mouse=3Dv". Test some of them out and= let me know what works for you. set mouse=3D (with nothing) brings back the original behaviour Bapt --l64qh4uuwhu77tow Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAlh/qqcACgkQY4mL3PG3 PlrD/xAA3QBJdv0FObFKoMc5AHjNjqLciOueSFewpoAUk76AcnnbtGbKdDRdnN5c oSTKXdqaFhBBCgs+0GiLCJqiMxjGwwSevnLQaZhU88hTUHlDT1hCHFwq5rbRBrD4 sfkDEJc+xEYgUjwDURUQnNb7/eAWEg5vi0F6jni3wg8X2QZmRARsFUhfejVvLQft Gi3D0Almir4FQs7L5cRo1+UHfjbZXEMxHbzBaaIa+tZjGBk5E6TM/Sd5aNub30JD znghsbXux35orOLiF5lcrKDyraI/nZCeakDfvpBDJetx9Ler2Xp/N6El3HtBPcP1 EWdzneDgcK0ey8H2NzZtCXqtNeemeSeIP1fgiJzOuSQNBeCR8+r9K8+3VA7Kbfp+ i/lKEab3K0OOJgqSCcGx2kCxuEqLr0KPF8QlWn8W0EFQGXQLwoleXpKsvhonV+U1 Rdyygt/28rUxU3s6mt2GvKzNgvODkLgGwUxdbsWnc2lUpQ12k654xq9lAtYfX6gR ZxRgdW6Q27+xkKz25FKsMWQExT2tgXJX2YdeZDzb8XSef0mJDx/9DAQ7mzHVAXTJ xQ+yDXJ5bH0h0OzuiCGbUe2z1Djdkzr1MsnjNgd+CbrL5JbDFWn9XlJogsl1uLdq bhVRGzkn4uVJ/b4Fl2t0Jt0OsBs3STj1Ov07Be3PfeiQI7pinoQ= =AVB8 -----END PGP SIGNATURE----- --l64qh4uuwhu77tow-- From owner-freebsd-ports@freebsd.org Wed Jan 18 18:01:45 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 712F7CB638C for ; Wed, 18 Jan 2017 18:01:45 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5BB181500 for ; Wed, 18 Jan 2017 18:01:45 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 57702CB6389; Wed, 18 Jan 2017 18:01:45 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56DC6CB6387; Wed, 18 Jan 2017 18:01:45 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 179D814F3; Wed, 18 Jan 2017 18:01:44 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0II1ciF038370 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Jan 2017 10:01:41 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: recent change to vim defaults? To: Raimund Sacherer References: <41760da4-a348-4063-8fec-14cf88c0ed05@typeapp.com> Cc: ohauer , Benjamin Kaduk , "ports@FreeBSD.org" , "current@freebsd.org" From: Julian Elischer Message-ID: <46fb6a60-4fe5-7619-fced-a53ee4edf154@freebsd.org> Date: Thu, 19 Jan 2017 02:01:33 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <41760da4-a348-4063-8fec-14cf88c0ed05@typeapp.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 18:01:45 -0000 On 18/01/2017 5:03 PM, Raimund Sacherer wrote: > I have to put mouse=v to get the behavior I am used to. > > Best doesn't really work for me. vim is still taking mouse events From owner-freebsd-ports@freebsd.org Wed Jan 18 18:27:02 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BD6CCB54DC for ; Wed, 18 Jan 2017 18:27:02 +0000 (UTC) (envelope-from killing@multiplay.co.uk) Received: from mail-lf0-x22c.google.com (mail-lf0-x22c.google.com [IPv6:2a00:1450:4010:c07::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 828971054 for ; Wed, 18 Jan 2017 18:27:01 +0000 (UTC) (envelope-from killing@multiplay.co.uk) Received: by mail-lf0-x22c.google.com with SMTP id z134so19048492lff.3 for ; Wed, 18 Jan 2017 10:27:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=multiplay-co-uk.20150623.gappssmtp.com; s=20150623; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to; bh=m4rkog4Iu7cQrMMDi2uwOIcuKEoUuW9H1w12M5v4zms=; b=dXfJXjC2+3Sn+Qf79J6EIre599WQYiU4okfukcHt22P4HyMP643a7xpYkuBmsELNOv sDjUg/vC3AVHBBhp1Q65hPwJi4OEb7Zy0ePyZb1aT0Tu4aj+UE9jrsJiaupXzMPbjJwK bJ6bMNFdbdR4ORVWiaYqjzweg7UGIqnezQzsLQ0xkusvHyCF6UcjYs7e6ZBdIy0dlFq5 zv4l75KSbyLwSMOroMjttWhXNTDX06J1b938HdVXB0y6/JalkCfm2tOkRZczU7ukl6tW jtnL7o1v1JUGquA7uBQ+7kgJXFZ/HkAnOcHIzWizdv+rvv7BfcxayUFHA8/ItHCy+7Lc 15Vg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to; bh=m4rkog4Iu7cQrMMDi2uwOIcuKEoUuW9H1w12M5v4zms=; b=JBmC20PrIlWNIiv7D4f/MGsGW8LBEs25iEuT0uQ8YIWkF/qfga3nFywe++AHig7j/f HPIjP0mB6VDPOafvI0qhS4k2CWISw5eUwqnY2WmRrI1TGQB/dWX2zPO1pIfTCw3KfxcH nLREZ63M5dr8+V1nl68/xJaY3Lw5+PZtlftkppeseKr7kxJFNT66mEk0dbZ2XaP/NZXQ b3Ca8mSt5V9EXffYa3dXM15udrPicyaAruBDKMw0hozl8WD/roJvr+Qk8yzCoNgJXqzX bWxwqAj7XsRsI+C5UZtogc9yUdIqulzV5PanGixLa5YjTQMFnoDpRpl/J2rYcdHtsEo8 VaZA== X-Gm-Message-State: AIkVDXLhIeepCWEg2KYIXsO4wQuBARdtTckH3ew6y35LEZ3LPCI2iRxernzTGkU+RWnrjWNK X-Received: by 10.46.75.2 with SMTP id y2mr2304323lja.18.1484764018875; Wed, 18 Jan 2017 10:26:58 -0800 (PST) Received: from [10.10.1.58] ([185.97.61.26]) by smtp.gmail.com with ESMTPSA id u12sm656504lja.19.2017.01.18.10.26.57 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Jan 2017 10:26:57 -0800 (PST) Subject: Re: recent change to vim defaults? To: freebsd-ports@freebsd.org References: <41760da4-a348-4063-8fec-14cf88c0ed05@typeapp.com> <46fb6a60-4fe5-7619-fced-a53ee4edf154@freebsd.org> From: Steven Hartland Message-ID: <38ecf273-2aaf-0f31-1287-227b11c83260@multiplay.co.uk> Date: Wed, 18 Jan 2017 18:27:02 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <46fb6a60-4fe5-7619-fced-a53ee4edf154@freebsd.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 18:27:02 -0000 mouse=n ? On 18/01/2017 18:01, Julian Elischer wrote: > On 18/01/2017 5:03 PM, Raimund Sacherer wrote: >> I have to put mouse=v to get the behavior I am used to. >> >> Best > > doesn't really work for me. > > vim is still taking mouse events > > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@freebsd.org Wed Jan 18 20:20:47 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36B84CB6CBE for ; Wed, 18 Jan 2017 20:20:47 +0000 (UTC) (envelope-from agabas@astabis.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 21646174C for ; Wed, 18 Jan 2017 20:20:47 +0000 (UTC) (envelope-from agabas@astabis.com) Received: by mailman.ysv.freebsd.org (Postfix) id 20B8DCB6CBD; Wed, 18 Jan 2017 20:20:47 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 205AFCB6CBC for ; Wed, 18 Jan 2017 20:20:47 +0000 (UTC) (envelope-from agabas@astabis.com) Received: from mail.astabis.com (mail.astabis.com [148.251.238.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.astabis.com", Issuer "RapidSSL SHA256 CA - G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D606E174A; Wed, 18 Jan 2017 20:20:46 +0000 (UTC) (envelope-from agabas@astabis.com) Received: from mail.astabis.com (localhost [127.0.0.1]) by mail.astabis.com (Postfix) with ESMTP id BBD873E8146; Wed, 18 Jan 2017 21:14:10 +0100 (CET) X-Virus-Scanned: amavisd-new at astabis.com Received: from mail.astabis.com by mail.astabis.com (amavisd-new, unix socket) with LMTP id SKG-X3FVtOto; Wed, 18 Jan 2017 21:14:10 +0100 (CET) From: =?iso-8859-1?Q?Albert_Gab=E0s_|_Astabis_IRM?= To: Cc: Subject: FreeBSD Port: relayd-5.5.20140810_2 Date: Wed, 18 Jan 2017 21:14:09 +0100 Message-ID: MIME-Version: 1.0 X-Priority: 1 (Highest) X-MSMail-Priority: High Importance: High Thread-Index: AdJxxeXUaFMX2oRbSZKlsPehvqgUhw== Content-Language: es Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 20:20:47 -0000 Dear Martin, =20 Are you still maintaining the relayd port? If yes, could you please sync the port to the latest OpenBSD version?? =20 In the meantime, thank you so much for your work and attention. Kind regards =20 Albert Gab=E0s From owner-freebsd-ports@freebsd.org Wed Jan 18 21:49:41 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FAF1CB6D31 for ; Wed, 18 Jan 2017 21:49:41 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [IPv6:2620:83:8000:102::ca]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "fun.ee.lbl.gov", Issuer "ACS 3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 607C71D68 for ; Wed, 18 Jan 2017 21:49:41 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from ice.ee.lbl.gov (ice-v6.ee.lbl.gov [IPv6:2620:83:8000:102:0:0:0:d5]) (authenticated bits=0) by fun.ee.lbl.gov (8.15.2/8.15.2) with ESMTPSA id v0ILndAZ025296 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 18 Jan 2017 13:49:39 -0800 (PST) (envelope-from leres@ee.lbl.gov) X-Authentication-Warning: fun.ee.lbl.gov: Host ice-v6.ee.lbl.gov [IPv6:2620:83:8000:102:0:0:0:d5] claimed to be ice.ee.lbl.gov To: freebsd-ports@freebsd.org From: Craig Leres Subject: poudriere: devel/llvm39: runaway_process Message-ID: <303419bf-7502-3f79-ce7a-a0bb720a9fd5@ee.lbl.gov> Date: Wed, 18 Jan 2017 13:49:39 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 21:49:41 -0000 My poudriere build servers have been unable to build devel/llvm39 ever since some ports changed from llvm37 (January 17th?) The error is runaway_process and this happens during the package phase. It looks like pkg-static spins for one hour at which point poudriere gives up on it. Yesterday I raised max_execution_time for package on one build server to 2 hours which did not help. My three servers are all at 10.3-RELEASE-p16 and I'm attempting to build packages for the same version. I'm still able to build llvm37 ok. Since it takes ~2 hours for the failure to occur I'm hoping for ideas on how to diagnose this. Craig From owner-freebsd-ports@freebsd.org Thu Jan 19 03:15:18 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E26ACB7D8E for ; Thu, 19 Jan 2017 03:15:18 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 04E3F155F for ; Thu, 19 Jan 2017 03:15:18 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0163CCB7D8B; Thu, 19 Jan 2017 03:15:18 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2C70CB7D89; Thu, 19 Jan 2017 03:15:17 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D0018155B; Thu, 19 Jan 2017 03:15:17 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0J3Dnbx040347 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Jan 2017 19:13:52 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: standard settings for ports. To: =?UTF-8?Q?Trond_Endrest=c3=b8l?= References: Cc: "ports@FreeBSD.org" , freebsd , pkg@freebsd.org From: Julian Elischer Message-ID: <8c5be14a-b847-2aa7-60f4-a2dee72f3230@freebsd.org> Date: Thu, 19 Jan 2017 11:13:44 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 03:15:18 -0000 On 19/01/2017 1:28 AM, Trond Endrestl wrote: > On Thu, 19 Jan 2017 01:25+0800, Julian Elischer wrote: > >> pointers appreciated... > Try something like this in /etc/make.conf: > > DEFAULT_VERSIONS=apache=2.4 bdb=6 firebird=2.5 gcc=4.9 ghostscript=9 lua=5.2 mysql=5.7 perl5=5.22 php=5.6 pgsql=9.5 python=2.7 python2=2.7 python3=3.5 ruby=2.2 ssl=openssl tcltk=8.6 > that's good but where is it documented? thanks anyway! From owner-freebsd-ports@freebsd.org Thu Jan 19 03:18:51 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF4ABCB70F7 for ; Thu, 19 Jan 2017 03:18:51 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id D93F01A48 for ; Thu, 19 Jan 2017 03:18:51 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D87A6CB70F6; Thu, 19 Jan 2017 03:18:51 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D806ACB70F4; Thu, 19 Jan 2017 03:18:51 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F6A61A46; Thu, 19 Jan 2017 03:18:51 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0J3Ijkj040367 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Jan 2017 19:18:48 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: recent change to vim defaults? To: Adam Weinberger References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.org> <3008e8e4-2386-2bcb-b779-f8e2125c6f63@freebsd.org> <37A99792-9E8E-4505-AA63-5E619D20DF36@adamw.org> Cc: Baptiste Daroussin , "ports@FreeBSD.org" , "current@freebsd.org" From: Julian Elischer Message-ID: Date: Thu, 19 Jan 2017 11:18:39 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <37A99792-9E8E-4505-AA63-5E619D20DF36@adamw.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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 03:18:52 -0000 On 19/01/2017 1:37 AM, Adam Weinberger wrote: >> On 18 Jan, 2017, at 10:35, Julian Elischer wrote: >> >> On 17/01/2017 1:23 AM, Adam Weinberger wrote: >>>> On 16 Jan, 2017, at 9:25, Baptiste Daroussin wrote: >>>> >>>> On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: >>>>> I noticed that suddenly vim is grabbing mouse movements, which makes life >>>>> really hard. >>>>> >>>>> Was there a specific revision that brought in this change, and can it be >>>>> removed? >>>> This change appeared in one of the last patchset of vim 7.4 and was one of the >>>> "features" of the vim 8.0 release. >>>> >>>> I do agree this is just totally painful :( >>>> >>>> Best regards, >>>> Bapt >>> One of the things that I inherited with the Vim port was the DEFAULT_VIMRC option (which installs /usr/ports/editors/vim/files/vimrc), and I haven't touched it. >>> >>> I have moused disabled in all my boxes so I have no idea about bad mouse behaviour in Vim. If there is a bad default that is causing grief, let's just fix it in that default vimrc. >>> >>> I'm not really understanding what the unexpected behaviour is so I can't make an intelligent recommendation myself, but I'll go with whatever you folks suggest. >>> >>> # Adam >> I'm in iterm on my mac. >> I ssh to a freebsd machine >> I use vim on a file. >> I used to be able to use the mouse on my mac to copy a few lines into the cut buffer.. slide-shift-click etc.. >> now suddenly if I try highlight some code in vim to copy it vim drags stuff around, scrolls up and down, deletes stuff and generally makes a mess. >> if click, instead of starting a copy zone it grabs some of the text. >> >> basically it makes hte mouse useless. >> I can;t copy and paste from a file I'm ediitng. I end up having to exit vim and do it in vi. > There have been a number of recommendations in this thread for you, Julian, including "set mouse=a" and "set mouse=v". Test some of them out and let me know what works for you. actually I never saw one about mouse=a however I did see and try mouse=v which didn't work for me. I have now tried mouse=a and am happy to say that that does what I need. thanks! > > # Adam > > From owner-freebsd-ports@freebsd.org Thu Jan 19 03:34:38 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0739ECB7999 for ; Thu, 19 Jan 2017 03:34:38 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id E50691455 for ; Thu, 19 Jan 2017 03:34:37 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E0DE4CB7997; Thu, 19 Jan 2017 03:34:37 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0382CB7995; Thu, 19 Jan 2017 03:34:37 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 760511453; Thu, 19 Jan 2017 03:34:37 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0J3YT4T040431 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 18 Jan 2017 19:34:32 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: recent change to vim defaults? To: Adam Weinberger References: <20170116162526.ei2uxnnvmuni6inp@ivaldir.etoilebsd.net> <48FFF8F8-7F23-4624-8436-F978F072494E@adamw.org> <3008e8e4-2386-2bcb-b779-f8e2125c6f63@freebsd.org> <37A99792-9E8E-4505-AA63-5E619D20DF36@adamw.org> Cc: Baptiste Daroussin , "ports@FreeBSD.org" , "current@freebsd.org" From: Julian Elischer Message-ID: <8983ec6a-1637-92f0-e58d-d31cc90dd880@freebsd.org> Date: Thu, 19 Jan 2017 11:34:24 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 03:34:38 -0000 On 19/01/2017 11:18 AM, Julian Elischer wrote: > On 19/01/2017 1:37 AM, Adam Weinberger wrote: >>> On 18 Jan, 2017, at 10:35, Julian Elischer >>> wrote: >>> >>> On 17/01/2017 1:23 AM, Adam Weinberger wrote: >>>>> On 16 Jan, 2017, at 9:25, Baptiste Daroussin >>>>> wrote: >>>>> >>>>> On Mon, Jan 16, 2017 at 12:03:08AM +0800, Julian Elischer wrote: >>>>>> I noticed that suddenly vim is grabbing mouse movements, which >>>>>> makes life >>>>>> really hard. >>>>>> >>>>>> Was there a specific revision that brought in this change, and >>>>>> can it be >>>>>> removed? >>>>> This change appeared in one of the last patchset of vim 7.4 and >>>>> was one of the >>>>> "features" of the vim 8.0 release. >>>>> >>>>> I do agree this is just totally painful :( >>>>> >>>>> Best regards, >>>>> Bapt >>>> One of the things that I inherited with the Vim port was the >>>> DEFAULT_VIMRC option (which installs >>>> /usr/ports/editors/vim/files/vimrc), and I haven't touched it. >>>> >>>> I have moused disabled in all my boxes so I have no idea about >>>> bad mouse behaviour in Vim. If there is a bad default that is >>>> causing grief, let's just fix it in that default vimrc. >>>> >>>> I'm not really understanding what the unexpected behaviour is so >>>> I can't make an intelligent recommendation myself, but I'll go >>>> with whatever you folks suggest. >>>> >>>> # Adam >>> I'm in iterm on my mac. >>> I ssh to a freebsd machine >>> I use vim on a file. >>> I used to be able to use the mouse on my mac to copy a few lines >>> into the cut buffer.. slide-shift-click etc.. >>> now suddenly if I try highlight some code in vim to copy it vim >>> drags stuff around, scrolls up and down, deletes stuff and >>> generally makes a mess. >>> if click, instead of starting a copy zone it grabs some of the text. >>> >>> basically it makes hte mouse useless. >>> I can;t copy and paste from a file I'm ediitng. I end up having to >>> exit vim and do it in vi. >> There have been a number of recommendations in this thread for you, >> Julian, including "set mouse=a" and "set mouse=v". Test some of >> them out and let me know what works for you. > > actually I never saw one about mouse=a however I did see and try > mouse=v which didn't work for me. > > I have now tried mouse=a and am happy to say that that does what I > need. > thanks! actually no, 'set mouse=' seems to be what I want.. not sure why I thought =a worked: > >> >> # Adam >> >> > > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-ports@freebsd.org Thu Jan 19 03:56:53 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2EF9CB7629 for ; Thu, 19 Jan 2017 03:56:53 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A20F9132A for ; Thu, 19 Jan 2017 03:56:53 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0J3umUM040515 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 18 Jan 2017 19:56:51 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: poudriere: devel/llvm39: runaway_process To: freebsd-ports@freebsd.org References: <303419bf-7502-3f79-ce7a-a0bb720a9fd5@ee.lbl.gov> From: Julian Elischer Message-ID: <63cbbe22-69ff-0ff3-6bc7-1dc90d3f80b4@freebsd.org> Date: Thu, 19 Jan 2017 11:56:43 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <303419bf-7502-3f79-ce7a-a0bb720a9fd5@ee.lbl.gov> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 03:56:53 -0000 On 19/01/2017 5:49 AM, Craig Leres wrote: > My poudriere build servers have been unable to build devel/llvm39 > ever since some ports changed from llvm37 (January 17th?) The error > is runaway_process and this happens during the package phase. It > looks like pkg-static spins for one hour at which point poudriere > gives up on it. Yesterday I raised max_execution_time for package on > one build server to 2 hours which did not help. My three servers > are all at 10.3-RELEASE-p16 and I'm attempting to build packages for > the same version. > > I'm still able to build llvm37 ok. Since it takes ~2 hours for the > failure to occur I'm hoping for ideas on how to diagnose this. mine build both yesterday for some reason (both succeeded) > > Craig > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@freebsd.org Thu Jan 19 03:59:05 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AD30CB76F8 for ; Thu, 19 Jan 2017 03:59:05 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 49FFD1447 for ; Thu, 19 Jan 2017 03:59:04 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0J3x0ME040528 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 18 Jan 2017 19:59:03 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: poudriere: devel/llvm39: runaway_process To: freebsd-ports@freebsd.org References: <303419bf-7502-3f79-ce7a-a0bb720a9fd5@ee.lbl.gov> From: Julian Elischer Message-ID: <3dad3665-c635-00c9-3638-a72ba6bf774b@freebsd.org> Date: Thu, 19 Jan 2017 11:58:55 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <303419bf-7502-3f79-ce7a-a0bb720a9fd5@ee.lbl.gov> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 03:59:05 -0000 On 19/01/2017 5:49 AM, Craig Leres wrote: > My poudriere build servers have been unable to build devel/llvm39 > ever since some ports changed from llvm37 (January 17th?) The error > is runaway_process and this happens during the package phase. It > looks like pkg-static spins for one hour at which point poudriere > gives up on it. Yesterday I raised max_execution_time for package on > one build server to 2 hours which did not help. My three servers > are all at 10.3-RELEASE-p16 and I'm attempting to build packages for > the same version. llvm-39 took arond 45 minutes more than 37 on my machine. > I'm still able to build llvm37 ok. Since it takes ~2 hours for the > failure to occur I'm hoping for ideas on how to diagnose this. > > Craig > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@freebsd.org Thu Jan 19 04:06:53 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCB87CB7C84 for ; Thu, 19 Jan 2017 04:06:53 +0000 (UTC) (envelope-from mokhi64@gmail.com) Received: from mail-it0-x22d.google.com (mail-it0-x22d.google.com [IPv6:2607:f8b0:4001:c0b::22d]) (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 851181A79; Thu, 19 Jan 2017 04:06:53 +0000 (UTC) (envelope-from mokhi64@gmail.com) Received: by mail-it0-x22d.google.com with SMTP id c7so25864780itd.1; Wed, 18 Jan 2017 20:06:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-transfer-encoding; bh=HDwr0jbL60q1kfvxiJieL7R2fQ0EODJRMevCXwAcyDc=; b=J+Q6/ZNFIH6lxRjMT3tIUyCn7WxGAVtgY/i3MTlNgcl3re/nvSizYnkYg7yvFKopFw /73pInauqon6xcbjJPy8hKNUu+h+Ptd76SFYtvb+9VaX1uTpp8PRamMwjP38LcXKFe3j lB1dOy0r7IdM0NH6+v7rYxILHZlKgLv63VlhVMkAkI94SSPdCxn6/9sj1MWrBlfuLp8S gRbjcbhWViOCNoW2A2eChHXs8hxvfzGQjVmnkQNoICmt//K/XVFQ+FLe0bPy/H66QNve I+lNtt90RwzCBr/ji6j/YH9ji7buPXpoJeqnIrOyYjEp1toJhcI6lF4wzF6RjgilwHKI dLDg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=HDwr0jbL60q1kfvxiJieL7R2fQ0EODJRMevCXwAcyDc=; b=TNJYL8LfNW7ka2SuJCkaklAkRCdHZitTt1sKgBQehTTS1wDCbJgThil1/5YcYLxvJo 7NSPZ7JqOkE0T5Loxv728owXq42ApgPQHirQI/OJRL/ICWIOKLHjcVxSz0xMA8QyrPgC XII8ddgIzADPchx/RHFoSmEdq/CzXrypXx2h1kAdEGvNN5385s/5Ub+uQQWa3s3j3etv 4+jmGM5a6GOliQqugKMbZxUSJ4LsB6kpZU3zzbzsDXbzkCmEcTEPMxByzhtItrCMEX0+ BB12G9CMoPJvOWEGKhnAvCpvTuexh+zPI5e93WwOIUbEXdReWtzFnb0R01ah8/0iIRI+ 6oTQ== X-Gm-Message-State: AIkVDXI3rhPDrF3A824Ac3DPzSn11DI9NTuM5PfTQG1FD2Aw0y+ZH3ntuLPCNT0ucltYA8GLXCtja6XgOEAYQw== X-Received: by 10.36.48.208 with SMTP id q199mr6694647itq.28.1484798812735; Wed, 18 Jan 2017 20:06:52 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.146.134 with HTTP; Wed, 18 Jan 2017 20:06:52 -0800 (PST) In-Reply-To: <3dad3665-c635-00c9-3638-a72ba6bf774b@freebsd.org> References: <303419bf-7502-3f79-ce7a-a0bb720a9fd5@ee.lbl.gov> <3dad3665-c635-00c9-3638-a72ba6bf774b@freebsd.org> From: mokhi Date: Thu, 19 Jan 2017 07:36:52 +0330 Message-ID: Subject: Re: poudriere: devel/llvm39: runaway_process To: leres@ee.lbl.gov Cc: freebsd-ports@freebsd.org, julian@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 04:06:53 -0000 On 1/19/17, Craig Leres wrote: > My poudriere build servers have been unable to build devel/llvm39 ever > since some ports changed from llvm37 (January 17th?) The error is > runaway_process and this happens during the package phase. It looks like > pkg-static spins for one hour at which point poudriere gives up on it. > Yesterday I raised max_execution_time for package on one build server to > 2 hours which did not help. My three servers are all at > 10.3-RELEASE-p16 and I'm attempting to build packages for the same versio= n. > > I'm still able to build llvm37 ok. Since it takes ~2 hours for the > failure to occur I'm hoping for ideas on how to diagnose this. > Well, I'm not sure about the error (mine builds fine), but as a helping note, maybe passing `-i` option to `poudriere testport` helps you go into the jail after the fail, then no need to rebuild all things after fail =F0=9F=98=81=F0=9F=98=84=F0=9F=98=8A simply change and ma= ke. However sometimes in some cases this approach fails, but generally I can say it works (for reducing test/fix time). From owner-freebsd-ports@freebsd.org Thu Jan 19 04:44:43 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11612CB6CD9 for ; Thu, 19 Jan 2017 04:44:43 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id F29A61D98 for ; Thu, 19 Jan 2017 04:44:42 +0000 (UTC) (envelope-from julian@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id F1EF9CB6CD7; Thu, 19 Jan 2017 04:44:42 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE71ECB6CD6 for ; Thu, 19 Jan 2017 04:44:42 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B519E1D96 for ; Thu, 19 Jan 2017 04:44:42 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0J4icpN040694 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 18 Jan 2017 20:44:41 -0800 (PST) (envelope-from julian@freebsd.org) To: "ports@FreeBSD.org" From: Julian Elischer Subject: jdk7 broken in some way? Message-ID: <4bfb9a62-996c-3ac1-c9bb-fabe9b4b8d62@freebsd.org> Date: Thu, 19 Jan 2017 12:44:32 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 04:44:43 -0000 last night I had poudriere try build jdk8 but that required jdk7 which didn't build. I think itwanted jdk6 or maybe bootstrap-openjdk. whatever it needed (it said it couldn't make a java vm) it didn't do it. I thought poudriere would set up everything needed.. Is there anything special needed to compile the jdk? I got my jdk8 by dropping a jdk7 package into the packages area. but such manual intervention shouldn't be needed... From owner-freebsd-ports@freebsd.org Thu Jan 19 07:22:32 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EEF5CB7879 for ; Thu, 19 Jan 2017 07:22:32 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8314C10EC for ; Thu, 19 Jan 2017 07:22:32 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: by mailman.ysv.freebsd.org (Postfix) id 7F8B7CB7876; Thu, 19 Jan 2017 07:22:32 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B1C1CB7873; Thu, 19 Jan 2017 07:22:32 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from smtp.fagskolen.gjovik.no (smtp.fagskolen.gjovik.no [IPv6:2001:700:1100:1:200:ff:fe00:b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.fagskolen.gjovik.no", Issuer "Fagskolen i Gj??vik" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E676C10E5; Thu, 19 Jan 2017 07:22:31 +0000 (UTC) (envelope-from trond@fagskolen.gjovik.no) Received: from mail.fig.ol.no (localhost [127.0.0.1]) by mail.fig.ol.no (8.15.2/8.15.2) with ESMTPS id v0J7M8NA073320 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 19 Jan 2017 08:22:08 +0100 (CET) (envelope-from trond@fagskolen.gjovik.no) Received: from localhost (trond@localhost) by mail.fig.ol.no (8.15.2/8.15.2/Submit) with ESMTP id v0J7M79f073317; Thu, 19 Jan 2017 08:22:07 +0100 (CET) (envelope-from trond@fagskolen.gjovik.no) X-Authentication-Warning: mail.fig.ol.no: trond owned process doing -bs Date: Thu, 19 Jan 2017 08:22:07 +0100 (CET) From: =?ISO-8859-1?Q?Trond_Endrest=F8l?= Sender: Trond.Endrestol@fagskolen.gjovik.no To: Julian Elischer cc: "ports@FreeBSD.org" , freebsd , pkg@freebsd.org Subject: Re: standard settings for ports. In-Reply-To: <8c5be14a-b847-2aa7-60f4-a2dee72f3230@freebsd.org> Message-ID: References: <8c5be14a-b847-2aa7-60f4-a2dee72f3230@freebsd.org> User-Agent: Alpine 2.20 (BSF 67 2015-01-07) Organization: Fagskolen Innlandet OpenPGP: url=http://fig.ol.no/~trond/trond.key MIME-Version: 1.0 Content-ID: X-Spam-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mail.fig.ol.no Content-Type: text/plain; CHARSET=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 07:22:32 -0000 On Thu, 19 Jan 2017 11:13+0800, Julian Elischer wrote: > On 19/01/2017 1:28 AM, Trond Endrestl wrote: > > On Thu, 19 Jan 2017 01:25+0800, Julian Elischer wrote: > > > > > pointers appreciated... > > Try something like this in /etc/make.conf: > > > > DEFAULT_VERSIONS=apache=2.4 bdb=6 firebird=2.5 gcc=4.9 ghostscript=9 lua=5.2 > > mysql=5.7 perl5=5.22 php=5.6 pgsql=9.5 python=2.7 python2=2.7 python3=3.5 > > ruby=2.2 ssl=openssl tcltk=8.6 > > > that's good but where is it documented? Have a look at /usr/ports/Mk/bsd.default-versions.mk. Also, if you like to force emacs to be without X11, you should also set EMACS_PORT_NAME=emacs-nox11, see /usr/ports/Mk/bsd.emacs.mk. -- +-------------------------------+------------------------------------+ | Vennlig hilsen, | Best regards, | | Trond Endrestl, | Trond Endrestl, | | IT-ansvarlig, | System administrator, | | Fagskolen Innlandet, | Gjvik Technical College, Norway, | | tlf. mob. 952 62 567, | Cellular...: +47 952 62 567, | | sentralbord 61 14 54 00. | Switchboard: +47 61 14 54 00. | +-------------------------------+------------------------------------+ From owner-freebsd-ports@freebsd.org Thu Jan 19 07:34:10 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93366CB7CFE for ; Thu, 19 Jan 2017 07:34:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 806061867 for ; Thu, 19 Jan 2017 07:34:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7FAC6CB7CFB; Thu, 19 Jan 2017 07:34:10 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D9DACB7CFA for ; Thu, 19 Jan 2017 07:34:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.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 70F401866 for ; Thu, 19 Jan 2017 07:34:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org ([127.0.1.123]) by portscout.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v0J7YA7Z016460 for ; Thu, 19 Jan 2017 07:34:10 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v0J7YAFo016458; Thu, 19 Jan 2017 07:34:10 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201701190734.v0J7YAFo016458@portscout.ysv.freebsd.org> X-Authentication-Warning: portscout.ysv.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Thu, 19 Jan 2017 07:34:10 +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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 07:34:10 -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 ------------------------------------------------+-----------------+------------ math/giacxcas | 1.2.2-57 | 1.2.3-13 ------------------------------------------------+-----------------+------------ 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 Jan 19 12:36:57 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C355CB52FF for ; Thu, 19 Jan 2017 12:36:57 +0000 (UTC) (envelope-from alert@vindazo.be) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5544116A8 for ; Thu, 19 Jan 2017 12:36:57 +0000 (UTC) (envelope-from alert@vindazo.be) Received: by mailman.ysv.freebsd.org (Postfix) id 549E3CB52FE; Thu, 19 Jan 2017 12:36:57 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54378CB52FD for ; Thu, 19 Jan 2017 12:36:57 +0000 (UTC) (envelope-from alert@vindazo.be) Received: from vindazo.be (alert.vindazo.be [144.76.216.109]) by mx1.freebsd.org (Postfix) with ESMTP id D0E7B16A7 for ; Thu, 19 Jan 2017 12:36:56 +0000 (UTC) (envelope-from alert@vindazo.be) Received: from Ubuntu-1310-saucy-64-minimal (localhost [127.0.0.1]) by vindazo.be (Postfix) with ESMTP id E392B421AE0 for ; Thu, 19 Jan 2017 13:36:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=vindazo.be; s=mail; t=1484829408; bh=UlNjXmRE+35FLGUyDbQhQMKqmppCPQvz5r5guAyvokU=; h=Subject:From:To:Date:From; b=UKc8HDPLTROepLNpOVWix2gyrdWqfeihHg01IkuU9lsDOmfv+wddYb1UbNaKq48ah YzRDxegxc7rM97OsiYmWITE5oj/M+KxvclCtXrcn6nyrkIxnJliztv2KslH9WE/Uz3 O8U1RjXUxpHCIDYMo3XKOJkY0lrjopLTx2Z2guSI= Subject: Nieuwe vacatures voor verkoper 2017-01-19 From: alert@vindazo.be To: ports@freebsd.org Date: Thu, 19 Jan 2017 12:36:48 -0000 Message-ID: <20170119123648.2869.36749@Ubuntu-1310-saucy-64-minimal> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 12:36:57 -0000 From owner-freebsd-ports@freebsd.org Thu Jan 19 16:17:55 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E3A3CB8A83 for ; Thu, 19 Jan 2017 16:17:55 +0000 (UTC) (envelope-from timp87@gmail.com) Received: from mail-ua0-x22d.google.com (mail-ua0-x22d.google.com [IPv6:2607:f8b0:400c:c08::22d]) (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 4B1801D80 for ; Thu, 19 Jan 2017 16:17:55 +0000 (UTC) (envelope-from timp87@gmail.com) Received: by mail-ua0-x22d.google.com with SMTP id i68so38171873uad.0 for ; Thu, 19 Jan 2017 08:17:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=8hClBBLMuWVZTgF89rWslURtpEKhiI3Nn9uGqiGd52I=; b=eDLYkPS9liMgM1lkzmXT5qoGeecDMRK9+8kn0cC3Z0z+HX6QoERuVh9Q7fdBvne7Tc mLaa1TitwTngVbPmE8caDIpc1k7mJ6+nWFDSNCOvO+aae6TkPzpcsASyomTpvyqpl1FF c89m99zjImnoXb+MSU5i1flBECFOqLA7HeCvwhzk3pVb3NKleeYEphDDar0yO17qq5ZW aitgF0KJcPKtdmzC/25Zsv6ALKexY8rbgNh2q1oYWcSwwK4Q5qob7+vJp49iNrffyd+P t5gc5fPkFJNdd46O2ZtnccxCWB0lfAVuKf/YfeVaG8ChHPGb7Y5zJ5Xe/wUIjZD8zDH6 kZtA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=8hClBBLMuWVZTgF89rWslURtpEKhiI3Nn9uGqiGd52I=; b=f+Yg89hSYIL+ZixORD2Q8i/7td2tsxG31Y58CgTU+BJFwR4d7QYzHlOnHdBw9MnMJf /CpHMBaTCzg8T3wDYyZE8cShOVwj6wAj0M6KVmChFDrQhFb7vXocHtj8zvF82HcFa4QG mHAFcsxswRxS6j6ScSMoFLHaNaDGgq1NBVJa2NmVcVripGISm7AbSgzTFrVs9mUjVeeU wrmzdIR8P8hAsZyHD4/nlBm5VefAAHVxOkcuWFmE3io0bCcCFvgR98nHlwv2cghTvVMw yFU5X1ATiwTsv/6xvwkZDPAk/wpMqGWNyRy7B/YRuHJN8tYJrwzJWTm26b4avtpnc3mH 2nIA== X-Gm-Message-State: AIkVDXI9+8EJo0T+GtJsf20r2sO2o2J6JckhuC4NJl/a6HSnX2A/xiJI8cb2Fs7hAuy3dBxNFRZoa82USXf3mA== X-Received: by 10.176.84.146 with SMTP id p18mr4995828uaa.107.1484842674191; Thu, 19 Jan 2017 08:17:54 -0800 (PST) MIME-Version: 1.0 Received: by 10.159.33.5 with HTTP; Thu, 19 Jan 2017 08:17:53 -0800 (PST) From: Pavel Timofeev Date: Thu, 19 Jan 2017 19:17:53 +0300 Message-ID: Subject: GOOGLE_CODE has gone away? To: ports-list freebsd Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 16:17:55 -0000 Hello, all. I've found a port (http://www.freshports.org/net-mgmt/flow-tools-ng/) which is marked as BROKEN. The last commit says "GOOGLE_CODE has gone away.". But at least this particular port is still available in a new place: https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/flow-tools/flow-tools-0.68.5.1.tar.bz2 I suppose other ports which depends on Google code can be resurrected too. Is Mk/bsd.sites.mk right place to fix it? What if add to the following MASTER_SITE_GOOGLE_CODE+= \ http://${PROJECTHOST}.googlecode.com/files/ .endif something like https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PROJECTHOST}/ What do you think? From owner-freebsd-ports@freebsd.org Thu Jan 19 16:24:44 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFB5ECB8E6F for ; Thu, 19 Jan 2017 16:24:44 +0000 (UTC) (envelope-from timp87@gmail.com) Received: from mail-ua0-x233.google.com (mail-ua0-x233.google.com [IPv6:2607:f8b0:400c:c08::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7DE5315EB for ; Thu, 19 Jan 2017 16:24:44 +0000 (UTC) (envelope-from timp87@gmail.com) Received: by mail-ua0-x233.google.com with SMTP id 35so38460092uak.1 for ; Thu, 19 Jan 2017 08:24:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=8KZwLeHgOFgPJiWThlxpLbgP6Zy+UEALSlVVs8vFq1Y=; b=E9WZPBPBBDO3O5w95gwOCqSxRy9VMOByplahRS5dKs0OByTK0lBm6wJnHZJ9LajEku lxxOB6DvCY1rofsF8spWJVBuPZOrPPSLv3dMjQBFH4ywcNhz+bsT73Q6ykHlIMA7A28q 9yv0uoTM/pmOROnMR4RBGP4GNUO4N1eqwJRwav9ynsnBCEdbajnWWzy+MLqCiHaQoexE Qj/PV8+yTYVu0AGQVmpjmRvwOR8m0GWZCZX+O/5ZWMiV2Pk+6SUec5Gmc6Wy/OKlp/e3 prjNSlSHdiRX5utnl7CrixbNgeYbKNLdxwDXws8qA3ZU6R+8mUW1or5E/jqwPx0BbwYi cY0w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=8KZwLeHgOFgPJiWThlxpLbgP6Zy+UEALSlVVs8vFq1Y=; b=bi2D5F4/9apY18i9Qj0rhSgZjgHMX5tQ5zpHFnf8/azW+J7Y6+5H5DgJSnJczKKFOn Ry+t7BqJuOlspO0BmIhThrBsxbju1GrqlR60v75z9ZnSPrY+OUpVdcqNxvaHyAlD8ZMc YbtKXMHzhuxm4ntUsEKXmTCzQFjQWThW27g37LItreTVdlkLSkKdQBSFTaQCiOvitUNa xqE2DhP0KdMGMh6S3VjUms09HITvutZBeety0Y/xOkf7LYjRgM/qYkdh09GDggAu4aiG TYswiz6v176GVgnYRrqeK1jRV14Rz58VjBgqe7KUcSKxA9d1/fTqj8eiY3TsTUfuXfmz 28Dg== X-Gm-Message-State: AIkVDXL92rE+5nQjfdab0sGQkJrndduHS29/rY2s8MDva1SwFlaeK2ZwFybVCiIrwSjFuM1/9Whs7RA9e7q/Sw== X-Received: by 10.176.0.149 with SMTP id 21mr5044548uaj.81.1484843083503; Thu, 19 Jan 2017 08:24:43 -0800 (PST) MIME-Version: 1.0 Received: by 10.159.33.5 with HTTP; Thu, 19 Jan 2017 08:24:43 -0800 (PST) In-Reply-To: References: From: Pavel Timofeev Date: Thu, 19 Jan 2017 19:24:43 +0300 Message-ID: Subject: Re: GOOGLE_CODE has gone away? To: ports-list freebsd Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 16:24:44 -0000 2017-01-19 19:17 GMT+03:00 Pavel Timofeev : > Hello, all. > I've found a port (http://www.freshports.org/net-mgmt/flow-tools-ng/) > which is marked as BROKEN. > The last commit says "GOOGLE_CODE has gone away.". > > But at least this particular port is still available in a new place: > https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/flow-tools/flow-tools-0.68.5.1.tar.bz2 > > I suppose other ports which depends on Google code can be resurrected too. > Is Mk/bsd.sites.mk right place to fix it? > > What if add to the following > > MASTER_SITE_GOOGLE_CODE+= \ > http://${PROJECTHOST}.googlecode.com/files/ > .endif > > something like > > https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PROJECTHOST}/ > > What do you think? One correction: https can also be replaced by http in that link I tried several other GOOGLE_CODE-dependent ports and it works. For example http://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/vboxgtk/vboxgtk-0.8.2.tar.gz From owner-freebsd-ports@freebsd.org Thu Jan 19 16:59:42 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4040ACB89DB for ; Thu, 19 Jan 2017 16:59:42 +0000 (UTC) (envelope-from 01010159b7ab53de-935c409c-cce6-4cc5-a951-d604e5577506-000000@us-west-2.amazonses.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 29CFF1D87 for ; Thu, 19 Jan 2017 16:59:42 +0000 (UTC) (envelope-from 01010159b7ab53de-935c409c-cce6-4cc5-a951-d604e5577506-000000@us-west-2.amazonses.com) Received: by mailman.ysv.freebsd.org (Postfix) id 290DBCB89DA; Thu, 19 Jan 2017 16:59:42 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28AC5CB89D9 for ; Thu, 19 Jan 2017 16:59:42 +0000 (UTC) (envelope-from 01010159b7ab53de-935c409c-cce6-4cc5-a951-d604e5577506-000000@us-west-2.amazonses.com) Received: from a27-22.smtp-out.us-west-2.amazonses.com (a27-22.smtp-out.us-west-2.amazonses.com [54.240.27.22]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F5CE1D86 for ; Thu, 19 Jan 2017 16:59:42 +0000 (UTC) (envelope-from 01010159b7ab53de-935c409c-cce6-4cc5-a951-d604e5577506-000000@us-west-2.amazonses.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=gdwg2y3kokkkj5a55z2ilkup5wp5hhxx; d=amazonses.com; t=1484845175; h=Date:From:Reply-To:To:Message-ID:Subject:MIME-Version:Content-Type:Feedback-ID; bh=xyd0QRz795K9GBrirx50PjNBP9EHaVzKOptAzbSAp2k=; b=BIIqfQw6avoULytpUVjJ9BDRCatPHztpgCD+nfMHQ+tGCNIKpH7m6hYPZwFuzU3s EUj4zMtukBwDeyQxq/3g1ji0NmdM71UTeakymEcXXsBRdmetZwQPlsg7dBsPGAy0IeO cbcy0rtvpZT4HXrvgPpmzQ8hmfujo6hY3CoNzONU= Date: Thu, 19 Jan 2017 16:59:35 +0000 From: iMarketing Center Reply-To: chiboost@gmx.com To: ports@freebsd.org Message-ID: <01010159b7ab53de-935c409c-cce6-4cc5-a951-d604e5577506-000000@us-west-2.amazonses.com> Subject: The best email and sms integration app for android is now available X-SES-Outgoing: 2017.01.19-54.240.27.22 Feedback-ID: 1.us-west-2.Vf7+6T1oCxZiDF9K+T6XVAfo0K8BvnF5/zkSxKEtH30=:AmazonSES MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 16:59:42 -0000 From owner-freebsd-ports@freebsd.org Thu Jan 19 18:16:50 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21FDFCB7F6A for ; Thu, 19 Jan 2017 18:16:50 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.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 0C9AE1EF0 for ; Thu, 19 Jan 2017 18:16:49 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.88) (envelope-from ) id 1cUHGL-000Bxd-GH for freebsd-ports@freebsd.org; Thu, 19 Jan 2017 11:16:41 -0700 Date: Thu, 19 Jan 2017 11:16:41 -0700 From: The Doctor To: freebsd-ports@freebsd.org Subject: MAriadb 10.1 issue Message-ID: <20170119181641.GA44858@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 18:16:50 -0000 This morning I got the update for Maria DB 10.1 and using portmaster I get You are using OpenSSL from ports and have selected GSSAPI from base, please select another GSAASPI vlue. I did comment out the IGNORE line from the Makefile but no dice. Help!! -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca God,Queen and country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism Birthdate 29 Jan 1969 Redhill Surrey England From owner-freebsd-ports@freebsd.org Thu Jan 19 18:28:29 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C541CB8402 for ; Thu, 19 Jan 2017 18:28:29 +0000 (UTC) (envelope-from kpg@caomhin.org) Received: from zoidberg.compliantgroup.com (zoidberg.compliantgroup.com [94.23.207.160]) (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 08EC9188C for ; Thu, 19 Jan 2017 18:28:28 +0000 (UTC) (envelope-from kpg@caomhin.org) Received: from thoth (host86-138-222-101.range86-138.btcentralplus.com [86.138.222.101]) (Authenticated sender: master@caomhin.org) by zoidberg.compliantgroup.com (Postfix) with ESMTPSA id AB47414D37E for ; Thu, 19 Jan 2017 19:20:35 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.10.3 zoidberg.compliantgroup.com AB47414D37E DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=caomhin.org; s=default; t=1484850036; bh=DH9NBV2fBmaxF5HPvukM6tTXmE3811YGOpsbzYm6cf8=; h=To:Subject:References:Date:From:In-Reply-To; b=WTwGrU4AHsgse4XOWTgt5DWchI/BjORo/1u/F6Y8X7n7YuryBz1o+WZeUDEuTBhe4 /oOm0v9+rR65rlGeFJcyjStW1pKWaoUyhw3YY7uldMkHuD/z4WlmSroXjrbE/sTJeX /6ilvNorB0cmV3X0lo/6PTmGZLSMuftcci9zWphE= Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes To: freebsd-ports@freebsd.org Subject: Re: MAriadb 10.1 issue References: <20170119181641.GA44858@doctor.nl2k.ab.ca> Date: Thu, 19 Jan 2017 18:20:44 -0000 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Kevin Golding" Message-ID: In-Reply-To: <20170119181641.GA44858@doctor.nl2k.ab.ca> User-Agent: Opera Mail/1.0 (Win32) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 18:28:29 -0000 On Thu, 19 Jan 2017 18:16:41 -0000, The Doctor wrote: > This morning I got the update for Maria DB 10.1 > > and > > using portmaster > > I get > > > You are using OpenSSL from ports and have selected GSSAPI from base, > please > select another GSAASPI vlue. > > I did comment out the IGNORE line from the Makefile but no dice. > > Help!! > OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE OPTIONS_DEFAULT= GSSAPI_BASE `make config` will let you select an alternative From owner-freebsd-ports@freebsd.org Thu Jan 19 19:07:50 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CF59CB80DA for ; Thu, 19 Jan 2017 19:07:50 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from vps.rulingia.com (vps.rulingia.com [103.243.244.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.rulingia.com", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D7541258 for ; Thu, 19 Jan 2017 19:07:49 +0000 (UTC) (envelope-from peter@rulingia.com) Received: from server.rulingia.com (ppp59-167-167-3.static.internode.on.net [59.167.167.3]) by vps.rulingia.com (8.15.2/8.15.2) with ESMTPS id v0JJ7XZ7039783 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 20 Jan 2017 06:07:39 +1100 (AEDT) (envelope-from peter@rulingia.com) X-Bogosity: Ham, spamicity=0.000000 Received: from server.rulingia.com (localhost.rulingia.com [127.0.0.1]) by server.rulingia.com (8.15.2/8.15.2) with ESMTPS id v0JJ7Qgh095321 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 20 Jan 2017 06:07:27 +1100 (AEDT) (envelope-from peter@server.rulingia.com) Received: (from peter@localhost) by server.rulingia.com (8.15.2/8.15.2/Submit) id v0JJ7QFD095320; Fri, 20 Jan 2017 06:07:26 +1100 (AEDT) (envelope-from peter) Date: Fri, 20 Jan 2017 06:07:26 +1100 From: Peter Jeremy To: Pavel Timofeev Cc: ports-list freebsd Subject: Re: GOOGLE_CODE has gone away? Message-ID: <20170119190726.GD82883@server.rulingia.com> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="TakKZr9L6Hm6aLOc" Content-Disposition: inline In-Reply-To: X-PGP-Key: http://www.rulingia.com/keys/peter.pgp User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 19:07:50 -0000 --TakKZr9L6Hm6aLOc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2017-Jan-19 19:17:53 +0300, Pavel Timofeev wrote: >I've found a port (http://www.freshports.org/net-mgmt/flow-tools-ng/) >which is marked as BROKEN. >The last commit says "GOOGLE_CODE has gone away.". That comment is true. >But at least this particular port is still available in a new place: >https://storage.googleapis.com/google-code-archive-downloads/v2/code.googl= e.com/flow-tools/flow-tools-0.68.5.1.tar.bz2 That is an archive of the last version of code available from Google Code. By definition it is unmaintained (and unmaintainable). There has been a long thread about this and the the outcome (which was not accepted by some) is that FreeBSD will not accept ports that are unmaintainable, therefore it will not use google-code-archive as a master site. Please refer to the FreeBSD-ports list archives for more details. --=20 Peter Jeremy --TakKZr9L6Hm6aLOc Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJYgQ5uXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRFRUIyOTg2QzMwNjcxRTc0RTY1QzIyN0Ux NkE1OTdBMEU0QTIwQjM0AAoJEBall6Dkogs0zwIP/i3n2ce9YnEbTcZplM9mq+BM gKtCPaoeCfTeB/Ix/h8AFTRDBK+NPE8xLGvabI4FuGa1uRvGrrxgJ3lW0QvYYKud 769IWeMB242YD4XdZpqpoTK//k1dGqMBT84C9NM63T2mPZU/ADGBDwR56gq2KKn4 n1rTtKSqeFlkYX2+6+WtFKUVX6yyn0gJw4t2djUDw1bGmaDlr8ZmkD/w+T7QMBMB RokYB6ntnRWnx6f8fxOjm8eYWsV/7AYWrZVTAZQvONh0LFci8VEOItjsGI1jXcWl LXfd9+Tx5q1r4A1gsm59zNDa3g2hBk/E77QEk/48cxkphavvxa6baxFZaTLp+QqX hZlvfTqkYygxztzF0WNSYZIXr0QXXXND9llZql5H6TeUreVMTZE99ft82fRm70sd 6h8GYSXCnRVgmekDq+AxLgRHE1/iBxGfEI/WU3Qaw0xnk3HXf2P081hD1977oeBK ovzPoEXYI+uvS/U0g1lgsRLirTJxSwhnWC/HISVNTJvRRVVPOEPBSJxY4QE8HkGp aWL8Va9YXJa74Scfv0gd/chVOStEKoeLC3vnO27J8y8/ujUJ/7awlq7Z6ee5Qf8+ hv85UVOX8JwX7OYSnqzNKWRTJNkVoptyJph1QQihmZUUBFomFnL+6/v4xPWyE0vQ r3w+1GPczVxDsUfDqlGR =C4da -----END PGP SIGNATURE----- --TakKZr9L6Hm6aLOc-- From owner-freebsd-ports@freebsd.org Thu Jan 19 19:48:50 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53A73CB83B5 for ; Thu, 19 Jan 2017 19:48:50 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from limbo.b1t.name (limbo.b1t.name [78.25.32.206]) (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 11C9F10FD for ; Thu, 19 Jan 2017 19:48:49 +0000 (UTC) (envelope-from c.kworr@gmail.com) Received: from [172.29.1.40] (probe.42.lan [172.29.1.40]) by limbo.b1t.name (Postfix) with ESMTPSA id E599D8C for ; Thu, 19 Jan 2017 21:48:38 +0200 (EET) Subject: Re: GOOGLE_CODE has gone away? To: ports-list freebsd References: From: Volodymyr Kostyrko Message-ID: <06188b5d-10d7-33de-a7e2-302eaf1df7c5@gmail.com> Date: Thu, 19 Jan 2017 21:48:38 +0200 User-Agent: Mozilla/5.0 (X11; DragonFly x86_64; rv:49.0) Gecko/20100101 Firefox/49.0 SeaMonkey/2.46 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 19:48:50 -0000 Pavel Timofeev wrote: > Hello, all. > I've found a port (http://www.freshports.org/net-mgmt/flow-tools-ng/) > which is marked as BROKEN. > The last commit says "GOOGLE_CODE has gone away.". ( Picking up maintainer hat from dust ) When I first added that port I thought there would be anything fun about working with databases but the team stayed silent and there was no move for years. The only features like PostgreSQL support were rather a nuisance as there was no buffering and it tended to kill database even on meager load. I ended up using disk writer + some code on python to dump everything to database and that was working much nicer. So actually you can just stay with net-mgmt/flow-tools - it hasn't gone too far from there. I moved to net-mgmt/nfdump not so long ago and feel no regrets. -- Sphinx of black quartz judge my vow. From owner-freebsd-ports@freebsd.org Thu Jan 19 21:30:57 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 335B1CA6151 for ; Thu, 19 Jan 2017 21:30:57 +0000 (UTC) (envelope-from elferdo@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 06DBA1F58 for ; Thu, 19 Jan 2017 21:30:57 +0000 (UTC) (envelope-from elferdo@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 02374CA614C; Thu, 19 Jan 2017 21:30:57 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01D18CA614B for ; Thu, 19 Jan 2017 21:30:57 +0000 (UTC) (envelope-from elferdo@gmail.com) Received: from mail-io0-x22e.google.com (mail-io0-x22e.google.com [IPv6:2607:f8b0:4001:c06::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 C19C81F55 for ; Thu, 19 Jan 2017 21:30:56 +0000 (UTC) (envelope-from elferdo@gmail.com) Received: by mail-io0-x22e.google.com with SMTP id j18so48442736ioe.2 for ; Thu, 19 Jan 2017 13:30:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=GAodRNJr4m9BPh62Sarkxy42L9YTXwgluTsmAcUpq1w=; b=cfNMTWzGBn3GtN88sHn1It9hqK0YTYxwZz61CIwH/ojjpiu0Vv96wPFU4Xrtt/Dw9j bda/fDyflo9IJF8iU/00rZS7Dhm+pxfDII7I4j9/Dz7azzYHzERwaNYB8wTHn5xMAAM6 ewL0ftChbg4EsxP47EouKy9ZHohXzjeKqEj7k/29uIh1jzINTiO5LqgUlDelErjMaJ2M phN3opVgW4YVZF/okNjRLC6HC0+l90WRLKisYiHOsjLAXgPF4U4wWkGmGgSjCgQk2umb +FndZTimg8Zn8HDz/rjtZQFOvchRmq/0N0U30FqPNQqkwshgMWPX/B+Nl7wfxvXw1Z2k Nkvw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=GAodRNJr4m9BPh62Sarkxy42L9YTXwgluTsmAcUpq1w=; b=sRHNUqQLVsuM5fmI2pH5mCLMJsqg4XrLrnOGZIagqEuh21IjSZa7+hB+vfiN0pT1pO Y928tD6t7eA66VtXTGkJ+py5eItZb6ysU1H9nK3L9NULZ4QXYnusaYsB/6Gxd4KpZvML lvE9tJVFZ3DkK5BUmRZTMmqV6hLBSSQmfZRa/BaL2sxfSOlsPeg6hVH+SqBM0ta5s1jS UrDVznzLxhql3sfE4Bmpng7LaGay6/zp/2v3YqIDqobjg7I7h5erBqoJd/oIjE0cRWEY HOtxw/RBmgS+XrCwMg1e6/7t5kg7Tr7cYITM3JI7KVUHphcqplPjw9JUHfDTmyCGPKaZ nEow== X-Gm-Message-State: AIkVDXJ8M1/YumDm3cCa9OCELejveeRAH4StBJ74SlCFV8GYBeOZsTXf6rMDKsE/rtzWjONSaUfIBC1iiUw++A== X-Received: by 10.107.189.70 with SMTP id n67mr2329739iof.202.1484861456102; Thu, 19 Jan 2017 13:30:56 -0800 (PST) MIME-Version: 1.0 Received: by 10.36.43.7 with HTTP; Thu, 19 Jan 2017 13:30:55 -0800 (PST) From: =?UTF-8?Q?Fernando_Herrero_Carr=C3=B3n?= Date: Thu, 19 Jan 2017 22:30:55 +0100 Message-ID: Subject: Ports with origin path different from port name To: "ports@FreeBSD.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 21:30:57 -0000 Hi everyone, I have lately come across at least two ports whose origin path is different from the port name, which I found surprising. One of them is mcmc-jags, which lives in math/jags, the other one is ccid, which lives in devel/libccid. Is there any reason for this mismatch? Best, Fernando From owner-freebsd-ports@freebsd.org Thu Jan 19 21:59:32 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A14A5CB81B8 for ; Thu, 19 Jan 2017 21:59:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8628B16EB for ; Thu, 19 Jan 2017 21:59:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 85788CB81B1; Thu, 19 Jan 2017 21:59:32 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84DFECB81AF; Thu, 19 Jan 2017 21:59:32 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3DD0116E9; Thu, 19 Jan 2017 21:59:29 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from [10.0.1.70] (cpe-071-065-239-148.nc.res.rr.com [71.65.239.148] (may be forged)) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id v0JLxLHS059558 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Thu, 19 Jan 2017 21:59:26 GMT (envelope-from swills@FreeBSD.org) To: ports@freebsd.org, emulation@FreeBSD.org, virtualization@FreeBSD.org From: Steve Wills Subject: [CFT] emulators/open-vm-tools{,-nox11} update to 10.1.0 Message-ID: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> Date: Thu, 19 Jan 2017 16:59:17 -0500 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="bJlpaEsl8b4vjNRkK5i8Qa4sx5jX9p2As" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Thu, 19 Jan 2017 21:59:26 +0000 (UTC) X-Spam-Status: No, score=-1.0 required=4.5 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.2 at mouf.net X-Virus-Status: Clean X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 21:59:32 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --bJlpaEsl8b4vjNRkK5i8Qa4sx5jX9p2As Content-Type: multipart/mixed; boundary="d3IXLWWrQQB9RlSDXmumTpGfk2pgSmHp9"; protected-headers="v1" From: Steve Wills To: ports@freebsd.org, emulation@FreeBSD.org, virtualization@FreeBSD.org Message-ID: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> Subject: [CFT] emulators/open-vm-tools{,-nox11} update to 10.1.0 --d3IXLWWrQQB9RlSDXmumTpGfk2pgSmHp9 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, I'd like anyone possible to test an updated version of emulators/open-vm-tools{,-nox11}. I have the patch here for those who wish to build themselves: https://people.freebsd.org/~swills/open-vm-tools/open-vm-tools-10.1.0.dif= f And for those who wish to test using packages, I've built packages with the new version and it's deps from the quarterly ports branch here: https://people.freebsd.org/~swills/open-vm-tools/ with sub-directories for various FreeBSD versions and archs. There's also a script which can help you configure the repo so that you can install using pkg, here: https://people.freebsd.org/~swills/open-vm-tools/ovmsetup.sh Just grab the script, run it, then pkg install the open-vm-tools package, or update it if you already have it installed. This is a bit of a new testing method for me, so don't be surprised if there are some bump= s. I would be really nice see tests with both various versions of VMWare ESXi, particularly ESXi 6.0 and 6.5, and also VMWare desktop products. Any help testing would be appreciated. Even just a "worked OK for me" is helpful. One particular note about this version, it no longer includes vmhgfs. Instead, there's support for using fuse to share files, though I haven't found documentation on that yet. So, if you can try it out, please do and let me know how it goes. Thanks, Steve --d3IXLWWrQQB9RlSDXmumTpGfk2pgSmHp9-- --bJlpaEsl8b4vjNRkK5i8Qa4sx5jX9p2As Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQGnBAEBCgCRFiEEmPpBSlwqDvnP0K0N9c9isyB7G6EFAliBNrlfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDk4 RkE0MTRBNUMyQTBFRjlDRkQwQUQwREY1Q0Y2MkIzMjA3QjFCQTETHHN3aWxsc0Bm cmVlYnNkLm9yZwAKCRD1z2KzIHsboRBNCACJZzNJ4r8LJLlhzOIJWcW/xUGN0rO4 hUtdgCFf7WKlINCXttQm3ZFPtjHabjDxJpxq/vcazaOV+kwxrIJg3K0fzx3u47Gs VwyUDIOaQzuhk0wbaAD4wugNKNA75MSs5tKuI+RkgvSdeHqqCRVP0F6prnC8pzWQ 7K/4jlClu4lVQ8wTIrR546rJbBVDqh6TNCw+S3wL21zaJE/v0J1Z2sIjtek5vTsD QpWkfZ16XHW5T8+CTx8YWa/aDGRepe28of/58vtqxkwjlozdNR/Hdj3R5t00Mf+n QLspuZ9vA75nwTm8TSUqHr+b4zB+ZQ1bm3kgNJ1nB8stFN3CnfUmXHEP =7VpB -----END PGP SIGNATURE----- --bJlpaEsl8b4vjNRkK5i8Qa4sx5jX9p2As-- From owner-freebsd-ports@freebsd.org Thu Jan 19 22:00:33 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4FE67CB82EC for ; Thu, 19 Jan 2017 22:00:33 +0000 (UTC) (envelope-from mokhi64@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 30B0F18B2 for ; Thu, 19 Jan 2017 22:00:33 +0000 (UTC) (envelope-from mokhi64@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 300D2CB82EB; Thu, 19 Jan 2017 22:00:33 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2FB88CB82EA for ; Thu, 19 Jan 2017 22:00:33 +0000 (UTC) (envelope-from mokhi64@gmail.com) Received: from mail-io0-x22d.google.com (mail-io0-x22d.google.com [IPv6:2607:f8b0:4001:c06::22d]) (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 EF28618B1 for ; Thu, 19 Jan 2017 22:00:32 +0000 (UTC) (envelope-from mokhi64@gmail.com) Received: by mail-io0-x22d.google.com with SMTP id l66so49021512ioi.1 for ; Thu, 19 Jan 2017 14:00:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=rw6VEmaNe3jI2WzlE3n12hPad3hBd4LoN40qZi6YjJo=; b=IWPXFlL4MrNFz+xFJesGEC1TOAnCA+Z68vUpRpGc2/9RmQMHB0Jje8BXl82HLmsmHX /yp/d9Am3JD+kpblRYvHPfLEvaMBJPXmURZb2vWSqx1udu+Iyg4P0CTxKKfPfdkNxoRA jNUW57cYbR53KCq69asKSaZxAFF2tZ8J40LTz6aP3g4Uvc2DgtRanxOQyBOlDsYQIe1y YO7zOIEFiLkeIQHKK6mlHkGI5CVTl8sy5/isTA5ktyQ1QA4wqcoBS9jm67DplTysCzS5 4xTjiWBTkbK1s5CIc10WXsyjlqCGsTFYpDJKvWALkRnuHttbxWeHTF0LZ06THsP3i1xb 0I4Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=rw6VEmaNe3jI2WzlE3n12hPad3hBd4LoN40qZi6YjJo=; b=fjCeWRkWqX8aAi82KfI7p1oNhzXwyzGYemuYj8TcRYQ1/MQsiCaUDJc6+aPBuWiHeP a1yVt3JV1KNbEi4pB4limvB1D2KwLWssJvoQJ+rVlrmUylx9X10fQnGE6uDqhAnGZDjj Mby9ck2ngcg1/cXr7+oZW6nU8W8tRcl+HdSuBvuT+pPyPYzWulMtpBQUxe3SGcdDQg8Z 7nsw5FunHhP5OHR32QIYCaNL0pAbrAg6Db5/Z79rk0/3DDKN3VnaGQYSP6AdFoCx+jfd fZycNWWm4upQhYSLutYga2MCF27NCAw8sup30+sJVqHgEkZfwyEivXXSzTio08X7uT4Z LxWQ== X-Gm-Message-State: AIkVDXKkpiy1ogcELkwpEiZjrnkU4RMExvKt78N7JQcu7aGGNtVm8VY5U4pwJbHfetF5qop7Ng+gdpVbVQ3Yvg== X-Received: by 10.107.147.134 with SMTP id v128mr9808926iod.75.1484863232312; Thu, 19 Jan 2017 14:00:32 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.146.134 with HTTP; Thu, 19 Jan 2017 14:00:31 -0800 (PST) In-Reply-To: References: From: mokhi Date: Fri, 20 Jan 2017 01:30:31 +0330 Message-ID: Subject: Re: Ports with origin path different from port name To: =?UTF-8?Q?Fernando_Herrero_Carr=C3=B3n?= Cc: "ports@FreeBSD.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jan 2017 22:00:33 -0000 Hi, About libCCID, the name was this when I became its maintainer, but it makes sense for me, cause it's mostly being used because of the drivers that it installs ('libccid.so' lib actually) so it's more a library than tool. Best wishes, Mokhi. From owner-freebsd-ports@freebsd.org Fri Jan 20 04:53:22 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52B87CB95DE for ; Fri, 20 Jan 2017 04:53:22 +0000 (UTC) (envelope-from felix@userspace.com.au) Received: from ma01-01.tyo.userspace.com.au (ma01-01.tyo.userspace.com.au [IPv6:2400:8900::f03c:91ff:fe18:3774]) by mx1.freebsd.org (Postfix) with ESMTP id 27C801FA5 for ; Fri, 20 Jan 2017 04:53:22 +0000 (UTC) (envelope-from felix@userspace.com.au) Received: from localhost (unknown [223.205.198.166]) by ma01-01.tyo.userspace.com.au (Postfix) with ESMTPSA id AAD13C094 for ; Fri, 20 Jan 2017 04:53:19 +0000 (UTC) Date: Fri, 20 Jan 2017 11:53:17 +0700 From: Felix Hanley To: freebsd-ports@freebsd.org Subject: garbd from databases/galera Message-ID: <20170120045317.GD1369@monk.yelnah> Reply-To: felix@userspace.com.au MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Attribution: Felix Hanley Organization: User Space, https://userspace.com.au/ X-PGP-Key: fp="971C F7B2 913A D163 70AC 02C3 B6F2 29D7 7E20 D10B"; id="0xb6f229d77e20d10b"; get=; get=; User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 04:53:22 -0000 Hi, The garbd component of databases/galera is currently disabled in the port but I would like to get this working. When enabled it has issues with boost references: /usr/ports/databases/galera/work/galera-25.3.5-src/garb/garb_config.cpp:32: undefined reference to `boost::program_options::options_description::options_description(std::string const&, unsigned int, unsigned int)' /usr/ports/databases/galera/work/galera-25.3.5-src/garb/garb_config.cpp:39: undefined reference to `boost::program_options::options_description::options_description(std::string const&, unsigned int, unsigned int)' garb/garb_config.os: In function `basic_command_line_parser': /usr/local/include/boost/program_options/detail/parsers.hpp:44: undefined reference to `boost::program_options::detail::cmdline::cmdline(std::vector > const&)' garb/garb_config.os: In function `garb::Config::Config(int, char**)': ... etc ... I am not sure if this is due to the g++ compiler version that was used to build boost or something else (I don't work with C++ much, let alone boost). Has anyone been able to get garbd to build? -- email: felix@userspace.com.au web: userspace.com.au phone: +61 3 9021 8964 gpg: 971C F7B2 913A D163 70AC 02C3 B6F2 29D7 7E20 D10B From owner-freebsd-ports@freebsd.org Fri Jan 20 05:45:50 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2863DCB934A for ; Fri, 20 Jan 2017 05:45:50 +0000 (UTC) (envelope-from jeffreybouquet@yahoo.com) Received: from nm30-vm1.bullet.mail.ne1.yahoo.com (nm30-vm1.bullet.mail.ne1.yahoo.com [98.138.90.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA2471117 for ; Fri, 20 Jan 2017 05:45:49 +0000 (UTC) (envelope-from jeffreybouquet@yahoo.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1484891142; bh=P/o386jMJKz+cDVTIYNzy6I7ova0rJhPt4Yzko6yo2s=; h=Date:From:Reply-To:To:Subject:References:From:Subject; b=W2/ZqFTzPCKbemXQu1FP/deJWZnc3CkmhuRJJpNWlcp/sasR/gUxJyhca+Y6RxdcNJ0uDXPBvcWp/UyyZy0moG6jIKiRCGUlpEnELIDS+ixgzZLRmV8udNB8mVfz9LtmmVhVCLaDpOVTgg/lcHtA16Zc58McUX+17BARDsHgOyIhC4OG1QPqqr/wBiVVAjpHRdEvlGBV1SUstHpjINGGP6185gAKkkCedyghwCyjqikLBtFZMsNDT8SPBw5fPt5O+TqrydvyBH92xkc5iGggrOF1fM/eKatCv+eMSO9aDSdpKfpGTnDzGFwn2ChR6nB2CBnkH9Nh8TLMNUyga1bnXA== Received: from [98.138.101.128] by nm30.bullet.mail.ne1.yahoo.com with NNFMP; 20 Jan 2017 05:45:42 -0000 Received: from [98.138.89.199] by tm16.bullet.mail.ne1.yahoo.com with NNFMP; 20 Jan 2017 05:45:42 -0000 Received: from [127.0.0.1] by omp1057.mail.ne1.yahoo.com with NNFMP; 20 Jan 2017 05:45:42 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 934756.54328.bm@omp1057.mail.ne1.yahoo.com X-YMail-OSG: SwXrwGAVM1ka6aOZvbw7XT3f1OPJgKUHaxN9DxzuYiYkxOhYIDsfdJLyR0A6mNQ VKUyW0q05.FTSc0D.azMvqwJvbdK4WD0gM7IvMwizRsTPNTnRhxdiWz4xGnQvYpHx1M3.6PDsFbi c.pDouw1pIWgxoIfgzwEoIZlhUC7nuXBmQNc2VP9bvbTsOpNZEwHCE8a7YqXA2fblcb1Xr7_r4A3 9KN2dJLnBAMh5Q4zFwSXLh_kKKFVlwC4hHiQBsuunB5wAEqkzhbV0GBCtIP2FtONINl.yEOSIlqY bwT2PSu4D5chxriekYKwa.tCARINdcFtNb4XIm6YxX7TYOLnCJ7_XoUVbHoXAUHKTGHh2Pvp9qTg PKKPlRbensK9GAxjMv36RqBfpDcflk03dGwqzL..KKyfUoMxU7Dxr1IrSur.cStUrLsjHQMLOhDo YF6J7cNyuHYBCuerzHgLBI4BvXXaBfhDTNU.UsoWtAbqJweZcOXeq8Cfnh36CBC3G3T0M8VN_S5Y hElO3vG7i2GStUOQAcbFxSw-- Received: from jws200196.mail.ne1.yahoo.com by sendmailws164.mail.ne1.yahoo.com; Fri, 20 Jan 2017 05:45:42 +0000; 1484891142.546 Date: Fri, 20 Jan 2017 05:45:42 +0000 (UTC) From: Jeffrey Bouquet Reply-To: Jeffrey Bouquet To: Message-ID: <1984108068.197071.1484891142329@mail.yahoo.com> Subject: why a persistent GCC GCC49 conflict? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit References: <1984108068.197071.1484891142329.ref@mail.yahoo.com> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 05:45:50 -0000 pkg install driftnet wants to install gcc, and REMOVE truecrypt, gcc49, xpi-web-developer...[23 more]...sscalc. This has been going on almost a half-year it seems. as gcc49 and gcc install files into the same place. Before that several years, again IIRC, with no such specific problem... From owner-freebsd-ports@freebsd.org Fri Jan 20 11:43:31 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D9A3CB96B7 for ; Fri, 20 Jan 2017 11:43:31 +0000 (UTC) (envelope-from contato@cadent.com.br) Received: from mx0.cadent.com.br (mx0.cadent.com.br [78.41.202.39]) by mx1.freebsd.org (Postfix) with ESMTP id 61A4411CC for ; Fri, 20 Jan 2017 11:43:30 +0000 (UTC) (envelope-from contato@cadent.com.br) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=default; d=cadent.com.br; h=From:To:Subject:Date:MIME-Version:Message-ID:Reply-To:Content-Type; i=contato@cadent.com.br; bh=ecFtDPsHOSBvFQlSvyefFsG0X4w=; b=ih7CFDAroNb95YMvhqyeV1puNR5ZFvDo0cO4mo0DsOFmUFNhe6mi08y4bCvrEoWQMHEhR3uhHOHW X8rwKOomP11CM28zxRdj65e4CnCwDMx+HTwrTW6dxbYobONhhffVulGx1zWfGLg6WYvyOvLtYH1P Jxs1hY+GlznbgXfXx8c= From: "VIVO Empresas - Agente autorizado" To: freebsd-ports@freebsd.org Subject: Economize Agora - VIVO Empresas Date: Fri, 20 Jan 2017 03:42:13 -0800 MIME-Version: 1.0 Message-ID: <14848341873b61b22ffc41e18c56282b7dcd23c818_@cadent.com.br> Reply-To: contato@spinaconsultoria.com.br Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 11:43:31 -0000 SmartVivo Empresas A Solu=C3=A7=C3=A3o completa para sua empresa est=C3=A1 aqui. Planos com liga=C3=A7=C3=B5es locais e nacionais sms ilimitado e internet 4G= para aumentar a produtividade do seu neg=C3=B3cio. A partir de R$: 59,90 Os melhores aparelhos em at=C3=A9 24 vezes sem juros. A Vivo tem os melhores smartphones para a sua empresa ficar sempre conectada.= Confira todos os modelos, veja quais s=C3=A3o as melhores op=C3=A7=C3=B5es= para voc=C3=AA e aproveite Visite: http://bit.ly/VIVO-Telefonica From owner-freebsd-ports@freebsd.org Fri Jan 20 12:32:21 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F4E0CB5EC3 for ; Fri, 20 Jan 2017 12:32:21 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from tatiana.utanet.at (tatiana.utanet.at [IPv6:2001:938:1337:25::25:46]) (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 BCB5B1F75 for ; Fri, 20 Jan 2017 12:32:20 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=bXSOOizs3T1z0NH604q/bMD+wrcdyY2T2/hpMqO1V6c=; b=YOpuTmyJWMoIMFRmtlAm8rz502/whfehW3U4bS6e1kDYOYssbICJ2BBRdp8yqrGUZ/tyOzSlgAxh/Yw6GNg31rauXyeSVPW0ygUl41SyVzXV4bHn9P7w8XYqnmNMORqBS6RtGXvXs6gcESGNdwVSG242ybH+RiiCqPREvnB5kRo=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cUYMZ-0000cH-SI for freebsd-ports@freebsd.org; Fri, 20 Jan 2017 13:32:15 +0100 Received: from 62-47-173-249.adsl.highway.telekom.at ([62.47.173.249] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cUYMZ-0002Lf-QF for freebsd-ports@freebsd.org; Fri, 20 Jan 2017 13:32:15 +0100 To: freebsd-ports@freebsd.org References: <245fde33-3c94-55f0-c675-0cf54aaf9af4@utanet.at> Subject: Re: Annoying problem lzma - lzmalib From: Walter Schwarzenfeld Message-ID: <15e7c23c-3cfc-a0ea-e2a8-0c2aded195ff@utanet.at> Date: Fri, 20 Jan 2017 13:32:12 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <245fde33-3c94-55f0-c675-0cf54aaf9af4@utanet.at> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 12:32:21 -0000 I sikved it for me (the problematic portss were math/R, lang/python34, sysutils/cppheck, archivers/rpm4, archivers/libarchive and textproc/the_silver_searcher - maybe there are more...) I write for me a "archivers.mk" .if !defined(_INCLUDE_USES_ARCHIVE_MK) _INCLUDE_USES_ARCHIVE_MK= yes _USES_POST+=archivers .if exists(/usr/local/lib/liblzma.so) LZMADIR=/any_oath_you_want/bin/lzma .if !exists(${LZMADIR}/liblzma.so) post-extract: ln -s /usr/lib/liblzma.so ${LZMADIR}/liblzma.so .endif LDFLAGS+= -L${LZMADIR} .endif .endif and this solves it for all above mentioned ports. From owner-freebsd-ports@freebsd.org Fri Jan 20 12:52:33 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A9F3CB75AB for ; Fri, 20 Jan 2017 12:52:33 +0000 (UTC) (envelope-from alert@vindazo.be) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 27E311C4A for ; Fri, 20 Jan 2017 12:52:33 +0000 (UTC) (envelope-from alert@vindazo.be) Received: by mailman.ysv.freebsd.org (Postfix) id 272EBCB75AA; Fri, 20 Jan 2017 12:52:33 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26C77CB75A9 for ; Fri, 20 Jan 2017 12:52:33 +0000 (UTC) (envelope-from alert@vindazo.be) Received: from vindazo.be (alert.vindazo.be [144.76.216.109]) by mx1.freebsd.org (Postfix) with ESMTP id A50B81C48 for ; Fri, 20 Jan 2017 12:52:32 +0000 (UTC) (envelope-from alert@vindazo.be) Received: from Ubuntu-1310-saucy-64-minimal (localhost [127.0.0.1]) by vindazo.be (Postfix) with ESMTP id E4976421AD9 for ; Fri, 20 Jan 2017 13:52:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=vindazo.be; s=mail; t=1484916744; bh=nNYYECzNvGXyTspj942YnAHncSgkTtpn6QdPWOHFDDo=; h=Subject:From:To:Date:From; b=XmrjXMxm160E8otXEHTSVzt3oMYRgCca3fMkLAgn3WjtrwZtoVDohODSOfzND5lS0 UknGkw5BUiymUIB27W2szD4b+nJo+Eg2RjiRaNJTCYnt4wwCfc+6tHj3BGxY0POP7t mNWls8tzkC8wFxKlmAIE8O/7Xg1mqe2nOcbdpxv0= Subject: Nieuwe vacatures voor verkoper 2017-01-20 From: alert@vindazo.be To: ports@freebsd.org Date: Fri, 20 Jan 2017 12:52:24 -0000 Message-ID: <20170120125224.17591.93142@Ubuntu-1310-saucy-64-minimal> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 12:52:33 -0000 From owner-freebsd-ports@freebsd.org Fri Jan 20 15:00:03 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4E5ACB9299 for ; Fri, 20 Jan 2017 15:00:03 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.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 CD1D1196F for ; Fri, 20 Jan 2017 15:00:03 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.88) (envelope-from ) id 1cUafP-00083I-DX; Fri, 20 Jan 2017 07:59:51 -0700 Date: Fri, 20 Jan 2017 07:59:51 -0700 From: The Doctor To: Kevin Golding Cc: freebsd-ports@freebsd.org Subject: Re: MAriadb 10.1 issue Message-ID: <20170120145951.GA30142@doctor.nl2k.ab.ca> References: <20170119181641.GA44858@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 15:00:04 -0000 On Thu, Jan 19, 2017 at 06:20:44PM -0000, Kevin Golding wrote: > On Thu, 19 Jan 2017 18:16:41 -0000, The Doctor > wrote: > > > This morning I got the update for Maria DB 10.1 > > > > and > > > > using portmaster > > > > I get > > > > > > You are using OpenSSL from ports and have selected GSSAPI from base, > > please > > select another GSAASPI vlue. > > > > I did comment out the IGNORE line from the Makefile but no dice. > > > > Help!! > > > > OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE > OPTIONS_DEFAULT= GSSAPI_BASE > > `make config` will let you select an alternative Got you. I will keep that in mind. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca God,Queen and country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism Birthdate 29 Jan 1969 Redhill Surrey England From owner-freebsd-ports@freebsd.org Fri Jan 20 15:14:42 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B723CB9847 for ; Fri, 20 Jan 2017 15:14:42 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id F29D815CF for ; Fri, 20 Jan 2017 15:14:41 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (ppp121-45-228-247.lns20.per1.internode.on.net [121.45.228.247]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id v0KFEaNG049578 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Fri, 20 Jan 2017 07:14:39 -0800 (PST) (envelope-from julian@freebsd.org) Subject: Re: [CFT] emulators/open-vm-tools{,-nox11} update to 10.1.0 To: freebsd-ports@freebsd.org References: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> From: Julian Elischer Message-ID: <11c08a7c-59e6-5daf-075d-03c8cf990862@freebsd.org> Date: Fri, 20 Jan 2017 23:14:30 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 15:14:42 -0000 On 20/01/2017 5:59 AM, Steve Wills wrote: > Hi, > > I'd like anyone possible to test an updated version of > emulators/open-vm-tools{,-nox11}. I have the patch here for those who > wish to build themselves: the problem we had with the existing on is that it ended up installing vi dependencies, a LOT of added stuff. Is htere any way to reduce the footprint? > https://people.freebsd.org/~swills/open-vm-tools/open-vm-tools-10.1.0.diff > > And for those who wish to test using packages, I've built packages with > the new version and it's deps from the quarterly ports branch here: > > https://people.freebsd.org/~swills/open-vm-tools/ > > with sub-directories for various FreeBSD versions and archs. There's > also a script which can help you configure the repo so that you can > install using pkg, here: > > https://people.freebsd.org/~swills/open-vm-tools/ovmsetup.sh > > Just grab the script, run it, then pkg install the open-vm-tools > package, or update it if you already have it installed. This is a bit of > a new testing method for me, so don't be surprised if there are some bumps. > > I would be really nice see tests with both various versions of VMWare > ESXi, particularly ESXi 6.0 and 6.5, and also VMWare desktop products. > Any help testing would be appreciated. Even just a "worked OK for me" is > helpful. > > One particular note about this version, it no longer includes vmhgfs. > Instead, there's support for using fuse to share files, though I haven't > found documentation on that yet. > > So, if you can try it out, please do and let me know how it goes. > > Thanks, > Steve > From owner-freebsd-ports@freebsd.org Fri Jan 20 15:23:44 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BEB6CB9BB6 for ; Fri, 20 Jan 2017 15:23:44 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D8FC51C29 for ; Fri, 20 Jan 2017 15:23:43 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from [IPv6:2001:7b8:3a7::448f:d188:ae21:3755] (unknown [IPv6:2001:7b8:3a7:0:448f:d188:ae21:3755]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id C09DB29163; Fri, 20 Jan 2017 16:23:40 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_2132A148-D0D2-478A-B922-B21BFAD35076"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: why a persistent GCC GCC49 conflict? From: Dimitry Andric In-Reply-To: <1984108068.197071.1484891142329@mail.yahoo.com> Date: Fri, 20 Jan 2017 16:23:29 +0100 Cc: freebsd-ports@freebsd.org Message-Id: <99B54C6F-FC87-4533-BCE2-AC684E97F958@FreeBSD.org> References: <1984108068.197071.1484891142329.ref@mail.yahoo.com> <1984108068.197071.1484891142329@mail.yahoo.com> To: Jeffrey Bouquet X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 15:23:44 -0000 --Apple-Mail=_2132A148-D0D2-478A-B922-B21BFAD35076 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 20 Jan 2017, at 06:45, Jeffrey Bouquet via freebsd-ports = wrote: >=20 > pkg install driftnet wants to install gcc, and REMOVE > truecrypt, gcc49, xpi-web-developer...[23 more]...sscalc. >=20 > This has been going on almost a half-year it seems. > as gcc49 and gcc install files into the same place. >=20 > Before that several years, again IIRC, with no such specific > problem... For a long time, lang/gcc was gcc 4.8, which conflicted with the lang/gcc48 port. (Don't ask me why the gcc port maintainer has set it up this way, I don't know :). Recently, on 2016-11-20 [1], lang/gcc updated to become gcc 4.9, which now conflicts with the lang/gcc49 port. So lang/gcc49 must be removed, together with all its dependent ports, before lang/gcc can be installed. I don't know why pkg can't see this as a direct replacement. Perhaps pkg does not have support for such metadata. -Dimitry [1] https://svnweb.freebsd.org/ports?view=3Drevision&revision=3D426565 --Apple-Mail=_2132A148-D0D2-478A-B922-B21BFAD35076 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.30 iEYEARECAAYFAliCK3wACgkQsF6jCi4glqMmzwCfYjXacON9001tQdnYKDJfrDab ZTEAn02W2G9dv9/W+ated+y+eWInyhVd =Bxw+ -----END PGP SIGNATURE----- --Apple-Mail=_2132A148-D0D2-478A-B922-B21BFAD35076-- From owner-freebsd-ports@freebsd.org Fri Jan 20 16:06:40 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B975CCB8C33 for ; Fri, 20 Jan 2017 16:06:40 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mouf.net", Issuer "mouf.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 644B31B14; Fri, 20 Jan 2017 16:06:40 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from [10.0.1.70] (cpe-071-065-239-148.nc.res.rr.com [71.65.239.148] (may be forged)) (authenticated bits=0) by mouf.net (8.14.9/8.14.9) with ESMTP id v0KG6V4l087046 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Fri, 20 Jan 2017 16:06:36 GMT (envelope-from swills@FreeBSD.org) Subject: Re: [CFT] emulators/open-vm-tools{,-nox11} update to 10.1.0 To: Julian Elischer , freebsd-ports@freebsd.org References: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> <11c08a7c-59e6-5daf-075d-03c8cf990862@freebsd.org> From: Steve Wills Message-ID: <5b751876-d68a-68ec-b942-07c83acc98c3@FreeBSD.org> Date: Fri, 20 Jan 2017 11:06:28 -0500 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <11c08a7c-59e6-5daf-075d-03c8cf990862@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="J1AbFlUkeMGn0ipgRa38UhaTMhU56oD7G" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Fri, 20 Jan 2017 16:06:36 +0000 (UTC) X-Spam-Status: No, score=-1.0 required=4.5 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mouf.net X-Virus-Scanned: clamav-milter 0.99.2 at mouf.net X-Virus-Status: Clean X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 16:06:40 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --J1AbFlUkeMGn0ipgRa38UhaTMhU56oD7G Content-Type: multipart/mixed; boundary="eV4SKmhJjfNugExiD9TsEt7ExO0kKNkkQ"; protected-headers="v1" From: Steve Wills To: Julian Elischer , freebsd-ports@freebsd.org Message-ID: <5b751876-d68a-68ec-b942-07c83acc98c3@FreeBSD.org> Subject: Re: [CFT] emulators/open-vm-tools{,-nox11} update to 10.1.0 References: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> <11c08a7c-59e6-5daf-075d-03c8cf990862@freebsd.org> In-Reply-To: <11c08a7c-59e6-5daf-075d-03c8cf990862@freebsd.org> --eV4SKmhJjfNugExiD9TsEt7ExO0kKNkkQ Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Hi, On 01/20/2017 10:14, Julian Elischer wrote: > On 20/01/2017 5:59 AM, Steve Wills wrote: >> Hi, >> >> I'd like anyone possible to test an updated version of >> emulators/open-vm-tools{,-nox11}. I have the patch here for those who >> wish to build themselves: >=20 > the problem we had with the existing on is that it ended up installing > vi dependencies, a LOT of added stuff. > Is htere any way to reduce the footprint? That's the reason for the open-vm-tools-nox11 package. There maybe a way to further reduce dependencies though, are there specific ones you had in mind? Steve --eV4SKmhJjfNugExiD9TsEt7ExO0kKNkkQ-- --J1AbFlUkeMGn0ipgRa38UhaTMhU56oD7G Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQGnBAEBCgCRFiEEmPpBSlwqDvnP0K0N9c9isyB7G6EFAliCNYRfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDk4 RkE0MTRBNUMyQTBFRjlDRkQwQUQwREY1Q0Y2MkIzMjA3QjFCQTETHHN3aWxsc0Bm cmVlYnNkLm9yZwAKCRD1z2KzIHsboaYcB/9AqncH5Rxd/Htvzab3Et0PpPiBMqVz 0FbBvu6aJgaSgSE68gZWFEu5irdWfzlZ0x+Yyegc0Kbm5du6VnskLy9mf9b9NA+x WhxdH81ZffUZW0xN5T1bfzrDBaF5CS+8YtcWhWXNNgV9N+BisZjYAlmBHE+Ve4+P 6TypWzffk6z12R+46yMKOq2La40LZEr6Lhm2ZcgFaQ1NcIhEtenzhs7Zz3r679Be kq55NOLur1YGMbawsRC2ZA7XLd4wXGhf5bcgTZAt64qyEj8UCoxCoxGzjn+rI67X nk3wj26PEOcRmyLlcB9SZqF8+nCcno1BPkL20My1VXbM2Nn8nvnKi0oa =CEGc -----END PGP SIGNATURE----- --J1AbFlUkeMGn0ipgRa38UhaTMhU56oD7G-- From owner-freebsd-ports@freebsd.org Fri Jan 20 16:07:47 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCE62CB8D36 for ; Fri, 20 Jan 2017 16:07:47 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [IPv6:2001:8b0:151:1:c4ea:bd49:619b:6cb3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 62F351CC7 for ; Fri, 20 Jan 2017 16:07:47 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from zero-gravitas.local (unknown [85.199.232.226]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: m.seaman@infracaninophile.co.uk) by smtp.infracaninophile.co.uk (Postfix) with ESMTPSA id 600C42093 for ; Fri, 20 Jan 2017 16:07:42 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/600C42093; dkim=none; dkim-atps=neutral Subject: Re: why a persistent GCC GCC49 conflict? To: freebsd-ports@freebsd.org References: <1984108068.197071.1484891142329.ref@mail.yahoo.com> <1984108068.197071.1484891142329@mail.yahoo.com> <99B54C6F-FC87-4533-BCE2-AC684E97F958@FreeBSD.org> From: Matthew Seaman Message-ID: Date: Fri, 20 Jan 2017 16:07:35 +0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <99B54C6F-FC87-4533-BCE2-AC684E97F958@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="tOMrFoLUA4gDWXOnuoEoH4SvOd52lOAuv" X-Spam-Status: No, score=0.9 required=5.0 tests=BAYES_00,RCVD_IN_RP_RNBL, RDNS_NONE,SPF_SOFTFAIL autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on smtp.infracaninophile.co.uk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 16:07:47 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --tOMrFoLUA4gDWXOnuoEoH4SvOd52lOAuv Content-Type: multipart/mixed; boundary="hhmipb1t3dk4b8BcnlEPuhPWatPo5d83k"; protected-headers="v1" From: Matthew Seaman To: freebsd-ports@freebsd.org Message-ID: Subject: Re: why a persistent GCC GCC49 conflict? References: <1984108068.197071.1484891142329.ref@mail.yahoo.com> <1984108068.197071.1484891142329@mail.yahoo.com> <99B54C6F-FC87-4533-BCE2-AC684E97F958@FreeBSD.org> In-Reply-To: <99B54C6F-FC87-4533-BCE2-AC684E97F958@FreeBSD.org> --hhmipb1t3dk4b8BcnlEPuhPWatPo5d83k Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 2017/01/20 15:23, Dimitry Andric wrote: > I don't know why pkg can't see this as a direct replacement. Perhaps > pkg does not have support for such metadata. >=20 If there's an entry in ${PORTSDIR}/MOVED saying that lang/gcc49 was changed to lang/gcc then pkg(8) should replace lang/gcc49 with lang/gcc for you without trashing anything that depended on lang/gcc49 In more general terms, this is an effect of the strict package+version dependencies that get baked into packages when they are created. This needs a mechanism in pkg(8) for specifying alternate dependencies and allowed ranges of versions. Plus tooling in ports to add all this info to port makefiles and have it included in the generated packages. Cheers, Matthew --hhmipb1t3dk4b8BcnlEPuhPWatPo5d83k-- --tOMrFoLUA4gDWXOnuoEoH4SvOd52lOAuv Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQJ8BAEBCgBmBQJYgjXNXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnUPgP/3JSa/sGP5/gXTHkcnzDgHXh Wnke+O2Q6hWYtGXVcJVaoy8bB1UiOevaJ0Kja8N3xwEXqBg7GTMPkXWMtEelpCtX MWSe7Rvk04Q4kFXsLUks0meSX/YW4R82EEwEIBmWNnr9wXF4ZI0szklEcw6G1/k/ 3bu/b8Ftmg97R1Ji34lzharLwWZ12j+CEKzhMBPiEoTTBXLav08SpwhdghBxVh6y qnEGsD+iCsOqMAYMqHHS5ic/2MVD6A4oJ9E/bXjLTIMRl1n8HFIfDTz3qwygZeX7 kG/HRProEqeUw406/YThYSQwQsPvAPGcUlgl3trupxXOB60Pbs4Z5mkw+iWm4+KW bl2t+XcpVblcw/55DG4lwU1wz2Q+ORcGFXRWt/EUgLiZ53fuHq8P6HII/prV36q5 flRLp5dpQvoE/l9P7Xp5nmJYT4ef8SIEg+aJK4wArn3ta/2IJYUZCIU+551ieKfS NTgofCXuKFGJfAV+5WneaMOEslDDzAa89Z7tdPXxyUDEIdE28WQPNoTBHud0QUZQ VOh+XKxuR8GzbhPOXH1TSNwtAYiy0gEZ4uUoJYOgO7FTGAhY7J0JyGliY7UzdOaR RuH8sRRrisBjTIcIT/yLhkKo334deGrZlk3N5o9Cz85Pi3dAkGjBDSGJT4E5voqr muPd9250RSRxmqhbZiwI =u+Zq -----END PGP SIGNATURE----- --tOMrFoLUA4gDWXOnuoEoH4SvOd52lOAuv-- From owner-freebsd-ports@freebsd.org Fri Jan 20 16:58:09 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F5EDCB9228 for ; Fri, 20 Jan 2017 16:58:09 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B4501003 for ; Fri, 20 Jan 2017 16:58:08 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 6B021BDC91; Fri, 20 Jan 2017 17:58:06 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id E18BEBDC89; Fri, 20 Jan 2017 17:58:05 +0100 (CET) Subject: Re: FreeBSD ports: mod_jail and mod_myvhost apache modules To: Igor Popov , ports-list freebsd References: From: Mathieu Arnold Organization: Absolight / The FreeBSD Foundation Message-ID: <2afaaf91-e0e5-56e0-8ae6-d7c7aa18bc3a@FreeBSD.org> Date: Fri, 20 Jan 2017 17:58:02 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 16:58:09 -0000 Le 20/01/2017 =C3=A0 11:02, Igor Popov a =C3=A9crit : > Hello. > I'm the author of the mod_jail and mod_myvhost apache modules that are > resides in FreeBSD's ports tree. Some time ago google announced that > "google code" project will be closed, so I have moved from "google > code" to github, As you know, github do not allow to store binary > files, so now modules are unfetchable. > > I want my modules to stay in ports tree, so I offer to store > compressed sources on other site. What do you thin about it? We have a framework to fetch from github repositories directly, please open a PR on https://bugs.freebsd.org/submit/ giving the new home for your apache modules so that the ports can be updated. --=20 Mathieu Arnold From owner-freebsd-ports@freebsd.org Fri Jan 20 18:30:14 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D0D7CB9EF8 for ; Fri, 20 Jan 2017 18:30:14 +0000 (UTC) (envelope-from febrero.EXT@sociedadesmexico.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8C2CF1974 for ; Fri, 20 Jan 2017 18:30:14 +0000 (UTC) (envelope-from febrero.EXT@sociedadesmexico.com) Received: by mailman.ysv.freebsd.org (Postfix) id 8B8E3CB9EF7; Fri, 20 Jan 2017 18:30:14 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B359CB9EF6 for ; Fri, 20 Jan 2017 18:30:14 +0000 (UTC) (envelope-from febrero.EXT@sociedadesmexico.com) Received: from mail3.sociedadesmexico.com (mail3.sociedadesmexico.com [74.120.220.245]) by mx1.freebsd.org (Postfix) with ESMTP id 692A71973 for ; Fri, 20 Jan 2017 18:30:14 +0000 (UTC) (envelope-from febrero.EXT@sociedadesmexico.com) Received: from dserv346-mtl8 (74.120.220.244) by mail3.sociedadesmexico.com id hg9bjk0our0p for ; Fri, 20 Jan 2017 11:31:47 -0600 (envelope-from ) X-NEB: DFINE08132 Message-ID: From: "=?utf-8?Q?Planifique_la_Capacitaci=C3=B3n_de_su_Equipo?=" To: Subject: =?utf-8?Q?Calendario_de_Capacitaci=C3=B3n_Febrero?= Date: Fri, 20 Jan 2017 11:31:47 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 18:30:14 -0000 Estimado Cliente: Le hacemos llegar el programa de capacitaci=C3=B3n correspondiente al mes = de Febrero del ao en curso=2E - Auditor=C3=ADas para la adquisici=C3=B3n de empresas: Due Diligence - 2 = de Febrero - Matem=C3=A1ticas Financieras y Evaluaci=C3=B3n de Proyectos de = Inversi=C3=B3n - 3 de Febrero=20 - Habilidades de Liderazgo y Trabajo en Equipo con Lego=C2=AE Serious = Play=C2=AE - 3 de Febrero=20 - El =C3=89xito en los Negocios y las Finanzas basado en el Modelo = Disney=C2=AE - 10 de Febrero=20 - Implementaci=C3=B3n de las NIIF 9 (reemplaza a la NIC 39) - 16 de = Febrero=20 - Curso Pr=C3=A1ctico de An=C3=A1lisis Financiero - 16 de marzo - La Asistente Asertiva, Activa y Efectiva - 23 de Febrero=20 - Taller de Grafolog=C3=ADa - 23 de Febrero=20 - Estrategias de Negociaci=C3=B3n de Compras - 24 de Febrero=20 Para Obtener Informaci=C3=B3n Completa, responda este correo con los = siguientes datos: Nombre,Empresa,Tel=C3=A9fono,Curso. De igual manera = Puede llamarnos sin compromiso al 018002120744. From owner-freebsd-ports@freebsd.org Fri Jan 20 18:35:54 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F930CB917E for ; Fri, 20 Jan 2017 18:35:54 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3F8931DA9 for ; Fri, 20 Jan 2017 18:35:54 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: by mailman.ysv.freebsd.org (Postfix) id 3EDA2CB917D; Fri, 20 Jan 2017 18:35:54 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E86BCB917C for ; Fri, 20 Jan 2017 18:35:54 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.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 28E001DA7 for ; Fri, 20 Jan 2017 18:35:53 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.88) (envelope-from ) id 1cUe2B-000P1r-V0 for ports@freebsd.org; Fri, 20 Jan 2017 11:35:35 -0700 Date: Fri, 20 Jan 2017 11:35:35 -0700 From: The Doctor To: ports@freebsd.org Subject: libkml and flsh plugin issues Message-ID: <20170120183535.GA93874@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2017 18:35:54 -0000 !) Libkml will not fully compile --- src/kml/base/CMakeFiles/kmlbase.dir/date_time.cc.o --- /usr/ports/science/libkml/work/libkml-1.3.0/src/kml/base/date_time.cc:66:18: error: out-of-line definition of 'GetTimeT' does not match any declaration in 'kmlbase::DateTime' time_t DateTime::GetTimeT() const { ^~~~~~~~ /usr/local/include/kml/base/date_time.h:52:10: note: member declaration does not match because it is not const qualified time_t GetTimeT() /* const */; ^ ~ 1 error generated. *** [src/kml/base/CMakeFiles/kmlbase.dir/date_time.cc.o] Error code 1 make[4]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 --- examples/hellonet/CMakeFiles/curlfetch.dir/all --- A failure has been detected in another branch of the parallel make make[4]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 *** [examples/hellonet/CMakeFiles/curlfetch.dir/all] Error code 2 make[3]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 --- examples/helloworld/CMakeFiles/helloutil.dir/all --- A failure has been detected in another branch of the parallel make make[4]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 *** [examples/helloworld/CMakeFiles/helloutil.dir/all] Error code 2 make[3]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 --- src/kml/base/CMakeFiles/kmlbase.dir/all --- 1 error make[4]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 *** [src/kml/base/CMakeFiles/kmlbase.dir/all] Error code 2 make[3]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 3 errors make[3]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 *** [all] Error code 2 make[2]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 1 error make[2]: stopped in /usr/ports/science/libkml/work/libkml-1.3.0 ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make[1]: stopped in /usr/ports/science/libkml *** Error code 1 Stop. make: stopped in /usr/ports/science/libkml ===>>> make build failed for science/libkml ===>>> Aborting update ===>>> Update for science/libkml failed ===>>> Aborting update Any resaon why this showstopper is happening? 2) www/linux-flashplayer ===>>> Port directory: /usr/ports/www/linux-flashplayer ===>>> Gathering distinfo list for installed ports ===>>> Launching 'make checksum' for www/linux-flashplayer in background ===>>> Gathering dependency list for www/linux-flashplayer from ports ===>>> Initial dependency check complete for www/linux-flashplayer ===>>> Starting build for www/linux-flashplayer <<<=== ===>>> All dependencies are up to date ===> Cleaning for linux-flashplayer-24.0.0.194 ===> linux-flashplayer-24.0.0.194 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by linux-flashplayer-24.0.0.194 for building ===> Extracting for linux-flashplayer-24.0.0.194 => SHA256 Checksum OK for flashplayer/24.0.0.194/flash_player_npapi_linux.i386.tar.gz. ===> Patching for linux-flashplayer-24.0.0.194 ===> Configuring for linux-flashplayer-24.0.0.194 ===> Staging for linux-flashplayer-24.0.0.194 ===> Generating temporary packing list /bin/mkdir -p /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/linux-flashplayer install -m 444 /usr/ports/www/linux-flashplayer/work/linux-flashplayer-24.0.0.194/libflashplayer.so /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/linux-flashplayer install -m 555 /usr/ports/www/linux-flashplayer/work/linux-flashplayer-24.0.0.194/usr/bin/flash-player-properties /usr/ports/www/linux-flashplayer/work/stage/usr/local/bin install -m 0644 /usr/ports/www/linux-flashplayer/work/linux-flashplayer-24.0.0.194/usr/share/applications/flash-player-properties.desktop /usr/ports/www/linux-flashplayer/work/stage/usr/local/share/applications (cd /usr/ports/www/linux-flashplayer/work/linux-flashplayer-24.0.0.194/usr/share/icons && /bin/sh -c '(/usr/bin/find -Ed $0 $2 | /usr/bin/cpio -dumpl $1 >/dev/null 2>&1) && /usr/bin/find -Ed $0 $2 \( -type d -exec /bin/sh -c '\''cd '\''$1'\'' && chmod 755 "$@"'\'' -- . {} + -o -type f -exec /bin/sh -c '\''cd '\''$1'\'' && chmod 444 "$@"'\'' -- . {} + \)' -- hicolor /usr/ports/www/linux-flashplayer/work/stage/usr/local/share/icons) /bin/mkdir -p /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-firefox /bin/ln -sf /usr/local/lib/browser_plugins/linux-flashplayer/libflashplayer.so /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-firefox/ /bin/mkdir -p /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-opera /bin/ln -sf /usr/local/lib/browser_plugins/linux-flashplayer/libflashplayer.so /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-opera/ /bin/mkdir -p /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-opera-devel /bin/ln -sf /usr/local/lib/browser_plugins/linux-flashplayer/libflashplayer.so /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-opera-devel/ /bin/mkdir -p /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-seamonkey /bin/ln -sf /usr/local/lib/browser_plugins/linux-flashplayer/libflashplayer.so /usr/ports/www/linux-flashplayer/work/stage/usr/local/lib/browser_plugins/symlinks/linux-seamonkey/ ====> Compressing man pages (compress-man) ===> Installing for linux-flashplayer-24.0.0.194 ===> Checking if linux-flashplayer already installed ===> Registering installation for linux-flashplayer-24.0.0.194 Installing linux-flashplayer-24.0.0.194... pkg-static: linux-flashplayer-24.0.0.194 conflicts with linux-c7-flashplugin-24.0.0.186 (installs files into the same place). Problematic file: /usr/local/lib/browser_plugins/symlinks/linux-firefox/libflashplayer.so *** Error code 70 Stop. make: stopped in /usr/ports/www/linux-flashplayer ===>>> Installation of linux-flashplayer-24.0.0.194 (www/linux-flashplayer) failed ===>>> Aborting update What is stopping the show here? -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca God,Queen and country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism Birthdate 29 Jan 1969 Redhill Surrey England From owner-freebsd-ports@freebsd.org Sat Jan 21 07:51:34 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 103A8CBADFA for ; Sat, 21 Jan 2017 07:51:34 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id F1C9E1847 for ; Sat, 21 Jan 2017 07:51:33 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id F1226CBADF8; Sat, 21 Jan 2017 07:51:33 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF2FECBADF7 for ; Sat, 21 Jan 2017 07:51:33 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.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 E27E21845 for ; Sat, 21 Jan 2017 07:51:33 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org ([127.0.1.123]) by portscout.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v0L7pXEo068220 for ; Sat, 21 Jan 2017 07:51:33 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v0L7pXLm068219; Sat, 21 Jan 2017 07:51:33 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201701210751.v0L7pXLm068219@portscout.ysv.freebsd.org> X-Authentication-Warning: portscout.ysv.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, 21 Jan 2017 07:51:33 +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.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 07:51:34 -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 ------------------------------------------------+-----------------+------------ net-mgmt/mk-livestatus | 1.2.8p15 | 1.2.8p16 ------------------------------------------------+-----------------+------------ 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 Jan 21 14:13:27 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5848DCBBD73 for ; Sat, 21 Jan 2017 14:13:27 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 481BF967 for ; Sat, 21 Jan 2017 14:13:27 +0000 (UTC) (envelope-from lists@opsec.eu) Received: by mailman.ysv.freebsd.org (Postfix) id 422D5CBBD70; Sat, 21 Jan 2017 14:13:27 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F937CBBD6E; Sat, 21 Jan 2017 14:13:27 +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 EF2C1965; Sat, 21 Jan 2017 14:13:26 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.87 (FreeBSD)) (envelope-from ) id 1cUwQ2-000Lx9-Ox; Sat, 21 Jan 2017 15:13:26 +0100 Date: Sat, 21 Jan 2017 15:13:26 +0100 From: Kurt Jaeger To: Steve Wills Cc: ports@freebsd.org, emulation@FreeBSD.org, virtualization@FreeBSD.org Subject: Re: [CFT] emulators/open-vm-tools{,-nox11} update to 10.1.0 Message-ID: <20170121141326.GK13006@home.opsec.eu> References: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <64b8d45d-2953-fc08-0c79-87bf3510c5b1@FreeBSD.org> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 14:13:27 -0000 Hi! > I'd like anyone possible to test an updated version of > emulators/open-vm-tools{,-nox11}. I have the patch here for those who > wish to build themselves: > > https://people.freebsd.org/~swills/open-vm-tools/open-vm-tools-10.1.0.diff I tried to built it on 12.0-CURRENT FreeBSD 12.0-CURRENT #0 r307013:311651M (why does it say r307013:311651M, btw?) and it failed to build with: utilBacktrace.c:155:20: error: implicit declaration of function '_Unwind_GetCFA' is invalid in C99 [-Werror,-Wimplicit-function-declaration] uintptr_t cfa = _Unwind_GetCFA(ctx); ^ utilBacktrace.c:357:4: error: implicit declaration of function '_Unwind_Backtrace' is invalid in C99 [-Werror,-Wimplicit-function-declaration] _Unwind_Backtrace(UtilBacktraceFromPointerCallback, &data); ^ utilBacktrace.c:357:4: note: did you mean 'Util_Backtrace'? Any ideas ? -- pi@opsec.eu +49 171 3101372 3 years to go ! From owner-freebsd-ports@freebsd.org Sat Jan 21 20:36:47 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9516FCBBAE2 for ; Sat, 21 Jan 2017 20:36:47 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-wm0-x232.google.com (mail-wm0-x232.google.com [IPv6:2a00:1450:400c:c09::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DD341285 for ; Sat, 21 Jan 2017 20:36:47 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: by mail-wm0-x232.google.com with SMTP id r144so95653872wme.1 for ; Sat, 21 Jan 2017 12:36:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:from:date:message-id:subject:to; bh=PzN2925Bn01xUwAyMr/ebXHSkN7P4yB1SrbGtzIiweI=; b=rocmvVF3xtXKfVD1Bo5XgnYzByzZkZWAkOHgnhT8zO1BXRTfyE4FD7jb+LtCSAtQCB QLvNwY/sWH6DQnmF9BcoZQpy3q6yTAoOLi1+Kzy7XPgyWw7v3Ec/wga2pb38N+ZaB6Yt OrAcOgyKA3rPQNwgCu1qojNVnOsCq/WMu3vzXqKVCrDL13KWtYFxj0zAma5Q0j2gB0In b04V6FlHVLMW7PpmrKNAzN0fMVZyYPuZQE7QEJCGzgIcRfIhlShFOoOBigGhQJbcmFKR js/dD6id1SUvc91CPNYiX6l1/mGnt/Q5nrHRrtwgF3G05oAGeFB9ByKMh2ppjl7yasu+ jjSA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:from:date:message-id:subject :to; bh=PzN2925Bn01xUwAyMr/ebXHSkN7P4yB1SrbGtzIiweI=; b=RryCVsLG4Hidt5uLGpr2/znWvaVdx+LqjmacPevt+PrvQLRseuYQAI3p1FwuhrWblS iBUWdOU646TNQ33Tjg+YmTolsLbOCsdcEXhA+BsnPQzxbqcqWFp9UcyLLq23BaG8X+xv jyuxepN4/EC6GkNEYm0UgB/EY7U1iJCVFUGlvkfZnQ7VuawXGdZVDqN+rNrTfCDzGRUW 3if7aP/g8mh7EDy9KEnN1WxSu7DMzBdKGJ4oFHPSiWsrvC+SrlubRcFVXz0V3WoZkKO6 ItBZ4Mst4t3ae4R6YhKnYr74qfzQTLKyQfLHkLwjCsDNDR4y4Mw6AYViNekwuVfsWosb 9ing== X-Gm-Message-State: AIkVDXJIG9TmySzf16T5/f4eH6H+c0cN4utjQHiciYz1m5dNecKR5jqaLcOjB9ta6MOrgwjnNEE5wHxziAcCmA== X-Received: by 10.223.169.85 with SMTP id u79mr17209160wrc.169.1485031005313; Sat, 21 Jan 2017 12:36:45 -0800 (PST) MIME-Version: 1.0 Sender: kob6558@gmail.com Received: by 10.28.41.194 with HTTP; Sat, 21 Jan 2017 12:36:36 -0800 (PST) From: Kevin Oberman Date: Sat, 21 Jan 2017 12:36:36 -0800 X-Google-Sender-Auth: F8JWi2yPNFsX0RXZNxEItZZlnLs Message-ID: Subject: Help for security update to net/libvncserver (215802) To: FreeBSD Ports ML Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 20:36:47 -0000 See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215802 A CVE has been out for libvncserver for a couple of weeks and Vladimir Krstulja has submitted a patch to move to the fixed version in bug 215802. As it is needed for VirtualBox remote access, I'd really like to see this committed. The patch is rather trivial. I don't know what other ports use net/libnvcserver, so there may be issues for which I am unaware, but I'd love to have a committer take a look at it. Thanks, -- Kevin Oberman, Part time kid herder and retired Network Engineer E-mail: rkoberman@gmail.com PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683 From owner-freebsd-ports@freebsd.org Sat Jan 21 21:06:14 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE99CCBA26C for ; Sat, 21 Jan 2017 21:06:14 +0000 (UTC) (envelope-from sshterminal@zoho.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9A104C8 for ; Sat, 21 Jan 2017 21:06:14 +0000 (UTC) (envelope-from sshterminal@zoho.com) Received: by mailman.ysv.freebsd.org (Postfix) id 9651DCBA26B; Sat, 21 Jan 2017 21:06:14 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95F3DCBA26A for ; Sat, 21 Jan 2017 21:06:14 +0000 (UTC) (envelope-from sshterminal@zoho.com) Received: from sender153-mail.zoho.com (sender153-mail.zoho.com [74.201.84.153]) (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 86531C7 for ; Sat, 21 Jan 2017 21:06:14 +0000 (UTC) (envelope-from sshterminal@zoho.com) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=date:from:to:message-id:subject:mime-version:content-type:user-agent; b=baci9to0/PiCh0dZFC1ESoFWBcfcSd9Y8qmi3Yifrk8H6qTn+y4eq3RU4QAWnjWiTFNCI0jaYgXn i4zD0kFl7V/qPPWgSLaMJzd53pK6k71hFMyJEz/bK42KcYgS9AZW Received: from mail.zoho.com by mx.zohomail.com with SMTP id 1485032762624294.02816724657555; Sat, 21 Jan 2017 13:06:02 -0800 (PST) Received: from [205.154.244.243] by mail.zoho.com with HTTP;Sat, 21 Jan 2017 13:06:02 -0800 (PST) Date: Sat, 21 Jan 2017 13:06:02 -0800 From: Gene Paulson To: Message-Id: <159c2d9acfc.106e096c625666.7478124494258429676@zoho.com> Subject: FreeBSD Port: www/links-hacked MIME-Version: 1.0 X-Priority: Normal User-Agent: Zoho Mail X-Mailer: Zoho Mail X-Zoho-Virus-Status: 2 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 21:06:14 -0000 How do I uninstall links-hacked ? From owner-freebsd-ports@freebsd.org Sat Jan 21 22:21:55 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D58BC6DDEE for ; Sat, 21 Jan 2017 22:21:55 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from taro.utanet.at (taro.utanet.at [IPv6:2001:938:1337:25::25:45]) (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 A94EF277 for ; Sat, 21 Jan 2017 22:21:54 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=V25gJfV0p1+qadU8wOhgtIvZcym8yVWXcL3D7OdGPEU=; b=FZk67rmPUPpgi7Z8ECddfD4mAAG/P6uJIBu63rGyDM8Mvm4x8t566BpSAJg0tE0k/Y++KtpX65XkHbmj9jaYDLV8w7ha0blIoYViy0JyG0p4Xf7GH2nEA4AupoVo83HeJe5ZwWvxH/A3NHlDn9+rHEEGWF6Nwvv/4QvyyJMwk14=; Received: from plenty.xoc.tele2net.at ([213.90.36.8]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cV42f-0007i1-SH for freebsd-ports@freebsd.org; Sat, 21 Jan 2017 23:21:49 +0100 Received: from 194-96-162-183.adsl.highway.telekom.at ([194.96.162.183] helo=[10.0.0.93]) by plenty.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cV42f-0002mV-PS for freebsd-ports@freebsd.org; Sat, 21 Jan 2017 23:21:49 +0100 To: freebsd-ports@freebsd.org References: <20170120183535.GA93874@doctor.nl2k.ab.ca> Subject: Re: libkml and flsh plugin issues From: Walter Schwarzenfeld Message-ID: <741e57cc-7c83-8f7a-43ca-d760bec380d2@utanet.at> Date: Sat, 21 Jan 2017 23:21:44 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170120183535.GA93874@doctor.nl2k.ab.ca> X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 22:21:55 -0000 for science/libkml I found this https://github.com/libkml/libkml/issues/207 down on this site |fix issue #207 https://github.com/rashadkm/libkml/commit/bb186ef8bc18261a8f8386dd84307282f20b9439 for flashplayer simply remove the old | /usr/local/lib/browser_plugins/symlinks/linux-firefox/libflashplayer.so. From owner-freebsd-ports@freebsd.org Sat Jan 21 22:34:50 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C125BCBB23A for ; Sat, 21 Jan 2017 22:34:50 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from tatiana.utanet.at (tatiana.utanet.at [IPv6:2001:938:1337:25::25:46]) (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 4F013C09 for ; Sat, 21 Jan 2017 22:34:50 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=EaWc7eKPD8MC83Jx9sJZNoD6b9cTgshRSCW94+F7LC8=; b=IJcXKXi6HKxlWi7cK7Nepn5VD+7EOyDsLgVVdi0IOoZk93i2QzHE3i5FOAVmqGu2VuDFahg6YCEDI13OsyTOgO1GKp2YnwYg6ZhLy3a05y7TvM7KcFXkmJKk09m7nPQeJEkm6IZ9i/7gSVJpnRMYAb2K89zY+xWjK9IoZKJ4GYs=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cV4FE-0007VH-5F for freebsd-ports@freebsd.org; Sat, 21 Jan 2017 23:34:48 +0100 Received: from 194-96-162-183.adsl.highway.telekom.at ([194.96.162.183] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cV4FE-0006Rg-2u for freebsd-ports@freebsd.org; Sat, 21 Jan 2017 23:34:48 +0100 To: freebsd-ports@freebsd.org References: <741e57cc-7c83-8f7a-43ca-d760bec380d2@utanet.at> Subject: Re: libkml and flsh plugin issues From: Walter Schwarzenfeld Message-ID: <8c1088b1-9d3c-6fd9-599b-7759e7839b4e@utanet.at> Date: Sat, 21 Jan 2017 23:34:45 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <741e57cc-7c83-8f7a-43ca-d760bec380d2@utanet.at> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 22:34:50 -0000 or try this patch-CMakeLists.txt --- CMakeLists.txt 2017-01-21 22:28:39 UTC +++ CMakeLists.txt @@ -19,6 +19,8 @@ option(WITH_SWIG "Build all swig bindi option(WITH_PYTHON "Build python bindings" OFF) option(WITH_JAVA "Build java bindings" OFF) +set(CMAKE_INCLUDE_DIRECTORIES_BEFORE ON) + set(LIBKML_DATA_DIR ${CMAKE_SOURCE_DIR}/testdata CACHE "Directory containing test data" PATH) #AM_CXXFLAGS = -Wall -Wextra -Wno-unused-parameter -pedantic -fno-rtti @@ -215,4 +217,4 @@ install(FILES DESTINATION "${CMAKE_INSTALL_DIR}" ) # Install the export set for use with the install-tree -install(EXPORT LibKMLTargets DESTINATION "${CMAKE_INSTALL_DIR}") \ No newline at end of file +install(EXPORT LibKMLTargets DESTINATION "${CMAKE_INSTALL_DIR}") ---- It compiles on my system with this patch, but I don't habe this error - you have to test it. From owner-freebsd-ports@freebsd.org Sat Jan 21 22:49:40 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44AE3CBB81D for ; Sat, 21 Jan 2017 22:49:40 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.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 2D77269E for ; Sat, 21 Jan 2017 22:49:39 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.88) (envelope-from ) id 1cV4Sp-0008qY-8v; Sat, 21 Jan 2017 15:48:51 -0700 Date: Sat, 21 Jan 2017 15:48:51 -0700 From: The Doctor To: Walter Schwarzenfeld Cc: freebsd-ports@freebsd.org Subject: Re: libkml and flsh plugin issues Message-ID: <20170121224851.GA33682@doctor.nl2k.ab.ca> References: <20170120183535.GA93874@doctor.nl2k.ab.ca> <741e57cc-7c83-8f7a-43ca-d760bec380d2@utanet.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <741e57cc-7c83-8f7a-43ca-d760bec380d2@utanet.at> User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 22:49:40 -0000 On Sat, Jan 21, 2017 at 11:21:44PM +0100, Walter Schwarzenfeld wrote: > for science/libkml I found this > https://github.com/libkml/libkml/issues/207 > down on this site > |fix issue > > #207 > https://github.com/rashadkm/libkml/commit/bb186ef8bc18261a8f8386dd84307282f20b9439 > Hopefully. > for flashplayer > simply remove the old | > > /usr/local/lib/browser_plugins/symlinks/linux-firefox/libflashplayer.so. > No such file or directory. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca God,Queen and country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism Birthdate 29 Jan 1969 Redhill Surrey England From owner-freebsd-ports@freebsd.org Sat Jan 21 22:50:37 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF3B7CBB959 for ; Sat, 21 Jan 2017 22:50:37 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.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 9107B7FA for ; Sat, 21 Jan 2017 22:50:37 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.88) (envelope-from ) id 1cV4Tp-00091p-2V; Sat, 21 Jan 2017 15:49:53 -0700 Date: Sat, 21 Jan 2017 15:49:53 -0700 From: The Doctor To: Walter Schwarzenfeld Cc: freebsd-ports@freebsd.org Subject: Re: libkml and flsh plugin issues Message-ID: <20170121224953.GB33682@doctor.nl2k.ab.ca> References: <741e57cc-7c83-8f7a-43ca-d760bec380d2@utanet.at> <8c1088b1-9d3c-6fd9-599b-7759e7839b4e@utanet.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8c1088b1-9d3c-6fd9-599b-7759e7839b4e@utanet.at> User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 22:50:37 -0000 On Sat, Jan 21, 2017 at 11:34:45PM +0100, Walter Schwarzenfeld wrote: > or try this > > patch-CMakeLists.txt > > --- CMakeLists.txt 2017-01-21 22:28:39 UTC > +++ CMakeLists.txt > @@ -19,6 +19,8 @@ option(WITH_SWIG "Build all swig bindi > option(WITH_PYTHON "Build python bindings" OFF) > option(WITH_JAVA "Build java bindings" OFF) > > +set(CMAKE_INCLUDE_DIRECTORIES_BEFORE ON) > + > set(LIBKML_DATA_DIR ${CMAKE_SOURCE_DIR}/testdata CACHE "Directory > containing test data" PATH) > > #AM_CXXFLAGS = -Wall -Wextra -Wno-unused-parameter -pedantic -fno-rtti > @@ -215,4 +217,4 @@ install(FILES > DESTINATION "${CMAKE_INSTALL_DIR}" ) > > # Install the export set for use with the install-tree > -install(EXPORT LibKMLTargets DESTINATION "${CMAKE_INSTALL_DIR}") > \ No newline at end of file > +install(EXPORT LibKMLTargets DESTINATION "${CMAKE_INSTALL_DIR}") > Is this in the snapshot? > > ---- > It compiles on my system with this patch, but I don't habe this error - > you have to test it. > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca God,Queen and country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism Birthdate 29 Jan 1969 Redhill Surrey England From owner-freebsd-ports@freebsd.org Sat Jan 21 23:03:41 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD8FACBBD17 for ; Sat, 21 Jan 2017 23:03:41 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from tatiana.utanet.at (tatiana.utanet.at [IPv6:2001:938:1337:25::25:46]) (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 8DC5DDEF for ; Sat, 21 Jan 2017 23:03:41 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=Zsjo1wH1bA13gzoks3Eie/A5bxvdY/tQ93kq5MRACWE=; b=Qp5tn1Givs31l+pjImK7c7xwex722X3MytM3azEqe7xer3G4LkrCh0LDOSTiCNWGmdvKUiApvRzTmnm29KN1b6RX7gfnCt7dsec++R5zkVl22RgTwJOgDO9l/wZQyNO8BirLKQ02eL/BsnxTgpBzvxdGS3TvzpCb3K8LOtfEsmg=; Received: from pam.xoc.tele2net.at ([213.90.36.6]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cV4h9-0005KH-98 for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:03:39 +0100 Received: from 194-96-162-183.adsl.highway.telekom.at ([194.96.162.183] helo=[10.0.0.93]) by pam.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cV4h9-0001o5-7N for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:03:39 +0100 To: freebsd-ports@freebsd.org References: <20170121224851.GA33682@doctor.nl2k.ab.ca> Subject: Re: libkml and flsh plugin issues From: Walter Schwarzenfeld Message-ID: Date: Sun, 22 Jan 2017 00:03:34 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170121224851.GA33682@doctor.nl2k.ab.ca> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 23:03:41 -0000 Deinstall linux-c7-flashplugin, From owner-freebsd-ports@freebsd.org Sat Jan 21 23:06:17 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05600CBBDBD for ; Sat, 21 Jan 2017 23:06:17 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from tatiana.utanet.at (tatiana.utanet.at [IPv6:2001:938:1337:25::25:46]) (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 BB8A9EA4 for ; Sat, 21 Jan 2017 23:06:16 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=DDyb8WRHTS9ufilmCjSLCNswu48EySRPdQVq24olrdA=; b=LAOKoAcbdn49sZrsOTiB8fQaDpejxKsiXm6sXOX6Qet67nkRupekFhb1UHekLaY0b7X9LzGYtdCRMWY+aX+F8/C2JuzVH9TJKdxKyQHBOvAsDF4Ngh4tpL0APxrLuIGh6lecHdCav8yYkPC+iQIzNCzxthSrB7uCPMfxX2y+GKo=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cV4je-00066Y-QS for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:06:14 +0100 Received: from 194-96-162-183.adsl.highway.telekom.at ([194.96.162.183] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cV4je-0000LU-OH for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:06:14 +0100 To: freebsd-ports@freebsd.org References: <20170121224953.GB33682@doctor.nl2k.ab.ca> Subject: Re: libkml and flsh plugin issues From: Walter Schwarzenfeld Message-ID: <9b0d0090-32cb-228d-e258-00653f39d873@utanet.at> Date: Sun, 22 Jan 2017 00:06:13 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170121224953.GB33682@doctor.nl2k.ab.ca> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 23:06:17 -0000 After reading the link I wrote thie patch. cp it from the beginning with ---CMakeLists.tx Name this file patch-CMakeLists_txt and cp it to the science/libkml/files directory. From owner-freebsd-ports@freebsd.org Sat Jan 21 23:23:41 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 347C7CBB5E3 for ; Sat, 21 Jan 2017 23:23:41 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.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 1AF87D79 for ; Sat, 21 Jan 2017 23:23:40 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.88) (envelope-from ) id 1cV501-000BO4-W3; Sat, 21 Jan 2017 16:23:09 -0700 Date: Sat, 21 Jan 2017 16:23:09 -0700 From: The Doctor To: Walter Schwarzenfeld Cc: freebsd-ports@freebsd.org Subject: Re: libkml and flsh plugin issues Message-ID: <20170121232309.GA43579@doctor.nl2k.ab.ca> References: <20170121224851.GA33682@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 23:23:41 -0000 On Sun, Jan 22, 2017 at 12:03:34AM +0100, Walter Schwarzenfeld wrote: > Deinstall > > linux-c7-flashplugin, > Still won't work. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca God,Queen and country!Never Satan President Republic!Beware AntiChrist rising! http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism Birthdate 29 Jan 1969 Redhill Surrey England From owner-freebsd-ports@freebsd.org Sat Jan 21 23:30:17 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A180ACBB86E for ; Sat, 21 Jan 2017 23:30:17 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from tatiana.utanet.at (tatiana.utanet.at [IPv6:2001:938:1337:25::25:46]) (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 6314E133 for ; Sat, 21 Jan 2017 23:30:17 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=laLJuXr3NR0oj0oyC0LAwxhFZJVnia8tOFGU5MLPuI8=; b=ZzGcJ1j/6yVqyOSPzfMnOdV9rv6RVFI8S6ZrYKVVcEGKgUnPJtZP4UVOqBUgOrlwAiPbqU2jF2cC9Pu0GG9nedDVo+552E0NDTxQIxThSCz/5uQtAY1DbotNWhhaq7axPDVl+l5wUdcPJ6uBwLQ83VwKTMyOvofs7+NP8KSkfaU=; Received: from plenty.xoc.tele2net.at ([213.90.36.8]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cV56s-0002lr-SE for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:30:14 +0100 Received: from 188-23-12-113.adsl.highway.telekom.at ([188.23.12.113] helo=[10.0.0.93]) by plenty.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cV56s-0000hz-QT for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:30:14 +0100 To: freebsd-ports@freebsd.org References: <20170121232309.GA43579@doctor.nl2k.ab.ca> Subject: Re: libkml and flsh plugin issues From: Walter Schwarzenfeld Message-ID: <92abea17-c3fd-59b1-b3b6-2148604ba6d3@utanet.at> Date: Sun, 22 Jan 2017 00:30:13 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170121232309.GA43579@doctor.nl2k.ab.ca> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 23:30:17 -0000 locate flashplayer.so remove all of them from the locate output. From owner-freebsd-ports@freebsd.org Sat Jan 21 23:40:01 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28E00CBBE43 for ; Sat, 21 Jan 2017 23:40:01 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from taro.utanet.at (taro.utanet.at [IPv6:2001:938:1337:25::25:45]) (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 DEA90C40 for ; Sat, 21 Jan 2017 23:40:00 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=dfYoTG+k0+PbTbRdMV6cI3zlIYJd0B2EEXbUN7IGttI=; b=Kkg2dflQj17ctEf4l+DV5uEzV3KgqTg2AAZYC/gXwOh9TmhdnOfBuQDrlPkUg116rBYlUyzEP+zJYOK4/Q71fbXixjmBwcGuG6USz28KSl7y546LHZcUPF3PzbILL3i4O3b1z5iwqfR6aMcosWMVUGhYQWh1yaVK1cPIQCxwNd4=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1cV5GI-0007u8-Gb for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:39:58 +0100 Received: from 188-23-12-113.adsl.highway.telekom.at ([188.23.12.113] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1cV5GI-0003H8-ER for freebsd-ports@freebsd.org; Sun, 22 Jan 2017 00:39:58 +0100 To: freebsd-ports@freebsd.org References: <92abea17-c3fd-59b1-b3b6-2148604ba6d3@utanet.at> Subject: Re: libkml and flsh plugin issues From: Walter Schwarzenfeld Message-ID: <8511c6c2-4787-240b-d757-db288f99e029@utanet.at> Date: Sun, 22 Jan 2017 00:39:57 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0 MIME-Version: 1.0 In-Reply-To: <92abea17-c3fd-59b1-b3b6-2148604ba6d3@utanet.at> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 23:40:01 -0000 If for any reason ever the directory /usr/local/lib/browser_plugins/linux-flashplayer does not exists, create it with mkdir -p /usr/local/lib/browser_plugins/linux-flashplayer From owner-freebsd-ports@freebsd.org Sat Jan 21 23:57:32 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 842AFCBB7D5 for ; Sat, 21 Jan 2017 23:57:32 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 62C7D912 for ; Sat, 21 Jan 2017 23:57:32 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 620AFCBB7D4; Sat, 21 Jan 2017 23:57:32 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61A97CBB7D3 for ; Sat, 21 Jan 2017 23:57:32 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-wm0-x235.google.com (mail-wm0-x235.google.com [IPv6:2a00:1450:400c:c09::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F0DAF911 for ; Sat, 21 Jan 2017 23:57:31 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: by mail-wm0-x235.google.com with SMTP id d140so23625753wmd.0 for ; Sat, 21 Jan 2017 15:57:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=tC85oG3VjX/TLsBftfBfK43fj9PCOWLXEDKRGe/Cs9Y=; b=sIYAqV++17IyD51LicsbYTQ+4GX+87Z+3fXzbM6JkadA5FRHXehdFap4iaNs7fOIG9 x3f/cKch1saizX6T8rkihJpf6h1vRfl8hjaoWYdrTX/tYC2/fWV3DIKXTP49NhQtTtz1 OP/FzgrjNR0/ri1w7yYljQh6cSwT7wuyo9ENy3bHKmfS1XPk7uQvpCJi5ikU0UsvqgEg F3ATEno9DqHw4ZHiAFw6aDVAs+LtHEFsmKnK43KxSnGry2E5IQZE/sN4ComPz+uybDfw GVK7l83MM9WZNSOXIYreOQiKjdhWDBJGjD5aHemG6GzDPzGDYgKZcV4TKVQ+gqFMz0nr rTQA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=tC85oG3VjX/TLsBftfBfK43fj9PCOWLXEDKRGe/Cs9Y=; b=f5a+YxbijaSbxoIq6BCcG87e6BeN5XdUhmtsZRvzlyzRjqRZjxIl/5vWg5L8d6n7Ze rhSzDuBTN0ZgQJyvCHTBShlEUiJSTTYEfNj0YuIMqD74nrD/lgMx1HfWxkcZ8E3ysWAZ uqCK2mXCntKIZHvyDBFvaTsajxms2oyrotWgoIyr793xp76Qtpu7NmfdwQiCX/qqbCX9 BglJF5ZiRxz8Dbs/Vf81TfsLyqo1omTbWR3eaeW4psr2V8vVnNeVVkyAnOIdgUCRaVh7 +QC3UqgVEUAU3iLGGZjIaY6FdsNxIEMPm+9ReYUgZrEonM6rPnASjP2rZmeHFLRVJ8U5 4LIw== X-Gm-Message-State: AIkVDXJ+SMjJ21UWG/YmmWgd82YWBqIfP/GxkTdr53eDiITVympZ6ofGYWSgoOgDGWLWjr1pREOknuNQPOuvsg== X-Received: by 10.223.153.144 with SMTP id y16mr17265915wrb.81.1485043050116; Sat, 21 Jan 2017 15:57:30 -0800 (PST) MIME-Version: 1.0 Sender: kob6558@gmail.com Received: by 10.28.41.194 with HTTP; Sat, 21 Jan 2017 15:57:29 -0800 (PST) In-Reply-To: <159c2d9acfc.106e096c625666.7478124494258429676@zoho.com> References: <159c2d9acfc.106e096c625666.7478124494258429676@zoho.com> From: Kevin Oberman Date: Sat, 21 Jan 2017 15:57:29 -0800 X-Google-Sender-Auth: 90BurjXfysAOnuujK6lC1xIp0rY Message-ID: Subject: Re: FreeBSD Port: www/links-hacked To: Gene Paulson Cc: "ports@FreeBSD.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2017 23:57:32 -0000 On Sat, Jan 21, 2017 at 1:06 PM, Gene Paulson wrote: > How do I uninstall links-hacked ? > # pkg delete links-hacked (See FreeBSD Handbook section on ports and packages.) -- Kevin Oberman, Part time kid herder and retired Network Engineer E-mail: rkoberman@gmail.com PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683