From owner-freebsd-ports@freebsd.org Sun May 21 02:10: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 E4F73D758AD for ; Sun, 21 May 2017 02:10:47 +0000 (UTC) (envelope-from jmd@freebsd.org) Received: from www.poelloepaeae.de (v22017034403546374.happysrv.de [188.68.38.182]) (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 7AC4B1A53 for ; Sun, 21 May 2017 02:10:46 +0000 (UTC) (envelope-from jmd@freebsd.org) Received: from manray.ogolem.org (c-24-0-62-205.hsd1.nj.comcast.net [24.0.62.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by www.poelloepaeae.de (Postfix) with ESMTPSA id BAF5518811A; Sat, 20 May 2017 23:57:49 +0200 (CEST) Date: Sat, 20 May 2017 17:57:42 -0400 From: Johannes M Dieterich To: Steve Kargl Cc: freebsd-ports@freebsd.org Subject: Re: devel/flang can't link static images Message-ID: <20170520175742.34937a0c@manray.ogolem.org> In-Reply-To: <20170520164737.GA32175@troutmask.apl.washington.edu> References: <20170520164737.GA32175@troutmask.apl.washington.edu> X-Mailer: Claws Mail 3.15.0 (GTK+ 2.24.31; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 May 2017 02:10:48 -0000 Dear Steve, thanks for your comments! As you noticed, the port is in a very early stage (so is flang itself, I think). The wrapper script is really more of a hack at the moment b/c the actual flang executable is unaware of the location of it's libraries and module files. So ideally I'd like ${PREFIX}/flang/bin/flang to "understand" where it's stuff is and what it needs. On Sat, 20 May 2017 09:47:37 -0700 Steve Kargl wrote: > Testing the new devel/flang port shows a number of issues with the > /usr/local/bin/flang wrapper routine. The contents of the wrapper are > > #!/bin/sh > /usr/local/flang/bin/flang -L/usr/local/flang/lib -lflang -lflangmain > \ -lflangrti -lexecinfo $@ > > where I have wrapped the long line. > > 1) Compile only uses the -c option. > > % flang -c a.f90 > clang-3.9: warning: -lflang: 'linker' input unused > clang-3.9: warning: -lflangmain: 'linker' input unused > clang-3.9: warning: -lflangrti: 'linker' input unused > clang-3.9: warning: -lexecinfo: 'linker' input unused > clang-3.9: warning: argument unused during compilation: > '-L/usr/local/flang/lib' > > These warnings are complete nonsense and caused by the inclusion of > the libraries on the command line and the -L option. This noise > can be suppressed by inclusion of the -w option. Fully agreed on the nonsense part. Now -w suppresses all warnings, which I feel is more than the user may have bargained for? > 2) The port installs a number modules and include files in > /usr/local/flang/include. Flang cannot automatically find these > files, so simple programs of the form > > use iso_fortran_env > print *, real_kinds > end > > fail. > > % flang -o z a.f90 > F90-F-0004-Unable to open MODULE file iso_fortran_env.mod (a.f90: 1) > F90/x86-64 FreeBSD Flang - 1.5 2017-05-01: compilation aborted > > This can be fixed by requiring the user to know to add > -I/usr/local/flang/include to her command line. A better > fix would be to include this option in the wrapper, so flang > can find the intrinsic modules. Happy to add that with the next update. > 3) flang cannot link static images. > > % flang -o z -static a.f90 |& grep undefined | wc -l > 105 > > There are 105 undefined references because required libraries are > missing. Here's just a few > > /usr/ports/devel/flang/work/flang-a9ccdd7/runtime/flangrti/llcrit.c:(.text._mp_copyin_move_multiple+0x17): > undefined reference to > `__kmpc_global_thread_num' /usr/ports/devel/flang/work/flang-a9ccdd7/runtime/flangrti/llcrit.c:(.text._mp_copyin_move_multiple+0x45): > undefined reference to > `__kmpc_threadprivate_cached' /usr/ports/devel/flang/work/flang-a9ccdd7/runtime/flangrti/llcrit.c:(.text._mp_copyin_move_multiple+0x59): > undefined reference to > `__kmpc_threadprivate_cached' /usr/ports/devel/flang/work/flang-a9ccdd7/runtime/flangrti/llcrit.c:(.text._mp_copyin_move_multiple+0x8d): > undefined reference to `__kmpc_barrier' > > /root/tmp/a-0fe0a5.o: In function `MAIN_': > /root/tmp/a-353577.ll:(.text+0x37): undefined reference to > `f90io_print_init' /root/tmp/a-353577.ll:(.text+0x4b): undefined > reference to > `_iso_fortran_env_8_' /root/tmp/a-353577.ll:(.text+0x52): undefined > reference to `f90io_ldw_a' /root/tmp/a-353577.ll:(.text+0x5a): > undefined reference to `f90io_ldw_end' > > The undefined references with __kmpc prefixes appear to be > contained in /usr/local/flang/lib/libompstub.a. This library > should probably be included. I am happy to add libompstub in general. I will add that I did not succeed in getting flang to execute a trivial OpenMP in parallel yet (it does however compile it w/ -fopenmp. So that's also something I want to fix. Also, I did not succeed in getting flang to link static images even after adding a few more libraries. Looking forward to more feedback from you ! I have not yet put it to task trying to compile any of my non-trivial Fortran code bases. Johannes From owner-freebsd-ports@freebsd.org Sun May 21 03:27:25 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 58B1AD7557D for ; Sun, 21 May 2017 03:27:25 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-pf0-x22d.google.com (mail-pf0-x22d.google.com [IPv6:2607:f8b0:400e:c00::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 2A95727E for ; Sun, 21 May 2017 03:27:25 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: by mail-pf0-x22d.google.com with SMTP id m17so56339798pfg.3 for ; Sat, 20 May 2017 20:27:25 -0700 (PDT) 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; bh=SOWpq4dhkI4uV/NxDGnmQsvGJUnIe79SPXZZXtuqX+Y=; b=XtwN1hpu2A9jovfRsCPBzQFz94OKZpGiIrVEDhtyEAAQZs6fYsqhkHy95jikWK+8L6 yUHiusrGWk7DHdP5BNyHsbA6aXpfPakVG8xvksPIaJAEOWwmNqNYuwH4kx1raKBjUkRY GmKYURvXgmnNgfiNN4a9ERuv0xNFRBYMPczmTUNungujf127l62q5g095UdOAtT+GruW PUbR2nkoYH0bVbEwXMo8U1Nx6VvjThkqBhrU5f9y8uHtbLhXsnqf2YH8el5raBoQK/RU wB1xaX1o5t/lGlZBUc+pSVMGWIgjVQa4MFf+bWVrnDoipWGpzkTfMwT17Bjj9iS2BG1n RyzQ== 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; bh=SOWpq4dhkI4uV/NxDGnmQsvGJUnIe79SPXZZXtuqX+Y=; b=cNk7fQJq/J74FNRbPI1MgJvJKfZdGyI16r6VEefwqk1x6gZyHwVT79F9uFyzgTmWZX Dv1pAQ/tHuBANTNl7CmS36cYKtHnM4PvDOWicAAQgNtaDESIiy77E2BMaZyjIV9/BRwG QDYy1mf9rPAoD0IfVNA5XLSHxnQ0wcOVZBp72hoWbWzvwsbEmorREByUDGycJYMaFPG7 5oCQqkva7pvIJj5LzYjurzeogSXhJ7ouFdHJf0SEgrbwtrN7pOrL5rjD20VEf7G96DrM Xvc9aolEYDuXx/TOxO0R2DVwr0+uRfde80aRr5nTQGTO/5r2LHe9zAmdwJz55pAFYGZ+ rxHQ== X-Gm-Message-State: AODbwcAzBJe5Pe84I7ZLt35Ap8YfQO5pjeYh5XRuzqqCQJfaELrE1Nho dGIuZXcUODagf1q6V1QKYiGGtThutQ== X-Received: by 10.99.247.83 with SMTP id f19mr18433314pgk.190.1495337244635; Sat, 20 May 2017 20:27:24 -0700 (PDT) MIME-Version: 1.0 Sender: kob6558@gmail.com Received: by 10.100.176.201 with HTTP; Sat, 20 May 2017 20:27:24 -0700 (PDT) In-Reply-To: <20170520194704.GA15638@c720-r314251> References: <20170520194704.GA15638@c720-r314251> From: Kevin Oberman Date: Sat, 20 May 2017 20:27:24 -0700 X-Google-Sender-Auth: lxxfXlv4Q0ciEF0KCtU6pFlYrzk Message-ID: Subject: Re: chromium-58.0.3029.110_1 fails to build with cllang40 To: Matthias Apitz , 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: Sun, 21 May 2017 03:27:25 -0000 On Sat, May 20, 2017 at 12:47 PM, Matthias Apitz wrote: > Hi, > > In a very recent head (May 19) chromium-58.0.3029.110_1: fails to build > with clang40 in poudriere always with the same meesage: > > ... > 14322/25418] clang++40 -MMD -MF obj/services/ui/ws/lib/server_window.o.d > -DV8_DEPRECATION_WARNINGS -DUI_COMPOSITOR_IMAGE_TRANSPORT -DUSE_AURA=1 > -DUSE_PANGO=1 -DUSE_CAIRO=1 -DUSE_GLIB=1 -DUSE_NSS_CERTS=1 -DUSE_X11=1 > -DNO_TCMALLOC -DDISABLE_NACL -DFULL_SAFE_BROWSING -DSAFE_BROWSING_CSD > -DSAFE_BROWSING_DB_LOCAL -DCHROMIUM_BUILD -DENABLE_MEDIA_ROUTER=1 > -DCR_CLANG_REVISION=\"296320-1\" -D_FILE_OFFSET_BITS=64 > -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D__STDC_CONSTANT_MACROS > -D__STDC_FORMAT_MACROS -D_FORTIFY_SOURCE=2 -DNDEBUG -DNVALGRIND > -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32 > -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -DGL_GLEXT_PROTOTYPES > -DUSE_GLX -DUSE_EGL -DSK_IGNORE_DW_GRAY_FIX -DSK_IGNORE_DIRECTWRITE_GASP_FIX > -DSK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS -DSK_SUPPORT_GPU=1 > -DU_USING_ICU_NAMESPACE=0 -DU_ENABLE_DYLOAD=0 -DU_STATIC_IMPLEMENTATION > -DICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE -I../.. -Igen > -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include > -I/usr/local/include -Igen/shim_headers/harfbuzz_shim > -I../../third_party/khronos -I../../gpu -Igen/shim_headers/ffmpeg_shim > -I../../skia/config -I../../skia/ext -I../../third_party/skia/include/c > -I../../third_party/skia/include/config -I../../third_party/skia/include/core > -I../../third_party/skia/include/effects -I../../third_party/skia/include/images > -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops > -I../../third_party/skia/include/pdf -I../../third_party/skia/include/pipe > -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils > -I../../third_party/skia/include/gpu -I../../third_party/skia/src/gpu > -I../../third_party/skia/src/sksl -I../../third_party/ced/src > -I../../third_party/icu/source/common -I../../third_party/icu/source/i18n > -I../../third_party/mesa/src/include -fno-strict-aliasing > --param=ssp-buffer-size=4 -fstack-protector -Wno-builtin-macro-redefined > -D__DATE__= -D__TIME__= -D__TIMESTAMP__= -funwind-tables -fPIC -pipe > -fcolor-diagnostics -m64 -march=x86-64 -Wall -Wextra -Wno-missing-field-initializers > -Wno-unused-parameter -Wno-c++11-narrowing -Wno-covered-switch-default > -Wno-deprecated-register -Wno-unneeded-internal-declaration > -Wno-inconsistent-missing-override -Wno-shift-negative-value -O2 > -fno-ident -fdata-sections -ffunction-sections -g0 -fvisibility=hidden > -Wheader-hygiene -Wstring-conversion -Wtautological-overlap-compare > -fvisibility-inlines-hidden -std=gnu++11 -fno-rtti -fno-exceptions -c > ../../services/ui/ws/server_window.cc -o obj/services/ui/ws/lib/server_ > window.o > ninja: build stopped: subcommand failed. > ===> Compilation failed unexpectedly. > > > The full log is here > > http://www.unixarea.de/chromium-58.0.3029.110_1.log.gz > > matthias Mathias, what platform and version? I had no problem building with clang40 on 11-STABLE on amd64. -- Kevin Oberman, Part time kid herder and retired network engineer From owner-freebsd-ports@freebsd.org Sun May 21 05:39: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 08507D77EB7 for ; Sun, 21 May 2017 05:39:57 +0000 (UTC) (envelope-from ftp51246-2575596@sh4-5.1blu.de) Received: from sh4-5.1blu.de (sh4-5.1blu.de [178.254.11.41]) (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 BD80C1BAA for ; Sun, 21 May 2017 05:39:56 +0000 (UTC) (envelope-from ftp51246-2575596@sh4-5.1blu.de) Received: from ftp51246-2575596 by sh4-5.1blu.de with local (Exim 4.86_2) (envelope-from ) id 1dCJar-0001lr-7P; Sun, 21 May 2017 07:39:53 +0200 Date: Sun, 21 May 2017 07:39:53 +0200 From: Matthias Apitz To: Kevin Oberman Cc: FreeBSD Ports ML Subject: Re: chromium-58.0.3029.110_1 fails to build with cllang40 Message-ID: <20170521053953.GA6008@sh4-5.1blu.de> Reply-To: Matthias Apitz References: <20170520194704.GA15638@c720-r314251> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 7.0-RELEASE (i386) User-Agent: Mutt/1.5.24 (2015-08-30) 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, 21 May 2017 05:39:57 -0000 El día Saturday, May 20, 2017 a las 08:27:24PM -0700, Kevin Oberman escribió: > > The full log is here > > > > http://www.unixarea.de/chromium-58.0.3029.110_1.log.gz > > > > matthias > > > Mathias, what platform and version? I had no problem building with clang40 > on 11-STABLE on amd64. Hi, Sorry. I'm on 12-CURRENT r314251 amd64. More details in the above log file. matthias -- Matthias Apitz | /"\ ASCII Ribbon Campaign: E-mail: guru@unixarea.de | \ / - No HTML/RTF in E-mail WWW: http://www.unixarea.de/ | X - No proprietary attachments phone: +49-176-38902045 | / \ - Respect for open standards | en.wikipedia.org/wiki/ASCII_Ribbon_Campaign From owner-freebsd-ports@freebsd.org Sun May 21 06:58: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 0E060D77F36 for ; Sun, 21 May 2017 06:58:03 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D6F2D1BFA; Sun, 21 May 2017 06:58:02 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 0C7167DF0; Sun, 21 May 2017 06:58:02 +0000 (UTC) From: Jan Beich To: Matthias Apitz Cc: Kevin Oberman , FreeBSD Ports ML Subject: Re: chromium-58.0.3029.110_1 fails to build with cllang40 References: <20170520194704.GA15638@c720-r314251> <20170521053953.GA6008@sh4-5.1blu.de> Date: Sun, 21 May 2017 08:57:56 +0200 In-Reply-To: <20170521053953.GA6008@sh4-5.1blu.de> (Matthias Apitz's message of "Sun, 21 May 2017 07:39:53 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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, 21 May 2017 06:58:03 -0000 Matthias Apitz writes: >> > The full log is here >> > >> > http://www.unixarea.de/chromium-58.0.3029.110_1.log.gz [...] >> > In file included from ../../services/ui/ws/user_activity_monitor.cc:5: >> > In file included from ../../services/ui/ws/user_activity_monitor.h:8: >> > In file included from ../../base/time/tick_clock.h:9: >> > In file included from ../../base/time/time.h:62: >> > In file included from ../../base/logging.h:12: >> > In file included from /usr/include/c++/v1/sstream:174: >> > In file included from /usr/include/c++/v1/ostream:138: >> > In file included from /usr/include/c++/v1/ios:216: >> > In file included from /usr/include/c++/v1/__locale:15: >> > In file included from /usr/include/c++/v1/string:442: >> > In file included from /usr/include/c++/v1/algorithm:633: >> > /usr/include/c++/v1/utility:316:11: error: call to deleted constructor of 'mojo::InterfacePtr' >> > second(__p.second) >> > ^ ~~~~~~~~~~ >> > /usr/include/c++/v1/memory:1747:31: note: in instantiation of member function 'std::__1::pair >::pair' requested here >> > ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...); >> > ^ >> > /usr/include/c++/v1/memory:1658:18: note: in instantiation of function template specialization 'std::__1::allocator > >::construct >, const std::__1::pair > &>' requested here >> > {__a.construct(__p, _VSTD::forward<_Args>(__args)...);} >> > ^ >> > /usr/include/c++/v1/memory:1504:14: note: in instantiation of function template specialization 'std::__1::allocator_traits > > >::__construct >, const std::__1::pair > &>' requested here >> > {__construct(__has_construct(), >> > ^ >> > /usr/include/c++/v1/memory:1620:17: note: in instantiation of function template specialization 'std::__1::allocator_traits > > >::construct >, const std::__1::pair > &>' requested here >> > construct(__a, _VSTD::__to_raw_pointer(__end2-1), _VSTD::move_if_noexcept(*--__end1)); >> > ^ >> > /usr/include/c++/v1/vector:892:21: note: in instantiation of function template specialization 'std::__1::allocator_traits > > >::__construct_backward > *>' requested here >> > __alloc_traits::__construct_backward(this->__alloc(), this->__begin_, this->__end_, __v.__begin_); >> > ^ >> > /usr/include/c++/v1/vector:1577:5: note: in instantiation of member function 'std::__1::vector >, std::__1::allocator > > >::__swap_out_circular_buffer' requested here >> > __swap_out_circular_buffer(__v); >> > ^ >> > /usr/include/c++/v1/vector:1614:9: note: in instantiation of function template specialization 'std::__1::vector >, std::__1::allocator > > >::__push_back_slow_path > >' requested here >> > __push_back_slow_path(_VSTD::move(__x)); >> > ^ >> > ../../services/ui/ws/user_activity_monitor.cc:63:23: note: in instantiation of member function 'std::__1::vector >, std::__1::allocator > > >::push_back' requested here >> > activity_observers_.push_back(std::make_pair(info, std::move(observer))); >> > ^ >> > ../../mojo/public/cpp/bindings/interface_ptr.h:224:28: note: 'InterfacePtr' has been explicitly marked deleted here >> > DISALLOW_COPY_AND_ASSIGN(InterfacePtr); >> > ^ Looks like https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=217948 >> Mathias, what platform and version? I had no problem building with clang40 >> on 11-STABLE on amd64. > > Sorry. I'm on 12-CURRENT r314251 amd64. More details in the above log > file. That's before libc++ 4.0 merge. Arbitrarily old -CURRENT/-STABLE snapshots are not supported (for any port). Either upgrade to latest base revision or dowgrade the ports tree to a similar date. From owner-freebsd-ports@freebsd.org Sun May 21 09:53:39 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 56C1AD7778A for ; Sun, 21 May 2017 09:53:39 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (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 24AD196A for ; Sun, 21 May 2017 09:53:38 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [2.247.255.69] (helo=[10.177.175.69]) by ms-10.1blu.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.86_2) (envelope-from ) id 1dCNYN-00051j-HB for freebsd-ports@freebsd.org; Sun, 21 May 2017 11:53:35 +0200 From: Matthias Apitz To: Subject: Re: =?iso-8859-1?Q?chromium-58.0.3029.110=5F1_fails_to_build_with_cllang40?= Date: Sun, 21 May 2017 11:53:34 +0200 User-Agent: Dekko/0.6.20; Qt/5.4.1; ubuntumirclient; Linux; MIME-Version: 1.0 Message-ID: <92458a89-1861-4330-95b3-030bee5cde89@unixarea.de> In-Reply-To: References: <20170520194704.GA15638@c720-r314251> <20170521053953.GA6008@sh4-5.1blu.de> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 2.247.255.69 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, 21 May 2017 09:53:39 -0000 On Sunday, 21 May 2017 08:57:56 CEST, Jan Beich wrote: > Looks like https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217948 >=20 Thanks. I will update my poudriere oven to head of base and create a new=20 jail for this ports tree. Btw, www/chromium was the only port of ~2000,=20 apart of fetch fails, which could not be made. matthias --=20 Sent from my Ubuntu phone http://www.unixarea.de/ From owner-freebsd-ports@freebsd.org Sun May 21 12:15:08 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 4AA20D6B1D4; Sun, 21 May 2017 12:15:08 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from mailout.stack.nl (mailout05.stack.nl [IPv6:2001:610:1108:5010::202]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout.stack.nl", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D9620398; Sun, 21 May 2017 12:15:07 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from snail.stack.nl (snail.stack.nl [IPv6:2001:610:1108:5010::131]) by mailout.stack.nl (Postfix) with ESMTP id 0FFC879; Sun, 21 May 2017 14:14:57 +0200 (CEST) Received: by snail.stack.nl (Postfix, from userid 1677) id EF00E28497; Sun, 21 May 2017 14:14:56 +0200 (CEST) Date: Sun, 21 May 2017 14:14:56 +0200 From: Jilles Tjoelker To: Konstantin Belousov Cc: freebsd-current@freebsd.org, freebsd-fs@freebsd.org, freebsd-ports@freebsd.org, emaste@freebsd.org, Kirk McKusick Subject: Re: 64-bit inodes (ino64) Status Update and Call for Testing Message-ID: <20170521121456.GA21613@stack.nl> References: <20170420194314.GI1788@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170420194314.GI1788@kib.kiev.ua> User-Agent: Mutt/1.5.21 (2010-09-15) 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, 21 May 2017 12:15:08 -0000 On Thu, Apr 20, 2017 at 10:43:14PM +0300, Konstantin Belousov wrote: > Inodes are data structures corresponding to objects in a file system, > such as files and directories. FreeBSD has historically used 32-bit > values to identify inodes, which limits file systems to somewhat under > 2^32 objects. Many modern file systems internally use 64-bit identifiers > and FreeBSD needs to follow suit to properly and fully support these > file systems. > The 64-bit inode project, also known as ino64, started life many years > ago as a project by Gleb Kurtsou (gleb@). After that time several > people have had a hand in updating it and addressing regressions, after > mckusick@ picked up and updated the patch, and acted as a flag-waver. > Sponsored by the FreeBSD Foundation I have spent a significant effort > on outstanding issues and integration -- fixing compat32 ABI, NFS and > ZFS, addressing ABI compat issues and investigating and fixing ports > failures. rmacklem@ provided feedback on NFS changes, emaste@ and > jhb@ provided feedback and review on the ABI transition support. pho@ > performed extensive testing and identified a number of issues that > have now been fixed. kris@ performed an initial ports investigation > followed by an exp-run by antoine@. emaste@ helped with organization > of the process. > This note explains how to perform useful testing of the ino64 branch, > beyond typical smoke tests. > 1. Overview. > The ino64 branch extends the basic system types ino_t and dev_t from > 32-bit to 64-bit, and nlink_t from 16-bit to 64-bit. The struct dirent > layout is modified due to the larger size of ino_t, and also gains a > d_off (directory offset) member. As ino64 implies an ABI change anyway > the struct statfs f_mntfromname[] and f_mntonname[] array length > MNAMELEN is increased from 88 to 1024, to allow for longer mount path > names. > ABI breakage is mitigated by providing compatibility using versioned > symbols, ingenious use of the existing padding in structures, and by > employing other tricks. Unfortunately, not everything can be fixed, > especially outside the base system. For instance, third-party APIs > which pass struct stat around are broken in backward and forward- > incompatible way. We have another type in this area which is too small in some situations: uint8_t for struct dirent.d_namlen. For filesystems that store filenames as upto 255 UTF-16 code units, the name to be stored in d_name may be upto 765 bytes long in UTF-8. This was reported in PR 204643. The code currently handles this by returning the short (8.3) name, but this name may not be present or usable, leaving the file inaccessible. Actually allowing longer names seems too complicated to add to the ino64 change, but changing d_namlen to uint16_t (using d_pad0 space) and skipping entries with d_namlen > 255 in libc may be helpful. Note that applications using the deprecated readdir_r() will not be able to read such long names, since the API does not allow specifying that a larger buffer has been provided. (This could be avoided by making struct dirent.d_name 766 bytes long instead of 256.) Unfortunately, the existence of readdir_r() also prevents changing struct dirent.d_name to the more correct flexible array. -- Jilles Tjoelker From owner-freebsd-ports@freebsd.org Sun May 21 12:31: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 F3A6DD6BEBB; Sun, 21 May 2017 12:31:25 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::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 80A761149; Sun, 21 May 2017 12:31:25 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id v4LCVIeJ019814 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 21 May 2017 15:31:19 +0300 (EEST) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua v4LCVIeJ019814 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id v4LCVINU019813; Sun, 21 May 2017 15:31:18 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 21 May 2017 15:31:18 +0300 From: Konstantin Belousov To: Jilles Tjoelker Cc: freebsd-current@freebsd.org, freebsd-fs@freebsd.org, freebsd-ports@freebsd.org, emaste@freebsd.org, Kirk McKusick Subject: Re: 64-bit inodes (ino64) Status Update and Call for Testing Message-ID: <20170521123118.GH1622@kib.kiev.ua> References: <20170420194314.GI1788@kib.kiev.ua> <20170521121456.GA21613@stack.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170521121456.GA21613@stack.nl> User-Agent: Mutt/1.8.2 (2017-04-18) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home 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, 21 May 2017 12:31:26 -0000 On Sun, May 21, 2017 at 02:14:56PM +0200, Jilles Tjoelker wrote: > We have another type in this area which is too small in some situations: > uint8_t for struct dirent.d_namlen. For filesystems that store filenames > as upto 255 UTF-16 code units, the name to be stored in d_name may be > upto 765 bytes long in UTF-8. This was reported in PR 204643. The code > currently handles this by returning the short (8.3) name, but this name > may not be present or usable, leaving the file inaccessible. > > Actually allowing longer names seems too complicated to add to the ino64 > change, but changing d_namlen to uint16_t (using d_pad0 space) and > skipping entries with d_namlen > 255 in libc may be helpful. > > Note that applications using the deprecated readdir_r() will not be able > to read such long names, since the API does not allow specifying that a > larger buffer has been provided. (This could be avoided by making struct > dirent.d_name 766 bytes long instead of 256.) > > Unfortunately, the existence of readdir_r() also prevents changing > struct dirent.d_name to the more correct flexible array. Yes, changing the size of d_name at this stage of the project is out of question. My reading of your proposal is that we should extend the size of d_namlen to uint16_t, am I right ? Should we go to 32bit directly then, perhaps ? I did not committed the change below, nor did I tested or even build it. diff --git a/lib/libc/gen/readdir-compat11.c b/lib/libc/gen/readdir-compat11.c index 1c52f563c75..18d85adaa63 100644 --- a/lib/libc/gen/readdir-compat11.c +++ b/lib/libc/gen/readdir-compat11.c @@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$"); #define _WANT_FREEBSD11_DIRENT #include #include +#include #include #include #include @@ -53,10 +54,12 @@ __FBSDID("$FreeBSD$"); #include "gen-compat.h" -static void +static bool freebsd11_cvtdirent(struct freebsd11_dirent *dstdp, struct dirent *srcdp) { + if (srcdp->d_namelen >= sizeof(dstdp->d_name)) + return (false); dstdp->d_type = srcdp->d_type; dstdp->d_namlen = srcdp->d_namlen; dstdp->d_fileno = srcdp->d_fileno; /* truncate */ @@ -65,6 +68,7 @@ freebsd11_cvtdirent(struct freebsd11_dirent *dstdp, struct dirent *srcdp) bzero(dstdp->d_name + dstdp->d_namlen, dstdp->d_reclen - offsetof(struct freebsd11_dirent, d_name) - dstdp->d_namlen); + return (true); } struct freebsd11_dirent * @@ -80,8 +84,10 @@ freebsd11_readdir(DIR *dirp) if (dirp->dd_compat_de == NULL) dirp->dd_compat_de = malloc(sizeof(struct freebsd11_dirent)); - freebsd11_cvtdirent(dirp->dd_compat_de, dp); - dstdp = dirp->dd_compat_de; + if (freebsd11_cvtdirent(dirp->dd_compat_de, dp)) + dstdp = dirp->dd_compat_de; + else + dstdp = NULL; } else dstdp = NULL; if (__isthreaded) @@ -101,8 +107,10 @@ freebsd11_readdir_r(DIR *dirp, struct freebsd11_dirent *entry, if (error != 0) return (error); if (xresult != NULL) { - freebsd11_cvtdirent(entry, &xentry); - *result = entry; + if (freebsd11_cvtdirent(entry, &xentry)) + *result = entry; + else + *result = NULL; } else *result = NULL; return (0); diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 784af836aee..27b2635030d 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -3733,7 +3733,8 @@ freebsd11_kern_getdirentries(struct thread *td, int fd, char *ubuf, u_int count, if (dp->d_reclen == 0) break; MPASS(dp->d_reclen >= _GENERIC_DIRLEN(0)); - /* dp->d_namlen <= sizeof(dstdp.d_name) - 1 always */ + if (dp->d_namlen >= sizeof(dstdp.d_name)) + continue; dstdp.d_type = dp->d_type; dstdp.d_namlen = dp->d_namlen; dstdp.d_fileno = dp->d_fileno; /* truncate */ diff --git a/sys/sys/dirent.h b/sys/sys/dirent.h index 341855d0530..691c4e8f90f 100644 --- a/sys/sys/dirent.h +++ b/sys/sys/dirent.h @@ -67,8 +67,9 @@ struct dirent { off_t d_off; /* directory offset of entry */ __uint16_t d_reclen; /* length of this record */ __uint8_t d_type; /* file type, see below */ - __uint8_t d_namlen; /* length of string in d_name */ - __uint32_t d_pad0; + __uint8_t d_pad0 + __uint16_t d_namlen; /* length of string in d_name */ + __uint16_t d_pad1; #if __BSD_VISIBLE #define MAXNAMLEN 255 char d_name[MAXNAMLEN + 1]; /* name must be no longer than this */ From owner-freebsd-ports@freebsd.org Sun May 21 14:03: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 116DAD775DC; Sun, 21 May 2017 14:03:57 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from mailout.stack.nl (mailout05.stack.nl [IPv6:2001:610:1108:5010::202]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout.stack.nl", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D39F71A06; Sun, 21 May 2017 14:03:56 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from snail.stack.nl (snail.stack.nl [IPv6:2001:610:1108:5010::131]) by mailout.stack.nl (Postfix) with ESMTP id 658F979; Sun, 21 May 2017 16:03:55 +0200 (CEST) Received: by snail.stack.nl (Postfix, from userid 1677) id 4E80C28497; Sun, 21 May 2017 16:03:55 +0200 (CEST) Date: Sun, 21 May 2017 16:03:55 +0200 From: Jilles Tjoelker To: Konstantin Belousov Cc: freebsd-current@freebsd.org, freebsd-fs@freebsd.org, freebsd-ports@freebsd.org, emaste@freebsd.org, Kirk McKusick Subject: Re: 64-bit inodes (ino64) Status Update and Call for Testing Message-ID: <20170521140355.GC21613@stack.nl> References: <20170420194314.GI1788@kib.kiev.ua> <20170521121456.GA21613@stack.nl> <20170521123118.GH1622@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170521123118.GH1622@kib.kiev.ua> User-Agent: Mutt/1.5.21 (2010-09-15) 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, 21 May 2017 14:03:57 -0000 On Sun, May 21, 2017 at 03:31:18PM +0300, Konstantin Belousov wrote: > On Sun, May 21, 2017 at 02:14:56PM +0200, Jilles Tjoelker wrote: > > We have another type in this area which is too small in some situations: > > uint8_t for struct dirent.d_namlen. For filesystems that store filenames > > as upto 255 UTF-16 code units, the name to be stored in d_name may be > > upto 765 bytes long in UTF-8. This was reported in PR 204643. The code > > currently handles this by returning the short (8.3) name, but this name > > may not be present or usable, leaving the file inaccessible. > > Actually allowing longer names seems too complicated to add to the ino64 > > change, but changing d_namlen to uint16_t (using d_pad0 space) and > > skipping entries with d_namlen > 255 in libc may be helpful. > > Note that applications using the deprecated readdir_r() will not be able > > to read such long names, since the API does not allow specifying that a > > larger buffer has been provided. (This could be avoided by making struct > > dirent.d_name 766 bytes long instead of 256.) > > Unfortunately, the existence of readdir_r() also prevents changing > > struct dirent.d_name to the more correct flexible array. > Yes, changing the size of d_name at this stage of the project is out of > question. My reading of your proposal is that we should extend the size > of d_namlen to uint16_t, am I right ? Should we go to 32bit directly > then, perhaps ? Yes, my proposal is to change d_namlen to uint16_t. Making it 32 bits is not useful with the 16-bit d_reclen, and increasing d_reclen does not seem useful to me with the current model of getdirentries() where the whole dirent must fit into the caller's buffer. > I did not committed the change below, nor did I tested or even build it. I'd like to skip overlong names in the native readdir_r() as well, so that long name support can be added to the kernel later without causing buffer overflows with applications using FreeBSD 12.0 libc. The native readdir() does not seem to have such a problem. > [patch snipped] -- Jilles Tjoelker From owner-freebsd-ports@freebsd.org Sun May 21 14:25: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 2DA06D77BB2; Sun, 21 May 2017 14:25:42 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::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 B02F6841; Sun, 21 May 2017 14:25:41 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id v4LEPZCw044648 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 21 May 2017 17:25:35 +0300 (EEST) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua v4LEPZCw044648 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id v4LEPZbb044646; Sun, 21 May 2017 17:25:35 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 21 May 2017 17:25:35 +0300 From: Konstantin Belousov To: Jilles Tjoelker Cc: freebsd-current@freebsd.org, freebsd-fs@freebsd.org, freebsd-ports@freebsd.org, emaste@freebsd.org, Kirk McKusick Subject: Re: 64-bit inodes (ino64) Status Update and Call for Testing Message-ID: <20170521142535.GI1622@kib.kiev.ua> References: <20170420194314.GI1788@kib.kiev.ua> <20170521121456.GA21613@stack.nl> <20170521123118.GH1622@kib.kiev.ua> <20170521140355.GC21613@stack.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170521140355.GC21613@stack.nl> User-Agent: Mutt/1.8.2 (2017-04-18) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home 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, 21 May 2017 14:25:42 -0000 On Sun, May 21, 2017 at 04:03:55PM +0200, Jilles Tjoelker wrote: > On Sun, May 21, 2017 at 03:31:18PM +0300, Konstantin Belousov wrote: > > On Sun, May 21, 2017 at 02:14:56PM +0200, Jilles Tjoelker wrote: > > > We have another type in this area which is too small in some situations: > > > uint8_t for struct dirent.d_namlen. For filesystems that store filenames > > > as upto 255 UTF-16 code units, the name to be stored in d_name may be > > > upto 765 bytes long in UTF-8. This was reported in PR 204643. The code > > > currently handles this by returning the short (8.3) name, but this name > > > may not be present or usable, leaving the file inaccessible. > > > > Actually allowing longer names seems too complicated to add to the ino64 > > > change, but changing d_namlen to uint16_t (using d_pad0 space) and > > > skipping entries with d_namlen > 255 in libc may be helpful. > > > > Note that applications using the deprecated readdir_r() will not be able > > > to read such long names, since the API does not allow specifying that a > > > larger buffer has been provided. (This could be avoided by making struct > > > dirent.d_name 766 bytes long instead of 256.) > > > > Unfortunately, the existence of readdir_r() also prevents changing > > > struct dirent.d_name to the more correct flexible array. > > > Yes, changing the size of d_name at this stage of the project is out of > > question. My reading of your proposal is that we should extend the size > > of d_namlen to uint16_t, am I right ? Should we go to 32bit directly > > then, perhaps ? > > Yes, my proposal is to change d_namlen to uint16_t. > > Making it 32 bits is not useful with the 16-bit d_reclen, and increasing > d_reclen does not seem useful to me with the current model of > getdirentries() where the whole dirent must fit into the caller's > buffer. Bumping it now might cause less churn later, even if unused, but ok. > > > I did not committed the change below, nor did I tested or even build it. > > I'd like to skip overlong names in the native readdir_r() as well, so > that long name support can be added to the kernel later without causing > buffer overflows with applications using FreeBSD 12.0 libc. > > The native readdir() does not seem to have such a problem. Again, not even compiled. diff --git a/lib/libc/gen/readdir-compat11.c b/lib/libc/gen/readdir-compat11.c index 1c52f563c75..a865ab9157e 100644 --- a/lib/libc/gen/readdir-compat11.c +++ b/lib/libc/gen/readdir-compat11.c @@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$"); #define _WANT_FREEBSD11_DIRENT #include #include +#include #include #include #include @@ -53,10 +54,12 @@ __FBSDID("$FreeBSD$"); #include "gen-compat.h" -static void +static bool freebsd11_cvtdirent(struct freebsd11_dirent *dstdp, struct dirent *srcdp) { + if (srcdp->d_namelen >= sizeof(dstdp->d_name)) + return (false); dstdp->d_type = srcdp->d_type; dstdp->d_namlen = srcdp->d_namlen; dstdp->d_fileno = srcdp->d_fileno; /* truncate */ @@ -65,6 +68,7 @@ freebsd11_cvtdirent(struct freebsd11_dirent *dstdp, struct dirent *srcdp) bzero(dstdp->d_name + dstdp->d_namlen, dstdp->d_reclen - offsetof(struct freebsd11_dirent, d_name) - dstdp->d_namlen); + return (true); } struct freebsd11_dirent * @@ -75,13 +79,15 @@ freebsd11_readdir(DIR *dirp) if (__isthreaded) _pthread_mutex_lock(&dirp->dd_lock); - dp = _readdir_unlocked(dirp, 1); + dp = _readdir_unlocked(dirp, RDU_SKIP); if (dp != NULL) { if (dirp->dd_compat_de == NULL) dirp->dd_compat_de = malloc(sizeof(struct freebsd11_dirent)); - freebsd11_cvtdirent(dirp->dd_compat_de, dp); - dstdp = dirp->dd_compat_de; + if (freebsd11_cvtdirent(dirp->dd_compat_de, dp)) + dstdp = dirp->dd_compat_de; + else + dstdp = NULL; } else dstdp = NULL; if (__isthreaded) @@ -101,8 +107,10 @@ freebsd11_readdir_r(DIR *dirp, struct freebsd11_dirent *entry, if (error != 0) return (error); if (xresult != NULL) { - freebsd11_cvtdirent(entry, &xentry); - *result = entry; + if (freebsd11_cvtdirent(entry, &xentry)) + *result = entry; + else /* should not happen due to RDU_SHORT */ + *result = NULL; } else *result = NULL; return (0); diff --git a/lib/libc/gen/readdir.c b/lib/libc/gen/readdir.c index dc7b0df18b2..c30d48273b8 100644 --- a/lib/libc/gen/readdir.c +++ b/lib/libc/gen/readdir.c @@ -49,7 +49,7 @@ __FBSDID("$FreeBSD$"); * get next entry in a directory. */ struct dirent * -_readdir_unlocked(DIR *dirp, int skip) +_readdir_unlocked(DIR *dirp, int flags) { struct dirent *dp; long initial_seek; @@ -80,10 +80,13 @@ _readdir_unlocked(DIR *dirp, int skip) dp->d_reclen > dirp->dd_len + 1 - dirp->dd_loc) return (NULL); dirp->dd_loc += dp->d_reclen; - if (dp->d_ino == 0 && skip) + if (dp->d_ino == 0 && (flags & RDU_SKIP) != 0) continue; if (dp->d_type == DT_WHT && (dirp->dd_flags & DTF_HIDEW)) continue; + if (dp->d_namlen >= sizeof(d_namlen) && + (flags & RDU_SHORT) != 0) + continue; return (dp); } } @@ -91,15 +94,13 @@ _readdir_unlocked(DIR *dirp, int skip) struct dirent * readdir(DIR *dirp) { - struct dirent *dp; + struct dirent *dp; - if (__isthreaded) { + if (__isthreaded) _pthread_mutex_lock(&dirp->dd_lock); - dp = _readdir_unlocked(dirp, 1); + dp = _readdir_unlocked(dirp, RDU_SKIP); + if (__isthreaded) _pthread_mutex_unlock(&dirp->dd_lock); - } - else - dp = _readdir_unlocked(dirp, 1); return (dp); } @@ -111,14 +112,13 @@ __readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) saved_errno = errno; errno = 0; - if (__isthreaded) { + if (__isthreaded) _pthread_mutex_lock(&dirp->dd_lock); - if ((dp = _readdir_unlocked(dirp, 1)) != NULL) - memcpy(entry, dp, _GENERIC_DIRSIZ(dp)); - _pthread_mutex_unlock(&dirp->dd_lock); - } - else if ((dp = _readdir_unlocked(dirp, 1)) != NULL) + dp = _readdir_unlocked(dirp, RDU_SKIP | RDU_SHORT); + if (dp != NULL) memcpy(entry, dp, _GENERIC_DIRSIZ(dp)); + if (__isthreaded) + _pthread_mutex_unlock(&dirp->dd_lock); if (errno != 0) { if (dp == NULL) diff --git a/lib/libc/gen/telldir.h b/lib/libc/gen/telldir.h index 96ff669a312..50adb351e91 100644 --- a/lib/libc/gen/telldir.h +++ b/lib/libc/gen/telldir.h @@ -66,4 +66,7 @@ void _reclaim_telldir(DIR *); void _seekdir(DIR *, long); void _fixtelldir(DIR *dirp, long oldseek, long oldloc); +#define RDU_SKIP 0x0001 +#define RDU_SHORT 0x0002 + #endif diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 784af836aee..27b2635030d 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -3733,7 +3733,8 @@ freebsd11_kern_getdirentries(struct thread *td, int fd, char *ubuf, u_int count, if (dp->d_reclen == 0) break; MPASS(dp->d_reclen >= _GENERIC_DIRLEN(0)); - /* dp->d_namlen <= sizeof(dstdp.d_name) - 1 always */ + if (dp->d_namlen >= sizeof(dstdp.d_name)) + continue; dstdp.d_type = dp->d_type; dstdp.d_namlen = dp->d_namlen; dstdp.d_fileno = dp->d_fileno; /* truncate */ diff --git a/sys/sys/dirent.h b/sys/sys/dirent.h index 341855d0530..472142f960b 100644 --- a/sys/sys/dirent.h +++ b/sys/sys/dirent.h @@ -58,8 +58,7 @@ typedef __off_t off_t; * * Explicit padding between the last member of the header (d_namelen) and * d_name avoids ABI padding at the end of dirent on LP64 architectures. - * There is code depending on d_name being last. Also, retaining this - * padding on ILP32 architectures simplifies the compat32 layer. + * There is code depending on d_name being last. */ struct dirent { @@ -67,8 +66,9 @@ struct dirent { off_t d_off; /* directory offset of entry */ __uint16_t d_reclen; /* length of this record */ __uint8_t d_type; /* file type, see below */ - __uint8_t d_namlen; /* length of string in d_name */ - __uint32_t d_pad0; + __uint8_t d_pad0; + __uint16_t d_namlen; /* length of string in d_name */ + __uint16_t d_pad1; #if __BSD_VISIBLE #define MAXNAMLEN 255 char d_name[MAXNAMLEN + 1]; /* name must be no longer than this */ From owner-freebsd-ports@freebsd.org Sun May 21 20:56: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 A70BDD77C94 for ; Sun, 21 May 2017 20:56:05 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 87BDE1F27 for ; Sun, 21 May 2017 20:56:05 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: by be-well.ilk.org (Postfix, from userid 1147) id 0548333C27; Sun, 21 May 2017 16:55:58 -0400 (EDT) From: Lowell Gilbert To: freebsd-ports@freebsd.org Subject: pango not building under portmaster, holds back emacs (portmaster) Date: Sun, 21 May 2017 16:55:57 -0400 Message-ID: <44tw4edj4y.fsf@be-well.ilk.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain 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, 21 May 2017 20:56:05 -0000 I suspect this is a portmaster problem, but pango isn't building with X support because of: ../pango/pangoxft-render.h:31:10: fatal error: 'X11/Xft/Xft.h' file not found This is only the current issue. I've been struggling for several days to get my graphics programs rebuilt, and I haven't seen any e-mail about it. Anyone have an idea what's going on? From owner-freebsd-ports@freebsd.org Sun May 21 21:27: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 82057D77C53; Sun, 21 May 2017 21:27:29 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from mailout.stack.nl (mailout05.stack.nl [IPv6:2001:610:1108:5010::202]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout.stack.nl", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F1E2171E; Sun, 21 May 2017 21:27:29 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from snail.stack.nl (snail.stack.nl [IPv6:2001:610:1108:5010::131]) by mailout.stack.nl (Postfix) with ESMTP id 095A279; Sun, 21 May 2017 23:27:27 +0200 (CEST) Received: by snail.stack.nl (Postfix, from userid 1677) id E68E928497; Sun, 21 May 2017 23:27:26 +0200 (CEST) Date: Sun, 21 May 2017 23:27:26 +0200 From: Jilles Tjoelker To: Konstantin Belousov Cc: freebsd-current@freebsd.org, freebsd-fs@freebsd.org, freebsd-ports@freebsd.org, emaste@freebsd.org, Kirk McKusick Subject: Re: 64-bit inodes (ino64) Status Update and Call for Testing Message-ID: <20170521212726.GA23821@stack.nl> References: <20170420194314.GI1788@kib.kiev.ua> <20170521121456.GA21613@stack.nl> <20170521123118.GH1622@kib.kiev.ua> <20170521140355.GC21613@stack.nl> <20170521142535.GI1622@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170521142535.GI1622@kib.kiev.ua> User-Agent: Mutt/1.5.21 (2010-09-15) 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, 21 May 2017 21:27:29 -0000 On Sun, May 21, 2017 at 05:25:35PM +0300, Konstantin Belousov wrote: > On Sun, May 21, 2017 at 04:03:55PM +0200, Jilles Tjoelker wrote: > > On Sun, May 21, 2017 at 03:31:18PM +0300, Konstantin Belousov wrote: > > > On Sun, May 21, 2017 at 02:14:56PM +0200, Jilles Tjoelker wrote: > > > > We have another type in this area which is too small in some situations: > > > > uint8_t for struct dirent.d_namlen. For filesystems that store filenames > > > > as upto 255 UTF-16 code units, the name to be stored in d_name may be > > > > upto 765 bytes long in UTF-8. This was reported in PR 204643. The code > > > > currently handles this by returning the short (8.3) name, but this name > > > > may not be present or usable, leaving the file inaccessible. > > > > Actually allowing longer names seems too complicated to add to the ino64 > > > > change, but changing d_namlen to uint16_t (using d_pad0 space) and > > > > skipping entries with d_namlen > 255 in libc may be helpful. > > > > Note that applications using the deprecated readdir_r() will not be able > > > > to read such long names, since the API does not allow specifying that a > > > > larger buffer has been provided. (This could be avoided by making struct > > > > dirent.d_name 766 bytes long instead of 256.) > > > > Unfortunately, the existence of readdir_r() also prevents changing > > > > struct dirent.d_name to the more correct flexible array. > > > Yes, changing the size of d_name at this stage of the project is out of > > > question. My reading of your proposal is that we should extend the size > > > of d_namlen to uint16_t, am I right ? Should we go to 32bit directly > > > then, perhaps ? > > Yes, my proposal is to change d_namlen to uint16_t. > > Making it 32 bits is not useful with the 16-bit d_reclen, and increasing > > d_reclen does not seem useful to me with the current model of > > getdirentries() where the whole dirent must fit into the caller's > > buffer. > Bumping it now might cause less churn later, even if unused, but ok. > > > I did not committed the change below, nor did I tested or even build it. > > I'd like to skip overlong names in the native readdir_r() as well, so > > that long name support can be added to the kernel later without causing > > buffer overflows with applications using FreeBSD 12.0 libc. > > The native readdir() does not seem to have such a problem. > Again, not even compiled. Looks good to me. > [patch snipped] -- Jilles Tjoelker From owner-freebsd-ports@freebsd.org Sun May 21 21:45: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 B4FF5D78573 for ; Sun, 21 May 2017 21:45:28 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (mx.catwhisker.org [198.144.209.73]) (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 6B531613 for ; Sun, 21 May 2017 21:45:27 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.15.2/8.15.2) with ESMTP id v4LLjPEB007668; Sun, 21 May 2017 21:45:25 GMT (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.15.2/8.15.2/Submit) id v4LLjPXk007667; Sun, 21 May 2017 14:45:25 -0700 (PDT) (envelope-from david) Date: Sun, 21 May 2017 14:45:25 -0700 From: David Wolfskill To: Lowell Gilbert Cc: freebsd-ports@freebsd.org Subject: Re: pango not building under portmaster, holds back emacs (portmaster) Message-ID: <20170521214525.GW1190@albert.catwhisker.org> References: <44tw4edj4y.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="JkgDhDyNm4zanevS" Content-Disposition: inline In-Reply-To: <44tw4edj4y.fsf@be-well.ilk.org> User-Agent: Mutt/1.8.2 (2017-04-18) 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, 21 May 2017 21:45:28 -0000 --JkgDhDyNm4zanevS Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 21, 2017 at 04:55:57PM -0400, Lowell Gilbert wrote: > I suspect this is a portmaster problem, but pango isn't building with X > support because of: > ../pango/pangoxft-render.h:31:10: fatal error: 'X11/Xft/Xft.h' file not f= ound >=20 > This is only the current issue. I've been struggling for several days to > get my graphics programs rebuilt, and I haven't seen any e-mail about > it. Anyone have an idea what's going on? > .... Not much of an idea; while I use portmaster to update the ports on systems where I update base in-place via src update, I don't recall encountering that -- and on one of those systems (my laptop), I update the installed ports daily. I find that /usr/local/include/X11/Xft/Xft.h was installed by x11-fonts/libXft, so re-installing it may help. Peace, david --=20 David H. Wolfskill david@catwhisker.org "[T]he president=E2=80=99s improper efforts to influence an ongoing investi= gation" See http://www.catwhisker.org/~david/publickey.gpg for my public key. --JkgDhDyNm4zanevS Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAEBCgBmBQJZIgp1XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDQ0I3Q0VGOTE3QTgwMUY0MzA2NEQ3N0Ix NTM5Q0M0MEEwNDlFRTE3AAoJEBU5zECgSe4XtzoIAIutLvaCqp2LRPxrYX5wtzid 5jqC8MyzRCjHf2OiUqodjm6dmQJUhNimh+WA6vEgHEnowiXtQcxspzOzMiKoFKDE CiYYoveDM8hSNTjRwekpDuWOQzC/VI8AgE1DWY2fFT87R/+X2eoakI/pVFGc5rf8 LKXVHmeg3PF0UMVwxOkg9Bza4R42TaRLErMSEbrHwB3VTBbqplpuQVEFApny5E+1 2JG+8SFKPZJpuEFLhrX/ts3BNcWop6HEwH4/Zj3psRlJrX3xLsMxtt/pk7Gf5kiD dqyG8NBJevsfu16fmWVDIxiFmi8i6t6d9Nnw3KqNkPT/vZmRjblM6UTS/9LglIg= =xlfF -----END PGP SIGNATURE----- --JkgDhDyNm4zanevS-- From owner-freebsd-ports@freebsd.org Mon May 22 06:00: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 73BE9D78108 for ; Mon, 22 May 2017 06:00:59 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (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 37FC01AFC for ; Mon, 22 May 2017 06:00:58 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [82.113.121.202] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.86_2) (envelope-from ) id 1dCgOg-0000I0-6J for freebsd-ports@freebsd.org; Mon, 22 May 2017 08:00:50 +0200 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.unixarea.de (8.15.2/8.14.9) with ESMTPS id v4M60lWJ023987 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 22 May 2017 08:00:47 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.15.2/8.14.9/Submit) id v4M60kdD023977 for freebsd-ports@freebsd.org; Mon, 22 May 2017 08:00:46 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Mon, 22 May 2017 08:00:45 +0200 From: Matthias Apitz To: freebsd-ports@freebsd.org Subject: Re: chromium-58.0.3029.110_1 fails to build with cllang40 Message-ID: <20170522060045.GB18910@c720-r314251> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , freebsd-ports@freebsd.org References: <20170520194704.GA15638@c720-r314251> <20170521053953.GA6008@sh4-5.1blu.de> <92458a89-1861-4330-95b3-030bee5cde89@unixarea.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="SkvwRMAIpAhPCcCJ" Content-Disposition: inline In-Reply-To: <92458a89-1861-4330-95b3-030bee5cde89@unixarea.de> X-Operating-System: FreeBSD 12.0-CURRENT r314251 (amd64) User-Agent: Mutt/1.8.0 (2017-02-23) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 82.113.121.202 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, 22 May 2017 06:00:59 -0000 --SkvwRMAIpAhPCcCJ Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable El d=C3=ADa domingo, mayo 21, 2017 a las 11:53:34a. m. +0200, Matthias Apit= z escribi=C3=B3: > On Sunday, 21 May 2017 08:57:56 CEST, Jan Beich wrot= e: >=20 > > Looks like https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217948 > >=20 >=20 > Thanks. I will update my poudriere oven to head of base and create a new= =20 > jail for this ports tree. Btw, www/chromium was the only port of ~2000,= =20 > apart of fetch fails, which could not be made. >=20 > matthias One question more on this. My poudriere oven actually runs r314251 and has a jail based on the same kernel version. Will this continue to work after updating the host to, lets say r318593? I glanced through UPDATING between Feb of 2017 and today and could not see anything which could affect the jail... Thanks matthias --=20 Matthias Apitz, =E2=9C=89 guru@unixarea.de, =E2=8C=82 http://www.unixarea.d= e/ =E2=98=8E +49-176-38902045 Public GnuPG key: http://www.unixarea.de/key.pub 8. Mai 1945: Wer nicht feiert hat den Krieg verloren. 8 de mayo de 1945: Quien no festeja perdi=C3=B3 la Guerra. May 8, 1945: Who does not celebrate lost the War. --SkvwRMAIpAhPCcCJ Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEXmn7rBYYViyzy/vBR8z35Hb+nREFAlkifocACgkQR8z35Hb+ nRHJJg/8C9dF5HbF5jo7tlh1W6Gp4zMBFm5I5t/MtyvnKWvWenWGZk/+tQJCp56p MEjGPHtcubgcptzWa/fqhWlwYN3l2nJsZlmJZXPneRyq2w5VDJoXQJ0ircEhLYWf TcwBNPAXnsDj6ki+wwBuEbtJk8r0zx1DqVwQAA+pBEK6Tfcj7dQO9ArFuTnrsnij +DrV5ZJq1pM3p+l6I8Rg1IGy9SMoyH5zMzZ1pOESg4V0f61LPOPRUb32PIRQZ7Wy Diube9uiNKfrt8eOWmHHP5+YqaGsczJfCVZI96LW2uD6ullwz7vh3UjLWZE+he42 FoXHVTeYn9VFR7ZF3qL2N5mNq3Z48tWPgZi7OJgChi3eWowvCAYuCh+ADRTuPsPd +H+6lGIt6wUp+8372ADLn4suqxPg7l0hVCoEEuxQlVDq5+bj3bngBu9epsTP47H/ o44ErNm6u06GFsAlfb7o1CD8C1zm5H+gq6WbtvZZjyb3012wQYhaQ3Hr2DuVSl4o AAZ/SJAyF+dq3gnOZCSq+deiuJg0t+UKd+83WUxhDV/J/q1DOCCHSuHIaFJmJtwj iae31oGuJEYjAsbObc23vkf+cIwJc4SUggTlrjE9NNECbQgUpKF88yFbw95mjoP0 iv/0GUoRaPWJTTW+608siYAqzdD4N+bDT3KsGRoWi789qoWuU9Y= =qgeT -----END PGP SIGNATURE----- --SkvwRMAIpAhPCcCJ-- From owner-freebsd-ports@freebsd.org Mon May 22 06:31: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 6E90CD78620 for ; Mon, 22 May 2017 06:31:06 +0000 (UTC) (envelope-from bounce-freebsd-ports+freebsd.org@streturns.eu) Received: from mx-out-gi2.emailamp.com (mx-out-gi2.emailamp.com [89.238.184.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D63715DB for ; Mon, 22 May 2017 06:30:07 +0000 (UTC) (envelope-from bounce-freebsd-ports+freebsd.org@streturns.eu) DKIM-Signature: v=1; a=rsa-sha256; c=simple; s=email; d=emailamp.com; h=Reply-To:Content-Type:MIME-Version:Subject:List-Unsubscribe:From:To:Date: Message-ID:From:To:Subject; t=1495434617; x=1495456217; bh=zoQ65Lu9aT+xDC0qJwM6r4wo8jIU44FtY/TUIZzCxT0=; b=moY68V7WOxvnUyCSqefQy7IyvcGWKksErm7CDPU3nHBjnDSxv9zACU9lKGq2z3i/E286x+CQ2eai 3HFD/+kSoLJYU8fX7+nlb1T0IaSRPVdZGac2D+MSPNIt8bBI9Kyl79CHML7Hb4a2Y+ch/WV1N/xo 9bpCOyRkaE6jywwDKsVXEnkQ3XySUOefb3X4+c2SjQi4PiLYyAHDf+r26bZgOd37i5szCbNkJRCp 6+Le0KNO81/CxKm+mD6CAFglKCCpTIBUIZd2TkxKZWY5+IbiDzoU91dxGBodq5s+UTCuHtddupg9 DzJsjBiasCy/NUkW7e/skybQHESVtyZa1LnZ4g== Received: by mx-out-gi1.emailamp.com id h4a2ni2akmcu for ; Mon, 22 May 2017 09:17:56 +0300 (envelope-from ) Reply-To: MIME-Version: 1.0 Subject: Invitatie la dezvoltare - programele de training din perioada urmatoare From: Dynamic Training Solutions To: freebsd-ports@freebsd.org Date: Mon, 22 May 2017 06:17:40 -0000 Message-ID: <592278ce35692d2321daa0b1@training-info.ro> 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: Mon, 22 May 2017 06:31:06 -0000 | ![](http://nl.training-info.ro/AoqytoYh4qTIOBMKCtC8OQkjRSWgM-7mrmIxKxg8zT= Kp_RCllOBCL57FF3odaQjyZ4L6-6cPvGfoCZjktpMn0z8J7E4gYrGT6sBD09JA1n72I_U1Ku-5p= hZGJ5rhvlRG2Duro3LOLc1JFZyv_KuBAJedZq4AG14BTm8EHIUHbAcEWsz372ug0aiJy04LZOzA= cDtMn1hOrMudzuyGxVyrOUjN-MbKHV-FC2StvvqTJy6EgfLZb9A6epfncmBd_D6kuwAJ3e7sQ41= kE52_1rby7f1JLwM6b6k-k7Mz-5iwHjJs4ZgCrdwlsyEUJbtNM6cjlTHTj1bDYW911VWedl9H9m= 7CfFss-8L9Oxb2PsHjzq1gOA3jllCnIcLHqrB0zOrlJtAc03ufBqois-r3UULpGqsHbboTimeIf= AEQrNmkFyE5IJ7wAPA0iWxL2ACdZ-tQDdzm8J8UisAeYja5nH0PUw2-7Tl2qrL_dFAr-oAQMIa4= KasqrVkJC60bw0N0wv8Jjm3M-p3bdjcb072a_R_q3g) =20 --- =20 =20 **VREI S=C4=82 FII MAI BUN?** **VREI S=C4=82 =C3=8ENVE=C8=9AI MAI MULT =C3=8ENTR-UN TIMP MAI SCURT?** **Atunci, te invit=C4=83m la cursurile Dynamic Training Solutions!** =20 =20 | **Bine te-am gasit!** Pentru perioada **26 mai - 30 iunie** ti-am pregatit pentru dezvoltarea ta = sau a colegilor tai un numar de **33 programe de training**. Acestea se vor= desfasura in zone si locatii diferite, incepand cu Bucuresti, apoi continu= and cu mare (Mamaia si Balcic) si binenteles ajungand si la munte (Bran si = Poiana Brasov). Lista acestora o vei gasi ceva mai jos. Pentru a nu mai pierde timpul, te invit sa vizualizezi cateva informatii pr= ivind primul curs - **Negocierea pentru achizitori, buyeri si cei din comer= cial **ce se va derula in 26/27 mai in Bucuresti. Pentru acesta sau pentru = oricare din celelate traininguri te asteptam pe site-ul nostru pentru mai m= ulte informatii - [http://nl.training-info.ro/inkol6rKD70N5eV_GxD_0nmHzsTpR= neco3Hs7xd-7Vk2KWcHZ8igic8gSatHzyMBHpVFvhHpaqGpDFCG1xwKhUwCuDcl2ZW7lDTBV51f= EOaeVR6hzrHGlH-QTy2oKzbxc4U59tfizhtYe0Da6kdk_j_lv1EI1yEb0vzlyI_9IuW6W14S3ug= P9zVZKsdqgobPVeX926sYKnaZJ59XBBc0mS30PbI9Pd28MORs5W9uWRaOnvbBPns1ZR7jX3W1uR= K6XDgVREEpTu6pj1I8EVE754XU6KCVgrJmN5PJvykyIyHQxvNLl-Z_BKkCvVNKsjj0prhgcvlZ_= 7LedWl5zc4UV9SobkVxwhOAgdNsvHAScSeFYGtCnFlDVDZMagYjyHHhB3R_v9wpbm4wHKzNnP-A= f3p7ooV3wUWZQp0YoEzd4jmQEh_TEDlkIQ]() Iar daca nu te-am convins pana acum la actiune, te rog sa primesti si: **7 Motive pentru care s=C4=83 te =C3=AEnscrii la cursuri** **Ce o s=C4=83 =C3=AEnve=C8=9Bi:** 1. Cum s=C4=83 treci peste orice obstacol =C8=99i s=C4=83 legi parteneria= te de succes. 2. Cum s=C4=83 =C3=AE=C8=9Bi dezvol=C8=9Bi abilit=C4=83=C8=9Bile =C8=99i = s=C4=83 comunici eficient, =C3=AEntr-un mod profesionist. 3. Vei =C8=99ti ce strategii s=C4=83 aplici pentru a fi un om valoros, at= =C3=A2t ca =C8=99i angajat, c=C3=A2t =C8=99i antreprenor. 4. Vei =C8=99ti ce s=C4=83 faci ca s=C4=83 =C3=AEi cucere=C8=99ti pe cei = din jur =C8=99i s=C4=83 prime=C8=99ti un feedback pozitiv. 5. Vei descoperi cum s=C4=83 =C3=AE=C8=9Bi satisfaci nevoile =C8=99i care= sunt necunoscutele la care nu aveai r=C4=83spuns. 6. ****Vei avea oportunit=C4=83=C8=9Bi extraordinare datorit=C4=83 resurs= elor acumulate =C3=AEn urma cursurilor. 7. ******Vei investi =C3=AEn tine 100%. Vei livra valoare!** **MAI BINE PREG=C4=82TIT. ACCES SPRE SUCCES!** =20 =20 --- =20 =20 ****. **** **![](http://nl.training-info.ro/fcthx3Ti4Go4-DHrkNBaLzyVIN9nW4tTofq7ip0GQA= FevVgszvGSgLaoWnJgGCCDqMTBJrDNgjZlDIn327kcWlmA6iqeiKx9lR_ZmlIkWo9ENLJhjfeNJ= SmoytZ0c_9phRd1XJNyAC99lTGSN6_NUm7cPwzuP77XV0BpYpl30ICNYC5i_kCATuYYhdtknCNg= RTrFFPMpAiRyuOdzthdLNV2-fJTP0eWWb2e2hOkAIHMQUpn_VrK38fYySg5pO-3OM8XlrIiDxou= H5FoITaNOd01lA4CLh_wVIcHmrRRpDQt3KQZx1q9MP8uP2xZ-mkdsDlkw5FKZCKmpTeDtsXgS0-= cvzfLM8Gaj8BMVI3I0saEBdJdlhNYwYTmB2t-FUKuAkGsmIVwCRm9fnpeI3v1VSR1iwFOkNJ13A= ncuUnWeAm7aKT50T7KUN9UNuuZDoFkY4H_3B_mm_knJYOGy0DJyqUzmkDnlE9n6usMXdGtJJCh1= tEaXQ327VdVRp8DEo46QKaNiGeACNW6qtVdFvMZ3eA)** **Negocierea pentru achizitori, buyeri ** **s****au pentru cei din comercial =E2=80=93 26/27 mai** ** ** ** **Negocierea pentru achizitori, buyeri sau cei ce lucreaza in comercial = este unul dintre **cursurile foarte utile de recomandate pentru acesti spec= ialisti**. Parcurgand acest curs, achizitorii, achizitorii, buyerii vor put= ea: * sa inteleaga conceptele de baza care se aplica in negocierea in achizit= ii * sa afle cat de utile sunt unele tehnici existente pentru a putea fi apl= icate cu succes in companii * sa identifice posibilitati de eficientizare a metodelor de negociere. Achizitorii eficienti trebuie sa aiba capacitatea de a obtine acorduri du= rabile in relatiile companiei cu factori majori ai mediului economic, si sa= aiba sprijin deplin de la cei fata de care depind in ceea ce priveste resu= rsele, autoritatea si producerea efectiva de rezultate. **Cursul isi propune sa ofere buyerilor instrumente practice** care au rolu= l de a clarifica nuantele sensibile in obtinerea de rezultate in procesul d= e negociere. Cursul este unul interactiv astfel se creeaza cadrul analitic = cat si abilitatile si cunostintele necesare imbuntatirii performantei de lu= cru. In cadrul cursului vor exista exercitii si discutii de grup cu rolul de a e= videntia si de a ajuta participantii sa isi consolideze cadrul teoretic rel= evant pentru mediul lor de lucru. ** Obiectivele cursului:** * Prezentarea celor mai moderne metode si experiente legate de metode sof= isticate de obtinere a unor acorduri profitabile si solide; * Dezvoltarea capacitatilor de elaborare a strategiilor de negociere in a= chizitii si de implementare creative a acestora. ** ** ### Ce veti invata in cadrul cursului: * Tipuri de comunicare =E2=80=93 elemente de comportament si utilizarea l= or eficienta; * Asertivitatea =E2=80=93 metoda optima de colaborare si eficienta; * Dilema esentiala a negociatorului: stabilirea scopului; * Alternativele intr-un accord. Limitele negocierii; * Definirea intereselor ca masura a negocierii; * Crearea valorilor: cum se obtin cu adevarat valori comune; * Punerea in practica a principiilor negocierii in achizitii; * Negocierea in evolutie =E2=80=93 etape si metodologii; * Puterea de influenta in negociere si aplicarea ei in achizitii; * Negocierea pentru atingerea unui scop, autoritati sau resurse =E2=80=93= nevoia de mandate; * Ratificarea, evaluarea post-negociere, evolutie; * ****Exercitii practice, simulare, teste. **Mai multe informatii si intreaga prezentare a cursului la** \- ** ** **NU TE OPRI NICIODAT=C4=82 DIN =C3=8ENV=C4=82=C8=9AAT!** ** ****Accept=C4=83 acum provocarea.** **Noi experien=C8=9Be pentru ca tu s= =C4=83 c=C3=A2=C8=99tigi!** **** ****. **** | | **Calendar cursuri open 26 mai - 30 iunie 2017** =20 ---|--- =20 26-27 | Bucuresti | Tehnici de Negociere pentru achizitori si buyeri =20 29-30 | Bucuresti | Managementul Stocurilor si Depozitelor - simulare =20 29-30 | Bucuresti | Customer Care =20 | | =20 01-02 | Bucuresti | Finante pentru Non Finantisti =20 01-04 | Mamaia | Leadership for HighPerformance =20 | | =20 07-08 | Bucuresti | Managementul Stocurilor si Depozitelor - simulare =20 09-10 | Bucuresti | Tehnici de Influenta si Persuasiune cu integritate =20 09-10 | Bucuresti | Vanzarea Consultativa =20 09-11 | Bran | Marketing Strategic =20 09-11 | Bran | Time Management - Managementul Timpului si Stabilirea Priori= tatilor =20 | | =20 15-18 | Balcic (Bg) | Management Operational =20 16-17 | Bucuresti | KAM - Key Account Management =20 16-17 | Bucuresti | Supply Chain Management- Managementul Lantului de Aprov= izionare-Distributie =20 16-17 | Bucuresti | Tehnici in convingerea clientilor =20 16-18 | Mamaia | Comunicare asertiva =20 | | =20 21-22 | Bucuresti | Tehnici SPIN pentru finalizarea cu succes a vanzarilor =20 21-22 | Bucuresti | Tehici de luare a deciziilor si rezolvare a problemelor= . Creativitate si inovare in luarea deciziilor. =20 23-24 | Bucuresti | Cum sa descoperi diamante. Curs avansat de recrutare =20 23-24 | Bucuresti | Logistica - Managementul Logisticii =20 23-24 | Bucuresti | Management Strategic. Strategie si Planificare Manageri= ala =20 23-24 | Bucuresti | NLP si Instrumente de calibrare si influentare in comun= icarea cu clientii =20 23-25 | Mamaia | Abilitati de coaching pt manageri, sefi de compartimente i= n dezvoltarea angajatilor =20 23-25 | Poiana Bv | Roluri si abilitati manageriale - Dezvoltarea abilitat= ilor Manageriale - Eu ca Manager =20 | | =20 28-29 | Bucuresti | Abordarea telefonica a clientilor =20 28-29 | Bucuresti | Lean Management. Sisteme eficiente de decizie manageria= la =20 28-29 | Bucuresti | Managementul Motivatiei =20 28-29 | Bucuresti | Microsoft Excel - nivel Basic si Intermediar =20 28-29 | Bucuresti | Social media - "Cand imaginea conteaza" - curs aplicat = de folosire eficienta a instrumentelor online =20 30-01 | Bucuresti | Folosirea eficienta a Fiselor de Post - Implicarea prac= tica in strategia de Resurse Umane =20 30-01 | Bucuresti | Managementul securit=C4=83=C5=A3ii informa=C5=A3iilor c= lasificate =C5=9Fi neclasificate =20 30-01 | Bucuresti | NLP (Programare Neuro Lingvistica) in dezvoltarea manag= eriala =20 30-02 | Bran | Managementul Conflictului =20 30-02 | Bran | Management de Proiect . Managementul proiectelor =20 =20 =20 Click AICI ** **=C8=99i cite=C8=99te= mai mult. **Te va ajuta! ** **** =20 =20 =20 --- =20 =20 [![](http://nl.training-info.ro/3W_OQReawB8cZitdEm3wsB8rU6-0jEvJ_3Lw4YtIbFb= ooEJFZRALi0nzykUzM22OJX3u_TnZHPDbuEA4qj-cXL7enINgKanIdwf5q-hmtzYN47JsYGCBis= WdggXuvQ-w4A4oUJDlUxdq1a7scomZwcf1hqZa4-Rv2P-vNGd4XtGxdO1g9oD130nLx5LndpkE9= vDZIDgNp4bdKhAHPs1nOLRcXvQ3Djt2l9RCSQtPGVSVTGQfIw0wznzPslUG8p8QEp1nZwvRK1nk= 44Wme-ZMMg1uS61J0wS0AmWyO2Z5qdOrFkjQGmqNPTnzu0RgD3LpxikdTvqDRF63x0en3j0Z0n3= 4GjSnyLKfv-hh3nrUde4Q3qfbNmrrRz8NT80UuG6DXox-PUIypvwYsMlVv8NjTEXaUKQ5ySyVrK= BzzhziBLF5xfDKNZl3z8OOmjouSxkFp109dRVJyQ)]() [![](http://nl.training-info.ro/bkW8Vl90DMS5jZ-RoberorOVk-4KTZy-c4YX9t8= 5ONTdr9HwQWTqEfl447WvCO19kVaGeT8xtPvqrvJtJ8i9m6lIhaqVF7xxYA-owMo8FdQgYweDN9= XI4qeoP3sSna38itMZy0R5_m_ak5mNCZT_8LrBmIWbq0nU0PaRVSbR6TRtqzgBKByeq45qGWdir= UTuPoRYYgC6N7lBP823JUgIQnqKumZaY00kzMUTS4rELRL0a5OjaD3V0WLRwAUhLQneFgAja8Ho= nEBdQhwI4IsJuLf36VCgJi3z8K1aguOyXWJf2utmZcGxV7KJHulfEz0pCgBip-PQAWuf8-FtSdJ= YoHldUS003GG8zeGETaOXmWdTGjyrgfgYnDp3_Rs6cebqT8csSgOsWEOP0C2G6tg5sEsi6AWrFX= mb0mKUONQUvsU35qAP91w0LD3PyrRxr_ZtKHG9Bvv_BQ)]() ![](http://nl.tr= aining-info.ro/1Y4AJ26MPbUYA47c9xA19SKWSvwjqelaywSm1TjlTBwrebS7_HcuFoXlS0tt= JpLLEct2GHWqZ5FV6UIoIsqT8bhG1Alq8SlkOdiy6XRlsKWCoyfq0mZ7ko0TzoQGhzEcmCeJnZN= mwwlr7Md-rTmg2lJVsQXnYVBXqlnIEnG4NvA_8V7ds9Z5tqmTpHdF15t5l-s8MI14-WlXsW9_Ob= JjXL-Ei5w5LvVd4iErSj3tWEajDTwhijvHROwSSuAbDZyY0TT_PB0QF5r5rlLBmQatLnovdgzZL= JvxoWXXIsXc8L8XPl4SrnQRIaZU-rCxjNV58ppLJhlgUQCjd1aQ7kcMplUHRudiHeohvUhGIs85= BVWMjVZ9nO2_pVnPiDuns6gxvJ0XVarjWIWU5XrORbyyUVbU6lbAceR8V6pKPd-2apM1OFLF7xn= Hx_t7et4DtY1PiPUxXNwpRTTR) =20 =20 ******Programele de mai sus, pot fi accesate si prin Unitatea Protejata ce = suntem autorizati din 2007** * * * =20 =20 **"Educatia este cea mai puternica arma pe care voi o puteti folosi pentru = a schimba lumea." - Nelson Mandela** =20 | ![](http://nl.training-info.ro/s3uVjOKzgtPVSg5QKrVnAk3HBpD20DI3kSbiF8wD1= AKb0r3FPEf8QtH9nL-OP3ZO1K0MSa2jE2UDz0S2gvvlvqk2egtAtvR1ARfdXsOz2kSiWqC1HCW2= o9MToSRUxruH1OKAaM7AnzRC60_roGAcFOk1rLWtSslvCqpFD2B8l_BxqEusWp_PaHhek9xCoxK= rCnrR-auN2RrcudZLSf4opf3mHfqlYy0QbA9V-Lu1LawrA1eLWxAgSh_JlI-KRCn9Uf3cu4kgfV= V9X1dZejBvtLyFXBzZUUjGbC0LVQ4nu1SpsnPcPdbWgBag4uKUqDadM5yVE2ujtLGJvSAQJWHbG= n0KhpnhD-QMHIseiA28W2Q76IWNt702UohHxmfuTD5aXt9J6m_0IOSRGD2uqH3ta7a3hk3tO1xC= GQQwtRwSFp3K6NTZSpHDEA5a3HKEOGpErkZ7nBaJkpQ1cfiK9YbInhGhy7PBLkyjsF6BrX3Jms1= f_qq1v_WfxsxSewos_IZf8-R-EuFunpwYeyBPoVRS) | office @ http://nl.training-in= fo.ro/L6UWDCqdbW_ffW33-eXyQDaAKStZJwR6BLnZE-kgSznwB4iE18i5J5gR3VVnNiISohQqg= QoFOmrIfS3duMWfZ7ER645CRUb12UdR20d8sF2Qd4F8p3flMKJCvtlVmXX_nsuFyY6kL4SKobJI= W-X0KPQSkZluEdfNTAX-bGaWuP6dtKeApIAzYKP3X9btvu0dHzTjj4Qg6Cd-Fl5lg-Ty1R2Z2eF= Rj5w8ADcbbjJ-oZhh69sY7_1O9Fe212rovEmxIoBs1W1F2b50SKWYyH2D5tJnDurZ4r6PxBU8fv= uPsGOOacrAF8quKs--B8MWpbgA-ARwJ8wTvDce57prPubk6eLIazgBJTALMtw8uJpqFjQIhOd-M= qvzdDUoiSovoA441kD9qWTbg8xnrf-MrbgArbgCGukPbeRTPuy84y_r2jxp-mZC =20 fax +40368 81 33 15 =20 Mobil +40 734 909 230 =20 ---|--- From owner-freebsd-ports@freebsd.org Mon May 22 20:07: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 34B9BD795AB for ; Mon, 22 May 2017 20:07:40 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from be-well.ilk.org (be-well.ilk.org [23.30.133.173]) by mx1.freebsd.org (Postfix) with ESMTP id 154A71775 for ; Mon, 22 May 2017 20:07:39 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: by be-well.ilk.org (Postfix, from userid 1147) id A385233C24; Mon, 22 May 2017 16:07:37 -0400 (EDT) From: Lowell Gilbert To: freebsd-ports@freebsd.org Subject: Re: pango not building under portmaster, holds back emacs (portmaster) References: <44tw4edj4y.fsf@be-well.ilk.org> <20170521214525.GW1190@albert.catwhisker.org> Date: Mon, 22 May 2017 16:07:37 -0400 In-Reply-To: <20170521214525.GW1190@albert.catwhisker.org> (David Wolfskill's message of "Sun, 21 May 2017 14:45:25 -0700") Message-ID: <44o9ukejue.fsf@be-well.ilk.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain 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, 22 May 2017 20:07:40 -0000 David Wolfskill writes: > On Sun, May 21, 2017 at 04:55:57PM -0400, Lowell Gilbert wrote: >> I suspect this is a portmaster problem, but pango isn't building with X >> support because of: >> ../pango/pangoxft-render.h:31:10: fatal error: 'X11/Xft/Xft.h' file not found >> >> This is only the current issue. I've been struggling for several days to >> get my graphics programs rebuilt, and I haven't seen any e-mail about >> it. Anyone have an idea what's going on? >> .... > > Not much of an idea; while I use portmaster to update the ports on > systems where I update base in-place via src update, I don't recall > encountering that -- and on one of those systems (my laptop), I update > the installed ports daily. > > I find that /usr/local/include/X11/Xft/Xft.h was installed by > x11-fonts/libXft, so re-installing it may help. And it did, so that means there's a missing dependency in pango. From owner-freebsd-ports@freebsd.org Mon May 22 21:00: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 2A171D7772B for ; Mon, 22 May 2017 21:00:21 +0000 (UTC) (envelope-from lisa.garner@salesprospective.com) Received: from mail-pf0-x234.google.com (mail-pf0-x234.google.com [IPv6:2607:f8b0:400e:c00::234]) (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 EB7281866 for ; Mon, 22 May 2017 21:00:20 +0000 (UTC) (envelope-from lisa.garner@salesprospective.com) Received: by mail-pf0-x234.google.com with SMTP id n23so93179671pfb.2 for ; Mon, 22 May 2017 14:00:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=salesprospective-com.20150623.gappssmtp.com; s=20150623; h=from:to:references:in-reply-to:subject:date:message-id:mime-version :thread-index:content-language:disposition-notification-to; bh=gtnpyH6zWx40NJU14rV17ADZTAfmaWtk+tWXR3LHsH8=; b=lJ6fKRi7iq9DwTyr9nb/YR2fmrmXrxAMJveEVg2EpC7Yanq79BiEFiTCkrLu+ttosb JWidF9gtpsBUayt0wA8BkgWOpPs4lH5r/ZTBaiofl5kpNnIdPRg6ZLqZ6s39+cjs7Wnh tHuCwEkPFcAGEGBZN/BaDkwqcRJfvnY+eOezgtJBFoHjc1kTu1kQ7nUusFSTmxQnIHaa radW+drM4hjObPPbn1Q7amQM/dxVAs0qGL4bwgUg8RUPF58Gi09bRzsahKvDckbzvoMT Ib2nCCOjmuFxA/WwKdjFzokX+99BdZSAPEVUxtyp8wScLQqJE9tGlfc/EDY3cmrYuFwN ETUQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:references:in-reply-to:subject:date :message-id:mime-version:thread-index:content-language :disposition-notification-to; bh=gtnpyH6zWx40NJU14rV17ADZTAfmaWtk+tWXR3LHsH8=; b=l/z7OMUCp0w0sJ65duFZQ0wK2hLsmbg5gKr7KU7rXvw9kykFFYY/Mvo+S5OmeqpZFg rFSuaSU21RQZw7GqkAK4Eoux5EfoFWVn7N8XDI3xXZrNIVzoIvhvoz7saxRbBLoWiEw7 4U8KhjCP9NRhtCb11GU4e2uJl/BRhI5nEU2QYmwQ7JcP97un5mYMCpuyxUMvSZgL+Ogb peGJFQW+u2xZ3edq9UQfGgoUCVfHvr6DJVH7MaRWe2UvkG8nf0SIMAj7xJTxsBXbFvvQ 7p6FtiexACMngw5Jr3Xrhzf9yc1r/TroKJnxRJDTzPlRmnygLiyT7FeogoPreYSY7VhU iO5g== X-Gm-Message-State: AODbwcBhcNHayQnIcRFcykhLFFdIG4eJDFtZJuZgk1gObsYaZEXjSj8E o+JZ7CFnBDg5dmFggYc= X-Received: by 10.98.59.2 with SMTP id i2mr27522363pfa.50.1495486818743; Mon, 22 May 2017 14:00:18 -0700 (PDT) Received: from SBSBLRDT05 ([49.207.60.186]) by smtp.gmail.com with ESMTPSA id n24sm33604240pfb.14.2017.05.22.14.00.15 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 22 May 2017 14:00:17 -0700 (PDT) From: "Lisa Garner" To: References: In-Reply-To: Subject: RE: Security Service Industry Contacts Date: Mon, 22 May 2017 17:00:06 -0400 Message-ID: MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 Thread-Index: AdLEH2tJoNh+JUOYS/WJKkU3eI4DTgPHvfMw Content-Language: en-us 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: Mon, 22 May 2017 21:00:21 -0000 Hi, I just wanted to follow up with my previous email to check whether you have received it If you would be interested in acquiring our b2b email lists, please let us know your target client's criteria (Job titles/Industry sectors/Geography) you would like to reach We will certainly get back to you with numbers of contacts we maintain, samples, and guarantees on the list with more information Thank you and look forward to hear your positive response Regards, Lisa Garner From: Lisa Garner [mailto:lisa.garner@salesprospective.com] Sent: Wednesday, May 03, 2017 11:11 AM To: 'freebsd-ports@freebsd.org' Subject: Security Service Industry Contacts Hi, Hope you doing well! Would you be interested in acquiring complete contact details including valid & verified email addresses of "Security Service Industry" for your upcoming marketing promotions. Details included- Database consists of- Name, Web site, Contact Name, Title, Verified & Opt-in Email Address, Mailing Address, Telephone Number, Fax Number, Industry, Sic Code, Revenue, Number of Employees etc. Data sources- Tradeshows, Business directories, online magazine subscription, yellow pages etc. List Format- Excel Sheet Our Services- E mail Lists, E mail Appending, Custom List Building, and Campaign Target titles/Decision makers- * Head of Security/Director of Security/Security Managers * Director of Operation/Operations Manager * General Manager/Managing Directors * Chief Security Officer/Security Supervisors and Coordinator * Security Chief and Project Manager * President and CEO/Senior Vice President * Building Owners & Managers * Event Director/Managers * Venue Manager/Festival Director * Shopping Centre Managers * Construction Directors/Managers/VP's * Site Supervisor/Safety and Security Manager * Portfolio Manager/Senior Director * Regional Security Director * Facilities Manager/Facility Security Officer & CIO's Target vertical industries- * Commercial & Corporate Office Buildings * Retail Shopping Centers * Banks, Credit Unions & Financial Institutions * Construction Sites/Private Shelters etc. * Airports/Aerospace and Maritime * Health Care Facilities, Hospitals, Schools & Other Institutions * Special Events/Convention Centers * Businesses/Commercial Facilities & Enterprises * Distribution & Warehouse Security * Chemical & Petrochemical Security * High-Rise Security/Law Firms * Utilities: Energy, Electric, Gas, Water * Aviation & Transportation * Sports & Entertainment Please let me know your specific target criteria you would be interested in reaching below:- Target Industry: _____________; (Any) Target Geography(countries/states): _____________; (USA, UK, Across the World) Target Job Title: _________________; (CEO, CFO, CMO, VP etc.) We maintain numerous Tele verified database of all industries and titles. Let me know your thoughts. So that I can send you few samples to check our database accuracy along with counts and pricing. Once you own the list, it can be used multiple times and can target the list for Multi-Channel Marketing Solutions like E-Mail Campaigns, Direct Marketing, Telemarketing, Fax Marketing, etc. In case, you are not the decision maker on this, please guide me to the right contact. Please let me know your thoughts. Regards, Lisa Garner Online Sales & Marketing Manager _____ To remove from this mailing: reply with subject line as "leave out." From owner-freebsd-ports@freebsd.org Tue May 23 01:44: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 EDCADD77101; Tue, 23 May 2017 01:44:13 +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 D9D4D170F; Tue, 23 May 2017 01:44:13 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dCyqt-0003FR-WE; Mon, 22 May 2017 19:43:12 -0600 Date: Mon, 22 May 2017 19:43:11 -0600 From: The Doctor To: freebsd-bugs@freebsd.org, freebsd-ports@freebsd.org Subject: Any holes? Message-ID: <20170523014311.GA11756@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.8.2 (2017-04-18) 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, 23 May 2017 01:44:14 -0000 Just tried to compile a port of www/firefox and most service except httpd was offline from 90 minutes and www/firefox just stopted compiling and most services was restored. Just had to restart a number of Linux boxes virtualised here. Is this a memory, kernel or Hardware Issue? The server was purchased from IXSystems using Supermicro MB Dual 1.7GHz CPUS and 16 GB memory replacing again BSD/OS 4.3 servers and have been in service for 10 months now. -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising! https://www.empire.kred/ROOTNK?t=94a1f39b Look at Psalms 14 and 53 on Atheism UK Stop Theresa MAy MT V2 and Impotent Corbyn, Vote Farron and LDEm!! From owner-freebsd-ports@freebsd.org Tue May 23 12:17: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 E6D59D78888 for ; Tue, 23 May 2017 12:17:18 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) Received: from fortymile.utu.fi (fortymile.utu.fi [130.232.207.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "smtp-in.utu.fi", Issuer "TERENA SSL CA 3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 7498B1810 for ; Tue, 23 May 2017 12:17:17 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; d=utu.fi; s=out-utu-v3; c=relaxed/relaxed; h=to:from:subject:organization:message-id:date:user-agent:mime-version:content-type:content-transfer-encoding:x-originating-ip:x-clientproxiedby; bh=ZY7huvKq6UnCdqkYudXJh+JjVbqXPDW8IuhERUqYLWg=; b=EBoVXt2oBt1mptDXrtM2j4IsVs6B/ddNk5wKbQkVaJX554CR0IuK68Wh8w58n7WbBLY6wicT8UfZqu/oZprnrOnwJm4PDh+17oDH6Ja6ELjzOK3UIVz+wpziYgg+HrCBLCYSyqFZyzePle50hhzm3kW833MFgnp5BchZijT+C+ILHwnpy/S00izal0JAQKJgWWwaNaoqlgV6ZzS8MAWaFL6ssXHZ4ZvTLIbcaN3IxtAlAGcUszHz5Yc8Qfxlqz5t97u/2WLCZgFabINS3bwHw/IbRl3Zc90reurHneMHBls8XlU6HZzEXi82kFevP549SK1bKLQG0T58LNtd4wbOxA== Received: from smtp-03.utu.fi (smtp-03.utu.fi [130.232.207.3]) by fortymile.utu.fi with ESMTP id v4NC24LM027170-v4NC24LN027170 for ; Tue, 23 May 2017 15:02:05 +0300 Received: from EX13-12.utu.fi ([130.232.207.126]) by smtp-03.utu.fi (Oracle Communications Messaging Server 7.0.5.29.0 64bit (built Jul 9 2013)) with ESMTPS id <0OQE003GWMRH8P80@smtp-03.utu.fi> for freebsd-ports@freebsd.org; Tue, 23 May 2017 15:02:05 +0300 (EEST) Received: from [192.168.1.28] (87.92.243.246) by EX13-12.utu.fi (130.232.207.92) with Microsoft SMTP Server (TLS) id 15.0.1263.5; Tue, 23 May 2017 15:02:04 +0300 To: freebsd-ports@freebsd.org From: "Michael L. Wilson" Subject: Recoll version bump in ports Organization: Turun yliopisto - University of Turku Message-id: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> Date: Tue, 23 May 2017 15:02:04 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-version: 1.0 Content-type: text/plain; charset=utf-8; format=flowed Content-transfer-encoding: 7bit X-Originating-IP: [87.92.243.246] X-ClientProxiedBy: EX13-03.utu.fi (130.232.207.83) To EX13-12.utu.fi (130.232.207.92) 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, 23 May 2017 12:17:19 -0000 Greetings! Might there be a possibility of having the current deskutils/recoll version in ports recoll-1.21.6, bumped to the current release 1.23.2? The new release fixes a number of serious bugs and has additional features. -- Michael From owner-freebsd-ports@freebsd.org Tue May 23 12:19: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 04CCDD78959 for ; Tue, 23 May 2017 12:19:17 +0000 (UTC) (envelope-from pi@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 C12C319E8 for ; Tue, 23 May 2017 12:19:16 +0000 (UTC) (envelope-from pi@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dD8mS-00072d-Gi; Tue, 23 May 2017 14:19:16 +0200 Date: Tue, 23 May 2017 14:19:16 +0200 From: Kurt Jaeger To: "Michael L. Wilson" Cc: freebsd-ports@freebsd.org Subject: Re: Recoll version bump in ports Message-ID: <20170523121916.GC4258@home.opsec.eu> References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> 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, 23 May 2017 12:19:17 -0000 Hi! > Might there be a possibility of having the current deskutils/recoll > version in ports recoll-1.21.6, bumped to the current release 1.23.2? > The new release fixes a number of serious bugs and has additional > features. Do you think you can provide a patch ? Via bugs.freebsd.org ? -- pi@opsec.eu +49 171 3101372 3 years to go ! From owner-freebsd-ports@freebsd.org Tue May 23 13:00: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 114CCD7A23D; Tue, 23 May 2017 13:00:18 +0000 (UTC) (envelope-from joel.bertrand@systella.fr) Received: from rayleigh.systella.fr (rayleigh.systella.fr [213.41.150.218]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "rayleigh.systella.fr", Issuer "rayleigh.systella.fr" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A86F1939; Tue, 23 May 2017 13:00:16 +0000 (UTC) (envelope-from joel.bertrand@systella.fr) Received: from [192.168.2.3] (schroedinger.eikeo.com [192.168.2.3]) (authenticated bits=0) by rayleigh.systella.fr (8.15.2/8.15.2/Debian-8) with ESMTPSA id v4NCrhND028864 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Tue, 23 May 2017 14:53:49 +0200 Subject: Re: Issue with pkg upgrade on diskless workstation To: Mark Linimon Cc: FreeBSD Hackers , freebsd-ports@freebsd.org References: <20170514082046.GA15092@lonesome.com> From: =?UTF-8?Q?BERTRAND_Jo=c3=abl?= Message-ID: Date: Tue, 23 May 2017 14:53:41 +0200 User-Agent: Mozilla/5.0 (X11; Linux 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: 8bit X-Virus-Scanned: clamav-milter 0.99.2 at rayleigh 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: Tue, 23 May 2017 13:00:18 -0000 BERTRAND Joël a écrit : > Mark Linimon a écrit : >> I am running a powerpc64 machine diskless but only with some awful hacks. >> I can make them available if need be, but I hope that someone else has a >> better recommendation for you. >> >> mcl >> > > Before the last pkg binary upgrade, this workstation ran fine. What kind > of hack do you use ? Some (bad) news. I have downloaded and built pkg from git repository. It runs better but is unable to achieve upgrade. Now, it stalls after it has downloaded all packages to upgrade: # /usr/local/sbin/pkg upgrade ... Number of packages to be removed: 3 Number of packages to be installed: 31 Number of packages to be upgraded: 254 Number of packages to be reinstalled: 45 The process will require 1 GiB more space. Proceed with this action? [y/N]: y pkg uses 100% of a CPU core: last pid:3557;load averages: 1.06, 1.14, 1.15 up 18+20:22:27 14:47:00 109 processes: 2 running, 105 sleeping, 2 zombie CPU: 25.3% user, 0.0% nice, 0.6% system, 0.2% interrupt, 73.9% idle Mem: 2465M Active, 3935M Inact, 1251M Wired, 743M Buf, 157M Free Swap: 8192M Total, 10M Used, 8182M Free PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND 3336 root 1 103 0 1029M 990M CPU3 3 67:09 98.60% pkg As I have written, this workstation is a diskless machine: $ df -h Filesystem Size Used Avail Capacity Mounted on 192.168.10.128:/srv/pythagore 523G 53G 444G 11% / devfs 1,0K 1,0K 0B 100% /dev procfs 4,0K 4,0K 0B 100% /proc fdescfs 1,0K 1,0K 0B 100% /dev/fd 192.168.10.128:/home 3,6T 439G 3,0T 12% /home Mount options for / are nfsv3,tcp,soft,intr,rw,async,nolockd (nolockd is mandatory to avoid locking error on server side). For /home, nfsv3,tcp,soft,intr,rw,async. I suppose that is bug is NFS related, but I'm not able to found a workaround. gdb crashes when I try to attach it on pkg process : root@pythagore:~ # gdb -p 3336 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd". Attaching to process 3336 /usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/solib-svr4.c:1444: internal-error: legacy_fetch_link_map_offsets called without legacy link_map support enabled. A problem internal to GDB has been detected, further debugging may prove unreliable. Quit this debugging session? (y or n) NFS server is a 7.0.2 NetBSD (that runs without any trouble). Best regards, JKB From owner-freebsd-ports@freebsd.org Tue May 23 13:12: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 EE37BD7A78E for ; Tue, 23 May 2017 13:12:09 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) Received: from fortymile.utu.fi (fortymile.utu.fi [130.232.207.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "smtp-in.utu.fi", Issuer "TERENA SSL CA 3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 741FB12AD for ; Tue, 23 May 2017 13:12:08 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; d=utu.fi; s=out-utu-v3; c=relaxed/relaxed; h=subject:to:references:cc:from:organization:message-id:date:user-agent:mime-version:in-reply-to:content-type:content-transfer-encoding:x-originating-ip:x-clientproxiedby; bh=n8mnL2k5bK3NqoCVzoqRqHlAMDOHwxrLsrq0RwUJuv4=; b=jT0/5/DvTZ41Avb3iEMo/ptPVinsMyIjwbVD31Md7dIws83qeL2/KNYJgFa9UxUmPepWx0sxeSzGWOBZtAjR5IeDnmuOq2WRaJAKQFhm7v40uGiw7Xqdozkx/sOnOB9a8w8tN7IJIDVLvYO2ElbybXnWhkTj5V7nvXPvNgazDRLMl/op2zBz/ktNGVuyUbeuGz+KzUfveW7PK/yOJeKa+Q/b4FrAaqsgnIZHiRl9o6epBnrTeaO7N1IJUfuT7Rirn3C3mbDyeQKzezoixAqQScgSXP8vBHGu0/sOdk1OHA0aBEk+Np/ytyqZ9/K9U0fReLfDeR4CmlKugfc9kQKBTw== Received: from smtp-03.utu.fi (smtp-03.utu.fi [130.232.207.3]) by fortymile.utu.fi with ESMTP id v4NDC4Mk016648-v4NDC4Ml016648 for ; Tue, 23 May 2017 16:12:04 +0300 Received: from EX13-12.utu.fi ([130.232.207.126]) by smtp-03.utu.fi (Oracle Communications Messaging Server 7.0.5.29.0 64bit (built Jul 9 2013)) with ESMTPS id <0OQE003SWQ04OF30@smtp-03.utu.fi> for freebsd-ports@freebsd.org; Tue, 23 May 2017 16:12:04 +0300 (EEST) Received: from [192.168.1.28] (87.92.243.246) by EX13-12.utu.fi (130.232.207.92) with Microsoft SMTP Server (TLS) id 15.0.1263.5; Tue, 23 May 2017 16:12:04 +0300 Subject: Re: Recoll version bump in ports To: Kurt Jaeger References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> Cc: freebsd-ports@freebsd.org From: "Michael L. Wilson" Organization: Turun yliopisto - University of Turku Message-id: Date: Tue, 23 May 2017 16:12:04 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-version: 1.0 In-reply-to: <20170523121916.GC4258@home.opsec.eu> Content-type: text/plain; charset=windows-1252; format=flowed Content-transfer-encoding: 7bit X-Originating-IP: [87.92.243.246] X-ClientProxiedBy: EX13-03.utu.fi (130.232.207.83) To EX13-12.utu.fi (130.232.207.92) 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, 23 May 2017 13:12:10 -0000 Hi! Thanks for the reply. I could if I had the necessary skillset :) On 05/23/2017 03:19 PM, Kurt Jaeger wrote: > Hi! > >> Might there be a possibility of having the current deskutils/recoll >> version in ports recoll-1.21.6, bumped to the current release 1.23.2? >> The new release fixes a number of serious bugs and has additional >> features. > > Do you think you can provide a patch ? Via bugs.freebsd.org ? > From owner-freebsd-ports@freebsd.org Tue May 23 13:30:52 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 30DF9D7AF89 for ; Tue, 23 May 2017 13:30:52 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (maurice.jlkmail.com [23.111.151.218]) (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 071271BB6 for ; Tue, 23 May 2017 13:30:51 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (localhost [127.0.0.1]) by maurice.jlkmail.com (Postfix) with ESMTP id 6F4DF18927CF for ; Tue, 23 May 2017 09:30:50 -0400 (EDT) Authentication-Results: maurice.jlkmail.com (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=mailman-hosting.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= mailman-hosting.com; h=content-transfer-encoding :content-language:content-type:content-type:in-reply-to :mime-version:user-agent:date:date:message-id:from:from :references:to:subject:subject; s=dkim; t=1495546245; x= 1496410246; bh=X7C8OL2h9fz6s0TAUvPz2BcGkbMj0kX0rJNfYahUpds=; b=B UGUjZS+n2Zd2vhLkotLEkpfrHWheXTdlEj715xUJnsdU1SsqPcP8EvwOWjkRRbRE LO83pXzo3BrOI1h0C1UTQNqWiTItUkNdOv5hgILVkOsgeRz6quEFJWI7TdrrGKaR L5eTeAY8yKXAHXmXiC/2yRV+jXUrDgSApHN+Z1g088= X-Virus-Scanned: Debian amavisd-new at maurice.jlkmail.com X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-9999 required=6.31 tests=[ALL_TRUSTED=-1, URIBL_BLOCKED=0.001] autolearn=unavailable autolearn_force=no Received: from maurice.jlkmail.com ([127.0.0.1]) by maurice.jlkmail.com (maurice.jlkmail.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id RgZ1bofvQjlj for ; Tue, 23 May 2017 09:30:45 -0400 (EDT) Received: from [192.168.1.153] (static-70-104-198-154.nrflva.fios.verizon.net [70.104.198.154]) by maurice.jlkmail.com (Postfix) with ESMTPSA id 7791F18927CB; Tue, 23 May 2017 09:30:44 -0400 (EDT) Subject: Re: Recoll version bump in ports To: "Michael L. Wilson" , Kurt Jaeger Cc: freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> From: Jim Ohlstein Message-ID: <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> Date: Tue, 23 May 2017 09:30:43 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US 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: Tue, 23 May 2017 13:30:52 -0000 Hello, On 05/23/2017 09:12 AM, Michael L. Wilson wrote: > Hi! > > Thanks for the reply. > > I could if I had the necessary skillset :) It doesn't look too complicated: 1. Update the Makefile with the latest version info. 2. Run 'make makesum' to update the distino file. 3. Looks like there's one minor patch which may (or may not) need tweaking. 4. Try building. 5. If it succeeds, run 'make clean' and then 'svnlite diff'. 6. Post the output from the last command to bugs.freebsd.org. > > On 05/23/2017 03:19 PM, Kurt Jaeger wrote: >> Hi! >> >>> Might there be a possibility of having the current deskutils/recoll >>> version in ports recoll-1.21.6, bumped to the current release 1.23.2? >>> The new release fixes a number of serious bugs and has additional >>> features. >> >> Do you think you can provide a patch ? Via bugs.freebsd.org ? >> -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com/ From owner-freebsd-ports@freebsd.org Tue May 23 14:08: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 C837DD7AC08 for ; Tue, 23 May 2017 14:08:44 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) Received: from fortymile.utu.fi (fortymile.utu.fi [130.232.207.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "smtp-in.utu.fi", Issuer "TERENA SSL CA 3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 52B1010EC for ; Tue, 23 May 2017 14:08:43 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; d=utu.fi; s=out-utu-v3; c=relaxed/relaxed; h=subject:to:references:cc:from:organization:message-id:date:user-agent:mime-version:in-reply-to:content-type:content-transfer-encoding:x-originating-ip:x-clientproxiedby; bh=oh92l8P4fnVW4b1D75KfZgzVz9eXCoO9Kgv1FMc90V4=; b=ZJNeqTKx5gzFdQ4oEkAsHkQ0o7T8vPQhOAKIbVphEXdyNenQSS7dMURyGn0IgKG8aB39uuFjGaKCCSu+cgrd/9KXSHDE0QUZpDuekmXc1Im9y9BHnxu188x1nOHa28mUHiUDR23EHEEatpmU+sJKcspve+fxrpnwZlV4IiMTXBuucr6F+SZFWwqf4xSPol8+3Gg/+vRIGX3K3g3Bptvm7fEEqsKlCWTqD182A9gFrgTjo5RGbr59dbUUzDQtNDlg+ZJp5WXJh6LM88OCGahPzGFDf5z/kdjTw3J656Ig99hGxwh6jCuvFrLoNwe7lKy+Ja+TvT7Ts7ceynZc5w9uuA== Received: from smtp-03.utu.fi (smtp-03.utu.fi [130.232.207.3]) by fortymile.utu.fi with ESMTP id v4NE8fhe009386-v4NE8fhf009386 for ; Tue, 23 May 2017 17:08:41 +0300 Received: from EX13-12.utu.fi ([130.232.207.126]) by smtp-03.utu.fi (Oracle Communications Messaging Server 7.0.5.29.0 64bit (built Jul 9 2013)) with ESMTPS id <0OQE003W7SMHOF80@smtp-03.utu.fi> for freebsd-ports@freebsd.org; Tue, 23 May 2017 17:08:41 +0300 (EEST) Received: from [192.168.1.28] (87.92.243.246) by EX13-12.utu.fi (130.232.207.92) with Microsoft SMTP Server (TLS) id 15.0.1263.5; Tue, 23 May 2017 17:08:40 +0300 Subject: Re: Recoll version bump in ports To: Jim Ohlstein , Kurt Jaeger References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> Cc: freebsd-ports@freebsd.org From: "Michael L. Wilson" Organization: Turun yliopisto - University of Turku Message-id: Date: Tue, 23 May 2017 17:08:40 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-version: 1.0 In-reply-to: <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> Content-type: text/plain; charset=utf-8; format=flowed Content-transfer-encoding: 7bit X-Originating-IP: [87.92.243.246] X-ClientProxiedBy: EX13-05.utu.fi (130.232.207.85) To EX13-12.utu.fi (130.232.207.92) 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, 23 May 2017 14:08:44 -0000 Hmm. Alright, I'll give this a go and report back. Mike On 05/23/2017 04:30 PM, Jim Ohlstein wrote: > Hello, > > On 05/23/2017 09:12 AM, Michael L. Wilson wrote: >> Hi! >> >> Thanks for the reply. >> >> I could if I had the necessary skillset :) > > It doesn't look too complicated: > > 1. Update the Makefile with the latest version info. > > 2. Run 'make makesum' to update the distino file. > > 3. Looks like there's one minor patch which may (or may not) need tweaking. > > 4. Try building. > > 5. If it succeeds, run 'make clean' and then 'svnlite diff'. > > 6. Post the output from the last command to bugs.freebsd.org. > >> >> On 05/23/2017 03:19 PM, Kurt Jaeger wrote: >>> Hi! >>> >>>> Might there be a possibility of having the current deskutils/recoll >>>> version in ports recoll-1.21.6, bumped to the current release 1.23.2? >>>> The new release fixes a number of serious bugs and has additional >>>> features. >>> >>> Do you think you can provide a patch ? Via bugs.freebsd.org ? >>> From owner-freebsd-ports@freebsd.org Tue May 23 14:38: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 9D0E8D7A8A0 for ; Tue, 23 May 2017 14:38:24 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) Received: from fortymile.utu.fi (fortymile.utu.fi [130.232.207.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "smtp-in.utu.fi", Issuer "TERENA SSL CA 3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 542A11823 for ; Tue, 23 May 2017 14:38:23 +0000 (UTC) (envelope-from michael.l.wilson@utu.fi) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; d=utu.fi; s=out-utu-v3; c=relaxed/relaxed; h=subject:to:references:cc:from:organization:message-id:date:user-agent:mime-version:in-reply-to:content-type:content-transfer-encoding:x-originating-ip:x-clientproxiedby; bh=wIWNj3Gf8mBzRYwLhUkRjDet+O/2fTzF1XOezhxiJ/8=; b=AEUI28MeNJjH1Qupj8YfoL9K9mtGyvgbkYgLVsPB3+i61EMGiJP/LRQIBPL5zpChMgN36Z1sxriakJjirB4H9oWVvEwwGdfsg+l/HQTlxvfCVbYADdtLj0XM7IzFSjnb0VTL4mbdLQqrBADAu7uID1awvEMtx27n7e9R7wglvQBmjMUSMgKIVjyWs7I54wuVU2GMblu1UDLmRRQTi1e5zFjBbaG/J0KiBB3F4h/mvFk3PmkhKXkrruzwbiLDCS6Nz3N4t/amQs7Al4GR9X4vdFBp7F5b30ycl0lMHVWqoU1ZmfdArOVvqX2xne8ygFIw2T9PTPV5hiw4vxf1GvRKuQ== Received: from smtp-03.utu.fi (smtp-03.utu.fi [130.232.207.3]) by fortymile.utu.fi with ESMTP id v4NEcK2h018534-v4NEcK2i018534 for ; Tue, 23 May 2017 17:38:21 +0300 Received: from EX13-12.utu.fi ([130.232.207.126]) by smtp-03.utu.fi (Oracle Communications Messaging Server 7.0.5.29.0 64bit (built Jul 9 2013)) with ESMTPS id <0OQE003U3TZWOFA0@smtp-03.utu.fi> for freebsd-ports@freebsd.org; Tue, 23 May 2017 17:38:20 +0300 (EEST) Received: from [192.168.1.28] (87.92.243.246) by EX13-12.utu.fi (130.232.207.92) with Microsoft SMTP Server (TLS) id 15.0.1263.5; Tue, 23 May 2017 17:38:19 +0300 Subject: Re: Recoll version bump in ports To: Jim Ohlstein , Kurt Jaeger References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> Cc: freebsd-ports@freebsd.org From: "Michael L. Wilson" Organization: Turun yliopisto - University of Turku Message-id: <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> Date: Tue, 23 May 2017 17:38:19 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-version: 1.0 In-reply-to: <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> Content-type: text/plain; charset=utf-8; format=flowed Content-transfer-encoding: 7bit X-Originating-IP: [87.92.243.246] X-ClientProxiedBy: EX13-07.utu.fi (130.232.207.87) To EX13-12.utu.fi (130.232.207.92) 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, 23 May 2017 14:38:24 -0000 Alright, I got as far as: make -DBATCH install clean ===> License GPLv2+ accepted by the user ===> recoll-1.23.2_1 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by recoll-1.23.2_1 for building ===> Extracting for recoll-1.23.2_1 => SHA256 Checksum OK for recoll-1.23.2.tar.gz. ===> Patching for recoll-1.23.2_1 sed: filters/rclpdf: No such file or directory *** Error code 1 Stop. make: stopped in /usr/ports/deskutils/recoll Now, I do happen to know what filters/rclpdf is and what it does. But in this case I am not sure what make is asking for or how to proceed to step. I could potentially accomplish this with some walk through. Mike On 05/23/2017 04:30 PM, Jim Ohlstein wrote: > Hello, > > On 05/23/2017 09:12 AM, Michael L. Wilson wrote: >> Hi! >> >> Thanks for the reply. >> >> I could if I had the necessary skillset :) > > It doesn't look too complicated: > > 1. Update the Makefile with the latest version info. > > 2. Run 'make makesum' to update the distino file. > > 3. Looks like there's one minor patch which may (or may not) need tweaking. > > 4. Try building. > > 5. If it succeeds, run 'make clean' and then 'svnlite diff'. > > 6. Post the output from the last command to bugs.freebsd.org. > >> >> On 05/23/2017 03:19 PM, Kurt Jaeger wrote: >>> Hi! >>> >>>> Might there be a possibility of having the current deskutils/recoll >>>> version in ports recoll-1.21.6, bumped to the current release 1.23.2? >>>> The new release fixes a number of serious bugs and has additional >>>> features. >>> >>> Do you think you can provide a patch ? Via bugs.freebsd.org ? >>> From owner-freebsd-ports@freebsd.org Tue May 23 14:54: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 0A392D7A64F for ; Tue, 23 May 2017 14:54:37 +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 90E731112 for ; Tue, 23 May 2017 14:54:36 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from host-4-75.office.adestra.com (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 B32D464FB for ; Tue, 23 May 2017 14:54:32 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/B32D464FB; dkim=none; dkim-atps=neutral Subject: Re: Recoll version bump in ports To: freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> From: Matthew Seaman Message-ID: Date: Tue, 23 May 2017 15:54:32 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="T1aELCNdDeUAuOrJjo9t3niR0hi2NpFg6" 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: Tue, 23 May 2017 14:54:37 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --T1aELCNdDeUAuOrJjo9t3niR0hi2NpFg6 Content-Type: multipart/mixed; boundary="UJd3jQpim3pIuRVKR0ov9mj3aQ1hoVS1r"; protected-headers="v1" From: Matthew Seaman To: freebsd-ports@freebsd.org Message-ID: Subject: Re: Recoll version bump in ports References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> In-Reply-To: <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> --UJd3jQpim3pIuRVKR0ov9mj3aQ1hoVS1r Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 2017/05/23 15:38, Michael L. Wilson wrote: > Now, I do happen to know what filters/rclpdf is and what it does. But i= n > this case I am not sure what make is asking for or how to proceed to > step. I could potentially accomplish this with some walk through. filters/rclpdf is a run- or build- depends of deskutils/recoll that the ports wants to install during the build process. It seem you don't have a full ports tree where you're testing your updated port. One way around this is to run 'make missing' or 'make missing-packages' from the deskutils/recoll port directory, and install any of the packages listed there. Cheers, Matthew --UJd3jQpim3pIuRVKR0ov9mj3aQ1hoVS1r-- --T1aELCNdDeUAuOrJjo9t3niR0hi2NpFg6 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 iQJ8BAEBCgBmBQJZJE0oXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTnV/sP+wfwePR/wr2uf3fgeTJO1oPd LcPBPA4LBlZQ5z/5Hb3sHkKxYWgx/b3yVdszr5u+H3gUGf24mDNpf27bQ7/720X2 p9bDMeE8rnhPOcX6R4hnlNzqzbN+u0PVzlF+XTk4xD/IY/nlWD3rm/E3YN29TFDS Kn+PrsIY0//lQ/xyaNDdUAbOSo9SY7DtWC1I96Ycn9BuwPAqZclFrs1uve8eOo2R Q9N+gNqCG2sIr71yajJDp8VbW+xuV7eevM0PAPsvb9rneSEAK6lVUZGr4SPHL4pU xio0c7uAcThW9BeFNPcBPbJmEeWp2FZD4Lpqaf+9OgybHXFLBVVpfoy1xH7J+8Ko yVXSMj7Rux+4fQrE4RqKEuySGFcX9fnsr03apEU5I/ot7Nt3VcQCeA1VMCb3oLTA NQWCgaOaVblJRZW9H5VBES1POhdKADKcYOm4jAjmCd+WcT6XjElnc4cQ2aahYOC5 aUXEHTbOIsmlUUeT4NHJzjmZiiP1shdBHNDGeoRXVz6Dr8RqXJSDtQ1G+TdP3GP+ y12jHketsuruqNt5q/Rk76++43d17eOqNqFQmJ0EvZYOqHZbpT5uUxuW0y8ydazO TcGk4+9t8sIZYNnThnTl6N8SI9mJBkeQ1rbhB1ODjs6qFp23aBqN2nzELoaAM5t4 EoisjkyYM+REdlEissD2 =jPpj -----END PGP SIGNATURE----- --T1aELCNdDeUAuOrJjo9t3niR0hi2NpFg6-- From owner-freebsd-ports@freebsd.org Tue May 23 14:55: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 EAE05D7A6D7 for ; Tue, 23 May 2017 14:55:05 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (maurice.jlkmail.com [IPv6:2604:4500:6:2a6:ec4:7aff:feb5:1bb2]) (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 AF84B1233 for ; Tue, 23 May 2017 14:55:05 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (localhost [127.0.0.1]) by maurice.jlkmail.com (Postfix) with ESMTP id 306331895C80 for ; Tue, 23 May 2017 10:55:04 -0400 (EDT) Authentication-Results: maurice.jlkmail.com (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=mailman-hosting.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= mailman-hosting.com; h=content-transfer-encoding :content-language:content-type:content-type:in-reply-to :mime-version:user-agent:date:date:message-id:from:from :references:to:subject:subject; s=dkim; t=1495551297; x= 1496415298; bh=OTy4kKaTeHX5dLYSMn6+J8acN0CBxNZ3wuCaurfMQL4=; b=F tiYCTkfGIa87TQjRyL0II3yteLLKBkyucmLJdY7yc4HBuqrPII/+uJ9YFNWZxRvv axwY432rMo6N3vnAYl5yKh4umUb0ZYI/1TPBxsVkzSP5OlOQxONow/s4J72ISs5R Rcuz5v65fj1rfbGkN2tX1jhO/y/zJkvtIegZnUpmYE= X-Virus-Scanned: Debian amavisd-new at maurice.jlkmail.com X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-9999 required=6.31 tests=[ALL_TRUSTED=-1, URIBL_BLOCKED=0.001] autolearn=unavailable autolearn_force=no Received: from maurice.jlkmail.com ([127.0.0.1]) by maurice.jlkmail.com (maurice.jlkmail.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id bM0msjB_lgli for ; Tue, 23 May 2017 10:54:57 -0400 (EDT) Received: from [192.168.1.153] (static-70-104-198-154.nrflva.fios.verizon.net [70.104.198.154]) by maurice.jlkmail.com (Postfix) with ESMTPSA id 583531895C6D; Tue, 23 May 2017 10:54:57 -0400 (EDT) Subject: Re: Recoll version bump in ports To: "Michael L. Wilson" , Kurt Jaeger Cc: freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> From: Jim Ohlstein Message-ID: Date: Tue, 23 May 2017 10:54:56 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US 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: Tue, 23 May 2017 14:55:06 -0000 Hello, On 05/23/2017 10:38 AM, Michael L. Wilson wrote: > Alright, I got as far as: > > make -DBATCH install clean > > ===> License GPLv2+ accepted by the user > ===> recoll-1.23.2_1 depends on file: /usr/local/sbin/pkg - found > ===> Fetching all distfiles required by recoll-1.23.2_1 for building > ===> Extracting for recoll-1.23.2_1 > => SHA256 Checksum OK for recoll-1.23.2.tar.gz. > ===> Patching for recoll-1.23.2_1 > sed: filters/rclpdf: No such file or directory > *** Error code 1 > > Stop. > make: stopped in /usr/ports/deskutils/recoll As Jerry Seinfeld would say, that's a shame. That isn't the file to be patched, so I'm *guessing* it's a problem that might need to be referred upstream. There's no maintainer, unfortunately... > > > Now, I do happen to know what filters/rclpdf is and what it does. But in > this case I am not sure what make is asking for or how to proceed to > step. I could potentially accomplish this with some walk through. > > Mike > > On 05/23/2017 04:30 PM, Jim Ohlstein wrote: >> Hello, >> >> On 05/23/2017 09:12 AM, Michael L. Wilson wrote: >>> Hi! >>> >>> Thanks for the reply. >>> >>> I could if I had the necessary skillset :) >> >> It doesn't look too complicated: >> >> 1. Update the Makefile with the latest version info. >> >> 2. Run 'make makesum' to update the distino file. >> >> 3. Looks like there's one minor patch which may (or may not) need >> tweaking. >> >> 4. Try building. >> >> 5. If it succeeds, run 'make clean' and then 'svnlite diff'. >> >> 6. Post the output from the last command to bugs.freebsd.org. >> >>> >>> On 05/23/2017 03:19 PM, Kurt Jaeger wrote: >>>> Hi! >>>> >>>>> Might there be a possibility of having the current deskutils/recoll >>>>> version in ports recoll-1.21.6, bumped to the current release 1.23.2? >>>>> The new release fixes a number of serious bugs and has additional >>>>> features. >>>> >>>> Do you think you can provide a patch ? Via bugs.freebsd.org ? >>>> -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com/ From owner-freebsd-ports@freebsd.org Tue May 23 14: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 D4439D7A835 for ; Tue, 23 May 2017 14:58:37 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (maurice.jlkmail.com [23.111.151.218]) (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 A994914BB for ; Tue, 23 May 2017 14:58:37 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (localhost [127.0.0.1]) by maurice.jlkmail.com (Postfix) with ESMTP id 55CDE1895EF4 for ; Tue, 23 May 2017 10:58:36 -0400 (EDT) Authentication-Results: maurice.jlkmail.com (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=mailman-hosting.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= mailman-hosting.com; h=content-transfer-encoding :content-language:content-type:content-type:in-reply-to :mime-version:user-agent:date:date:message-id:from:from :references:to:subject:subject; s=dkim; t=1495551515; x= 1496415516; bh=KVTnHxPp1jBkynsqpD6AmCgjPBFfIM7asbgbOreaVsw=; b=b yDoK8USsUE4bcMRMS4F6PyypnVW0xvi8//htvfvPZXdHcA5CgqfrM64cLPDu5f3I GI1469Un0Szan6jMQpFIiTlwA5n/ANUYKw9t9pSCMFZFTMkPJf2YnUUo5ki+s/tS NWM+vDu7EC1WnLcZyIWcZe0ZJnFNRKo0TmYU0gHg2I= X-Virus-Scanned: Debian amavisd-new at maurice.jlkmail.com X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-9999 required=6.31 tests=[ALL_TRUSTED=-1, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no Received: from maurice.jlkmail.com ([127.0.0.1]) by maurice.jlkmail.com (maurice.jlkmail.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id KH2XfzmAdNDD for ; Tue, 23 May 2017 10:58:35 -0400 (EDT) Received: from [192.168.1.153] (static-70-104-198-154.nrflva.fios.verizon.net [70.104.198.154]) by maurice.jlkmail.com (Postfix) with ESMTPSA id 147ED1895EF1; Tue, 23 May 2017 10:58:34 -0400 (EDT) Subject: Re: Recoll version bump in ports To: Matthew Seaman , freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> From: Jim Ohlstein Message-ID: Date: Tue, 23 May 2017 10:58:34 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Language: en-US 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: Tue, 23 May 2017 14:58:37 -0000 On 05/23/2017 10:54 AM, Matthew Seaman wrote: > On 2017/05/23 15:38, Michael L. Wilson wrote: >> Now, I do happen to know what filters/rclpdf is and what it does. But in >> this case I am not sure what make is asking for or how to proceed to >> step. I could potentially accomplish this with some walk through. > > filters/rclpdf is a run- or build- depends of deskutils/recoll that the > ports wants to install during the build process. It seem you don't have > a full ports tree where you're testing your updated port. > > One way around this is to run 'make missing' or 'make missing-packages' > from the deskutils/recoll port directory, and install any of the > packages listed there. > I thought that at first, but I don't have any port by that name. -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com/ From owner-freebsd-ports@freebsd.org Tue May 23 14:59:04 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 B50CBD7A87E for ; Tue, 23 May 2017 14:59:04 +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 4F489158D for ; Tue, 23 May 2017 14:59:04 +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=ayfoLeISfpPneCz3rL0PJyV1NrFM9sDXsGxuQ6UFDLY=; b=lg9xRUld/VzcNp1WPp5bBUqnCvFY7dc/qIZZXFfrjRJBb3JGpy5owJsI15hwwjaQFMlNvk9bYJzX/r+EX3EYJIt/5cqYZ1B95gXps6TIgHfh6q/bgz3auwNKqp7uKKuqI12QWB9Hqo7i49w4F49KzeWzsUnHwsrsw45ltt8oPcI=; Received: from pam.xoc.tele2net.at ([213.90.36.6]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1dDBH4-0005kg-7Y for freebsd-ports@freebsd.org; Tue, 23 May 2017 16:59:02 +0200 Received: from 194-96-161-20.adsl.highway.telekom.at ([194.96.161.20] helo=[10.0.0.93]) by pam.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1dDBH4-00064k-55 for freebsd-ports@freebsd.org; Tue, 23 May 2017 16:59:02 +0200 To: freebsd-ports@freebsd.org References: <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> Subject: Re: Recoll version bump in ports From: Walter Schwarzenfeld Message-ID: <1d4099d7-2137-e424-5505-f9266df04755@utanet.at> Date: Tue, 23 May 2017 16:58:58 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US 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: Tue, 23 May 2017 14:59:04 -0000 I had made a look in it: I have changed in the Makefile to post-patch: # @${REINPLACE_CMD} -e \ # 's|@QMAKE@|${TRUE}|' \ # ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e \ 's|/usr/local/lib|${LOCALBASE}/lib|' \ ${WRKSRC}/configure post-configure: @${REINPLACE_CMD} -e \ 's|python setup.py|${PYTHON_CMD} setup.py|; s|sudo||' \ ${WRKSRC}/python/recoll/Makefile @${REINPLACE_CMD} -e \ 's|@QMAKE@|${TRUE}|' \ ${WRKSRC}/Makefile.in but I run into another error: index/rclmonrcv.o: In function `RclFAM::RclFAM()': index/rclmonrcv.cpp:(.text+0x1ed1): undefined reference to `FAMOpen2' index/rclmonrcv.o: In function `RclFAM::~RclFAM()': index/rclmonrcv.cpp:(.text+0x20ac): undefined reference to `FAMClose' index/rclmonrcv.o: In function `RclFAM::~RclFAM()': index/rclmonrcv.cpp:(.text+0x210c): undefined reference to `FAMClose' index/rclmonrcv.o: In function `RclFAM::addWatch(std::__1::basic_string, std::__1::allocator > const&, bool)': index/rclmonrcv.cpp:(.text+0x2307): undefined reference to `FAMMonitorDirectory' index/rclmonrcv.cpp:(.text+0x2447): undefined reference to `FAMMonitorFile' index/rclmonrcv.o: In function `RclFAM::getEvent(RclMonEvent&, int)': index/rclmonrcv.cpp:(.text+0x279f): undefined reference to `FAMPending' index/rclmonrcv.cpp:(.text+0x27b6): undefined reference to `FAMNextEvent' index/rclmonrcv.cpp:(.text+0x2988): undefined reference to `FAMClose' fam.h is correct included in index/rclmonrcv.cpp but I seem don't find fam.h or it is a problem with the external variables in it. From owner-freebsd-ports@freebsd.org Tue May 23 15:07: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 50BFDD7AD68 for ; Tue, 23 May 2017 15:07:51 +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 139241D83 for ; Tue, 23 May 2017 15:07:51 +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=4GXQ6d6RgLN/GPEkTRm4/PB122q+TdhGWZJr1h+g+sE=; b=xOadiOScYrU6Ca9tK4FFZKxblKDuOlCrZnyo049EfX3uLqOsAjNJLxIJcIVCIByy5tU2Z6+pcUyVvQVze4yyRU2L6JX4YMpK4nYBdN4dz4IQJJpT0qtH3W5zhEiu+ErNl+P8Afq4c1JssUXCvus1gmJFW9VNIc0LfJEYkbLkO6I=; Received: from paris.xoc.tele2net.at ([213.90.36.7]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1dDBPY-0002pa-Qq for freebsd-ports@freebsd.org; Tue, 23 May 2017 17:07:48 +0200 Received: from 194-96-161-20.adsl.highway.telekom.at ([194.96.161.20] helo=[10.0.0.93]) by paris.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1dDBPY-0005zT-Lz for freebsd-ports@freebsd.org; Tue, 23 May 2017 17:07:48 +0200 To: freebsd-ports@freebsd.org References: <1d4099d7-2137-e424-5505-f9266df04755@utanet.at> Subject: Re: Recoll version bump in ports From: Walter Schwarzenfeld Message-ID: <02c0415e-7ea7-e910-6b53-19d13a0c945f@utanet.at> Date: Tue, 23 May 2017 17:07:45 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1d4099d7-2137-e424-5505-f9266df04755@utanet.at> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US 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: Tue, 23 May 2017 15:07:51 -0000 Forgot: But it compiles fine (with change in pkg-plist and USES) if I set X11MON to off. From owner-freebsd-ports@freebsd.org Tue May 23 15:15:11 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 A3FF8D7A114 for ; Tue, 23 May 2017 15:15:11 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.117.100]) (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 473AE15CE for ; Tue, 23 May 2017 15:15:11 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from host-4-75.office.adestra.com (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 73E9D652A; Tue, 23 May 2017 15:15:07 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/73E9D652A; dkim=none; dkim-atps=neutral Subject: Re: Recoll version bump in ports To: Jim Ohlstein , freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> From: Matthew Seaman Message-ID: Date: Tue, 23 May 2017 16:15:01 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="lIjprCDoTJlqMaXceMXcsRUd8Q8kHLHLw" 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: Tue, 23 May 2017 15:15:11 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --lIjprCDoTJlqMaXceMXcsRUd8Q8kHLHLw Content-Type: multipart/mixed; boundary="uek0b9mNVv8dvKn7h73guHHrtxcvonldf"; protected-headers="v1" From: Matthew Seaman To: Jim Ohlstein , freebsd-ports@freebsd.org Message-ID: Subject: Re: Recoll version bump in ports References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> In-Reply-To: --uek0b9mNVv8dvKn7h73guHHrtxcvonldf Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 2017/05/23 15:58, Jim Ohlstein wrote: >=20 >=20 > On 05/23/2017 10:54 AM, Matthew Seaman wrote: >> On 2017/05/23 15:38, Michael L. Wilson wrote: >>> Now, I do happen to know what filters/rclpdf is and what it does. But= in >>> this case I am not sure what make is asking for or how to proceed to >>> step. I could potentially accomplish this with some walk through. >> >> filters/rclpdf is a run- or build- depends of deskutils/recoll that th= e >> ports wants to install during the build process. It seem you don't ha= ve >> a full ports tree where you're testing your updated port. >> >> One way around this is to run 'make missing' or 'make missing-packages= ' >> from the deskutils/recoll port directory, and install any of the >> packages listed there. >> >=20 > I thought that at first, but I don't have any port by that name. >=20 True. I had that awful moment of realization that there isn't a ports category called 'filters' pretty much just as soon as I pressed 'send'. This will be a file the port expects to find under ${WRKDIR} in order to apply a SHEBANG fix to it. Looks like that file no-longer exists in the sources of the latest version of recoll, so you can just edit the SHEBANG_FILES setting in the ports Makefile to work around the problem. If that file is now auto-generated, you'll need to check that it doesn't need the same sort of fix once it has been generated. Otherwise, if the file has simply been removed from the port entirely you'll need to adjust the pkg-plist. This doesn't look like an entirely simple update: might not be such a good 'my first port' candidate... Cheers, Matthew --uek0b9mNVv8dvKn7h73guHHrtxcvonldf-- --lIjprCDoTJlqMaXceMXcsRUd8Q8kHLHLw 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 iQJ8BAEBCgBmBQJZJFH7XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQxOUYxNTRFQ0JGMTEyRTUwNTQ0RTNGMzAw MDUxM0YxMEUwQTlFNEU3AAoJEABRPxDgqeTntQUP/0jUX/kNlRtuPUf1b+pGgAPh CxkXt66Z+0ijY6FzhI2NrCgQ3x/3/GMqEuS1XgbENeM61iWh80M6NjuM7de7PGzc 111RWa3S9M69RU1UpBgIklJvjhOxM1BMrnNm4dP/nhboKtg/jR3S95p71nd4ZGjd 7URdKRTyyCuSTCbB1NyuACc/hlIl2IBNHYXLKvSVT6sq1JcmuJz5DR8tu9ySG81u /RKG+fJcrBGeiwngYZCtXVTRPiUE3ps451buogFTlRQDTmiZnzZPJcHQ/PZy2HYW UXO303uo3p+vd4nu+i0evsZcPqYFCWtW6hI9uySkOj6BpJfybH428TtWyPiI9E+8 fgJTuHtxChJzy7Ja0pxtVQte6OdsArL6yZCwwMJ32ytJAzHLvPRizxnYrZ0SmXaO oXV0wUDdP90QRe4F7JIVjUFW2HoPXSt/2SHIkmyxwhoeEenxALLTT8M+QhpXEVH6 l/19vAjiYYd7wm+VVqceDWlNG7ZH96cOQeDJE2lh1CvBv16gGgqZX//DqHWewZpy xb2MLMjQPeXNr7oQwOEB8JOp2BeSSFyssaaLu3sV/GTGSh0ZVia6c/2/Beqn5jR9 aXkMIIgcRszNqZ0V0CDZ2kVrN8+3ECv2Q5QsH+CRt8IIYNA6xqoYopvMfN/cV5dC xVe9/YAEJ+wDsrX11eZB =wd5E -----END PGP SIGNATURE----- --lIjprCDoTJlqMaXceMXcsRUd8Q8kHLHLw-- From owner-freebsd-ports@freebsd.org Tue May 23 15:27:00 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 3F990D7A519 for ; Tue, 23 May 2017 15:27:00 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (maurice.jlkmail.com [23.111.151.218]) (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 0517E1B36 for ; Tue, 23 May 2017 15:26:59 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (localhost [127.0.0.1]) by maurice.jlkmail.com (Postfix) with ESMTP id B4D071896F3B for ; Tue, 23 May 2017 11:26:58 -0400 (EDT) Authentication-Results: maurice.jlkmail.com (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=mailman-hosting.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= mailman-hosting.com; h=content-transfer-encoding :content-language:content-type:content-type:in-reply-to :mime-version:user-agent:date:date:message-id:from:from :references:to:subject:subject; s=dkim; t=1495553217; x= 1496417218; bh=3IVvXHDGmneL5RTbbRrXuU6Q/BmHx4D8OZdQZ15cF24=; b=Q EUWc4GjJ5I1ghw/nsbFhE2Gf79cYWUZjIg1jlQNiPuYMGhqI3fEOeLOMrwxZ0ip+ EvNQx+qpYVkptbaMHAduhOU0AS8u24pvoUJslMJYPANhdeHoRLnLvWYEg9t1bsZp VGaLBfn4CrbuF/XF1V34zvIEwOliNxRRCPGSVGKUF8= X-Virus-Scanned: Debian amavisd-new at maurice.jlkmail.com X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-9999 required=6.31 tests=[ALL_TRUSTED=-1, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no Received: from maurice.jlkmail.com ([127.0.0.1]) by maurice.jlkmail.com (maurice.jlkmail.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id eSTBo1mo7DoB for ; Tue, 23 May 2017 11:26:57 -0400 (EDT) Received: from [192.168.1.153] (static-70-104-198-154.nrflva.fios.verizon.net [70.104.198.154]) by maurice.jlkmail.com (Postfix) with ESMTPSA id 833771896F36; Tue, 23 May 2017 11:26:57 -0400 (EDT) Subject: Re: Recoll version bump in ports To: Matthew Seaman , freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> <20170523121916.GC4258@home.opsec.eu> <7962beff-5994-0a91-c113-5b0d10bc4426@mailman-hosting.com> <8b980bb3-babc-80a2-c3df-788e9b49b55a@utu.fi> From: Jim Ohlstein Message-ID: <80efed50-4c17-a528-3002-43345c02f2b9@mailman-hosting.com> Date: Tue, 23 May 2017 11:26:56 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Language: en-US 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: Tue, 23 May 2017 15:27:00 -0000 Hello, On 05/23/2017 11:15 AM, Matthew Seaman wrote: > On 2017/05/23 15:58, Jim Ohlstein wrote: >> >> >> On 05/23/2017 10:54 AM, Matthew Seaman wrote: >>> On 2017/05/23 15:38, Michael L. Wilson wrote: >>>> Now, I do happen to know what filters/rclpdf is and what it does. But in >>>> this case I am not sure what make is asking for or how to proceed to >>>> step. I could potentially accomplish this with some walk through. >>> >>> filters/rclpdf is a run- or build- depends of deskutils/recoll that the >>> ports wants to install during the build process. It seem you don't have >>> a full ports tree where you're testing your updated port. >>> >>> One way around this is to run 'make missing' or 'make missing-packages' >>> from the deskutils/recoll port directory, and install any of the >>> packages listed there. >>> >> >> I thought that at first, but I don't have any port by that name. >> > > True. I had that awful moment of realization that there isn't a ports > category called 'filters' pretty much just as soon as I pressed 'send'. > > This will be a file the port expects to find under ${WRKDIR} in order to > apply a SHEBANG fix to it. Looks like that file no-longer exists in the > sources of the latest version of recoll, so you can just edit the > SHEBANG_FILES setting in the ports Makefile to work around the problem. > If that file is now auto-generated, you'll need to check that it doesn't > need the same sort of fix once it has been generated. Otherwise, if the > file has simply been removed from the port entirely you'll need to > adjust the pkg-plist. > > This doesn't look like an entirely simple update: might not be such a > good 'my first port' candidate... > Mea culpa... -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com/ From owner-freebsd-ports@freebsd.org Tue May 23 16:42:12 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 F175DD7B5A7 for ; Tue, 23 May 2017 16:42:12 +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 DEA041C4A for ; Tue, 23 May 2017 16:42:12 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id DE13CD7B5A5; Tue, 23 May 2017 16:42:12 +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 DDC3AD7B5A4 for ; Tue, 23 May 2017 16:42:12 +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 D122B1C49 for ; Tue, 23 May 2017 16:42:12 +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 v4NGgC3A088780 for ; Tue, 23 May 2017 16:42:12 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4NGgCcg088779; Tue, 23 May 2017 16:42:12 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201705231642.v4NGgCcg088779@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, 23 May 2017 16:42:12 +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, 23 May 2017 16:42:13 -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 ------------------------------------------------+-----------------+------------ cad/elmerfem | 8.2.20161026 | release-8.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 May 23 20:48: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 6857CD7B6B8; Tue, 23 May 2017 20:48:38 +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 E36361184; Tue, 23 May 2017 20:48:36 +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 XAA28043; Tue, 23 May 2017 23:48:34 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1dDGjK-000EyQ-E1; Tue, 23 May 2017 23:48:34 +0300 Subject: Re: py-backports.* conflict From: Andriy Gapon To: sunpoet@FreeBSD.org, freebsd-ports@FreeBSD.org, python@FreeBSD.org Cc: Josh Paetzel References: <6ce74130-56f9-bed3-f5e5-c037c773cfc9@FreeBSD.org> Message-ID: <0fca8805-56b1-09d5-0237-ef76c0d3b47a@FreeBSD.org> Date: Tue, 23 May 2017 23:47:58 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.1.0 MIME-Version: 1.0 In-Reply-To: <6ce74130-56f9-bed3-f5e5-c037c773cfc9@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US 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: Tue, 23 May 2017 20:48:38 -0000 [ping] On 18/05/2017 15:40, Andriy Gapon wrote: > > After the update of devel/py-backports.functools_lru_cache to 1.4 it started to > conflict with devel/py-backports.shutil_get_terminal_size: > > py27-backports.functools_lru_cache-1.4 [FreeBSD] conflicts with > py27-backports.shutil_get_terminal_size-1.0.0 [installed] on > /usr/local/lib/python2.7/site-packages/backports/__init__.py > > It would be very inconvenient if only a single of py-backports.* ports could be > installed at a time. > > Is it possible to fix the problem? > -- Andriy Gapon From owner-freebsd-ports@freebsd.org Wed May 24 00:13:35 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 9568BD7ABB6; Wed, 24 May 2017 00:13:35 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [192.108.105.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "StartCom Class 2 IV Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 78E611EB7; Wed, 24 May 2017 00:13:35 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (bones.soaustin.net [192.108.105.22]) by mail.soaustin.net (Postfix) with ESMTPSA id 204642679; Tue, 23 May 2017 19:13:34 -0500 (CDT) Date: Tue, 23 May 2017 19:13:33 -0500 From: Mark Linimon To: freebsd-ports@FreeBSD.org, freebsd-current@FreeBSD.org Cc: linimon@FreeBSD.org Subject: ports recently marked broken on -current Message-ID: <20170524001332.GA8306@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) 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, 24 May 2017 00:13:35 -0000 So during my pass over recent powerpc64 package errorlogs, I found a few ports that were actually broken across all archs on -current, and made those commits. I may not have enough cycles to investigate all these down by myself, so I'm asking for help. Does anyone recognize any of these failure modes, and if so, can recommend a fix? I've grouped them together based on my analysis, which may not be correct. Note: error messages from gcc and clang are intermixed. Thanks. mcl benchmarks/dbs tcp_debug.h: field has incomplete type 'struct tcpcb' security/revealrk revealrk.c: 'struct xtcpcb' has no member named 'xt_socket' security/pidentd k_freebsd2.c: storage size of 'pcbp' isn't known japanese/nethack34 stdlib.h: conflicting types for 'srandom' net-mgmt/netdata freebsd_sysctl.c: storage size of 'vmmeter_data' isn't known sysutils/asmem read_mem.c: invalid use of undefined type 'struct vmmeter' net/lft lft_types.h: pcap-int.h: No such file or directory security/dsniff pcaputil.c: '/usr/include/pcap-int.h' file not found sysutils/pftop sf-gencode.h: pcap-int.h: No such file or directory sysutils/scprotect scprotect.c: 'sysctl__' undeclared (first use in this function) www/cherokee unable to detect data struct is used by crypt_r From owner-freebsd-ports@freebsd.org Wed May 24 03:28:46 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 531E4D7B481; Wed, 24 May 2017 03:28:46 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pg0-x242.google.com (mail-pg0-x242.google.com [IPv6:2607:f8b0:400e:c05::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 1B640126A; Wed, 24 May 2017 03:28:46 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by mail-pg0-x242.google.com with SMTP id h64so15456208pge.3; Tue, 23 May 2017 20:28:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:reply-to:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=1kaoy+MfjG2Yr1gXg4cR7ZrBP4xvtWlHQM1RtDofxTc=; b=KprymEIdG/7fLMKA7tf560RQ+zRbK8qTn0ayY4IMlyg+Nyrfg4zzxTncqlApmt+PGy oNJ7pbGA680IuG2iGfRPClPcY8Csw86Q5fDoH0mNUUz3JnO9HkuOqpLM450gtO4ojdar Uhzt2R2A48/j89BhM7ed6s2Tas3b9agqf8SAR6AVc2NHjjkIjTUf5nL2Vh2oPfYYiBqT 1s4pw/+fddYpbeO/wmeZofAr6/0bYWpcY/8aDr3PVrOmuWbmJdDNaqjeuPydEuf+2m9e tRyFdUo1wuxqikzMvMPd7ePxr29kLAz8eP5NSvSwV3Le6CcU/+UWKs+7KOLv0805ApbO 3WHQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:reply-to:subject:to:cc:references:from :message-id:date:user-agent:mime-version:in-reply-to :content-language:content-transfer-encoding; bh=1kaoy+MfjG2Yr1gXg4cR7ZrBP4xvtWlHQM1RtDofxTc=; b=PLUXBg/P0Cxlt5F3n9W55jXcNac9wpP67Ufw3A3Ie6lJEFmqOGdykYPb5EW0rQK117 yNmYharfsEusKCS12JO25uMtRj+CAD+5+dQOI59R+ZDF3YoxMx7G2D6TX5k9ZnBmwAxa ULUsSy5G+uvZUri544WjBqwYwS0R1KLN8++R/f+y8S/7i4fKL411g7Ns43R1BrAC4mCK abOXEdSJsxuH69OXTvO1NpvFSgf6C5CjWuVPrNztXlljqH0LD8O1Jrr64VS+gFGIT8kL sQfqWkfNxJe2LrxOrAYaKseX8ScCSmdJF+pRaWXIoeaGd5RUnS2W+F0kzNEfXbIVemdx 0New== X-Gm-Message-State: AODbwcB9Vel2/hyAh1s4ym7IuCn1QXFS+gMlENYl7GxbLlNxfSOFKbT7 QRqOgURngO+RO4z02iY= X-Received: by 10.98.159.135 with SMTP id v7mr35475518pfk.57.1495596525436; Tue, 23 May 2017 20:28:45 -0700 (PDT) Received: from ?IPv6:2001:44b8:31ae:7b01:2042:3e8:d7ce:9b9c? (2001-44b8-31ae-7b01-2042-03e8-d7ce-9b9c.static.ipv6.internode.on.net. [2001:44b8:31ae:7b01:2042:3e8:d7ce:9b9c]) by smtp.gmail.com with ESMTPSA id u9sm3820602pgn.55.2017.05.23.20.28.43 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 23 May 2017 20:28:45 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: py-backports.* conflict To: Andriy Gapon , sunpoet@FreeBSD.org, freebsd-ports@FreeBSD.org, Josh Paetzel Cc: python@FreeBSD.org References: <6ce74130-56f9-bed3-f5e5-c037c773cfc9@FreeBSD.org> <0fca8805-56b1-09d5-0237-ef76c0d3b47a@FreeBSD.org> From: Kubilay Kocak Message-ID: <0b8a6abb-7aa4-e3fb-adeb-30aa66743bc6@FreeBSD.org> Date: Wed, 24 May 2017 13:24:19 +1000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Thunderbird/54.0a2 MIME-Version: 1.0 In-Reply-To: <0fca8805-56b1-09d5-0237-ef76c0d3b47a@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-AU 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, 24 May 2017 03:28:46 -0000 On 5/24/17 6:47 AM, Andriy Gapon wrote: > > [ping] > > On 18/05/2017 15:40, Andriy Gapon wrote: >> >> After the update of devel/py-backports.functools_lru_cache to 1.4 it started to >> conflict with devel/py-backports.shutil_get_terminal_size: >> >> py27-backports.functools_lru_cache-1.4 [FreeBSD] conflicts with >> py27-backports.shutil_get_terminal_size-1.0.0 [installed] on >> /usr/local/lib/python2.7/site-packages/backports/__init__.py >> >> It would be very inconvenient if only a single of py-backports.* ports could be >> installed at a time. >> >> Is it possible to fix the problem? >> > > These appear to be namespaced packages and all else being equal (bugs or other causes aside), the only way I can think of is to have a py-backports port, with subpackages for each py-backports.*, with py-backports owning the __init__.py (and other shared files, if any) and each sub-module (package) depending on py-backports for the shared bits. Having said that it could also be (at least partially) related to namespace package fixes that are in an unreleased version of shutil_get_terminal_size: https://github.com/chrippa/backports.shutil_get_terminal_size/pull/10 See Also: https://bbs.archlinux.org/viewtopic.php?id=226193 https://github.com/garbas/pypi2nix/issues/80 From owner-freebsd-ports@freebsd.org Wed May 24 11:47: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 62897D7B5C7 for ; Wed, 24 May 2017 11:47:32 +0000 (UTC) (envelope-from bsdports@cloudzeeland.nl) Received: from ares.cloudzeeland.nl (cloudzeeland.xs4all.nl [83.161.133.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cloudzeeland.nl", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 258A010F7 for ; Wed, 24 May 2017 11:47:30 +0000 (UTC) (envelope-from bsdports@cloudzeeland.nl) Received: from ares.cloudzeeland.nl (unknown [10.10.10.32]) by ares.cloudzeeland.nl (Postfix) with ESMTP id E911A4FAD463; Wed, 24 May 2017 13:44:14 +0200 (CEST) Received: from [10.10.10.34] (styx.zeeland24.nl [82.176.127.71]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by ares.cloudzeeland.nl (Postfix) with ESMTPSA id A4BF94FAD19E; Wed, 24 May 2017 13:44:14 +0200 (CEST) Subject: Re: Keeping VuXML DB updated To: Kurt Jaeger References: <20170506093213.GE87900@home.opsec.eu> Cc: FreeBSD Ports ML From: Jos Chrispijn Message-ID: Date: Wed, 24 May 2017 13:44:14 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170506093213.GE87900@home.opsec.eu> X-Virus-Scanned: ClamAV using ClamSMTP on ares.cloudzeeland.nl 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, 24 May 2017 11:47:32 -0000 Op 6-5-2017 om 11:32 schreef Kurt Jaeger: > Due to a vulnerability issue earlier with a port, I received some kind >> emails of using the command below to update the VuXML DB (which is not a >> part of the ports tree). >> >> I did so on my server and got the following output: >> >> --- cut --- >> >> > pkg audit -F >> vulnxml file up-to-date >> tiff-4.0.7_1 is vulnerable: >> tiff -- multiple vulnerabilities >> CVE: CVE-2017-7602 > TIFF port issue solved - they released an update yesterday. Thanks guys! Jos Chrispijn From owner-freebsd-ports@freebsd.org Wed May 24 13:27:08 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 50E3CD7BB76 for ; Wed, 24 May 2017 13:27:08 +0000 (UTC) (envelope-from otacilio.neto@bsd.com.br) Received: from mail-qk0-x22e.google.com (mail-qk0-x22e.google.com [IPv6:2607:f8b0:400d:c09::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 15D4F155A for ; Wed, 24 May 2017 13:27:07 +0000 (UTC) (envelope-from otacilio.neto@bsd.com.br) Received: by mail-qk0-x22e.google.com with SMTP id u75so153073765qka.3 for ; Wed, 24 May 2017 06:27:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsd.com.br; s=capeta; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=oHI+AL/kmuNi4KGmWZAS1jMubErbu1WZAsXylck4Ir4=; b=LI9BztMHuUHBpbg7EIXyKXxzyEurU93NsGibD16wGkA3tFkxvoVw04mhsnN2vXei0Q 8rwnzboTEzw38T717NdHlDWp/ACzorEKWU+rwkdte7sMyUtCAC1oBsfbi8pIvWnFG5cO m8k8niQn3fw5WMSuk2LrYCf84CNj/rAhCu3HI= 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:content-transfer-encoding; bh=oHI+AL/kmuNi4KGmWZAS1jMubErbu1WZAsXylck4Ir4=; b=ILZ8lhI+rxDF2DLVPd3LO7x47fu3yvfpwT98hs+qH9REQS569OHNLVzE2DqFB3n4gk UJhUuG9BG6b1q4mbBcEv48JXCKa6YbQG6xzEWorMCPN7UQBEyRMiOjZ2gkhDS2jTLEEF kmPvRvFNVVATG35kAhQaTexd6/i1C+dvtIMwb+NTfaqdy7HaJoW4jCs8f/ZUrEbACwZC ocZ2qlNykgBYH9IGnp133KROUuIQG2KR4auqsCQ1u+5i73wmU9VL3X0elQfAwNQZmRhi sUqlS+GNk0e0Tk1YaJax/cDgVfP+AbBYg4UxjSz42EXxn+OWNNjUAslmJ1vSoYz9qp6S YDEQ== X-Gm-Message-State: AODbwcDrY9O1BtvhkJEIY7FWds2JCKQ41UwOBdTQA9Omep7gB/RyGonL B7kth8VntJpQxP32pIg= X-Received: by 10.55.89.4 with SMTP id n4mr30530253qkb.194.1495632426235; Wed, 24 May 2017 06:27:06 -0700 (PDT) Received: from [10.51.223.139] ([177.20.152.129]) by smtp.googlemail.com with ESMTPSA id u84sm2514036qki.2.2017.05.24.06.27.03 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 May 2017 06:27:04 -0700 (PDT) Subject: Re: ports recently marked broken on -current To: freebsd-ports@freebsd.org References: <20170524001332.GA8306@lonesome.com> From: =?UTF-8?B?T3RhY8OtbGlv?= Message-ID: <0462dc56-4119-a98e-9ba4-7dbad850dfd9@bsd.com.br> Date: Wed, 24 May 2017 10:26:56 -0300 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170524001332.GA8306@lonesome.com> 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, 24 May 2017 13:27:08 -0000 Em 23/05/2017 21:13, Mark Linimon escreveu: > So during my pass over recent powerpc64 package errorlogs, I found > a few ports that were actually broken across all archs on -current, > and made those commits. > > I may not have enough cycles to investigate all these down by myself, > so I'm asking for help. Does anyone recognize any of these failure > modes, and if so, can recommend a fix? > > I've grouped them together based on my analysis, which may not be > correct. Note: error messages from gcc and clang are intermixed. > > Thanks. > > mcl > > benchmarks/dbs tcp_debug.h: field has incomplete type 'struct tcpcb' > security/revealrk revealrk.c: 'struct xtcpcb' has no member named 'xt_socket' > security/pidentd k_freebsd2.c: storage size of 'pcbp' isn't known > > japanese/nethack34 stdlib.h: conflicting types for 'srandom' > > net-mgmt/netdata freebsd_sysctl.c: storage size of 'vmmeter_data' isn't known > sysutils/asmem read_mem.c: invalid use of undefined type 'struct vmmeter' > > net/lft lft_types.h: pcap-int.h: No such file or directory > security/dsniff pcaputil.c: '/usr/include/pcap-int.h' file not found > sysutils/pftop sf-gencode.h: pcap-int.h: No such file or directory > > sysutils/scprotect scprotect.c: 'sysctl__' undeclared (first use in this function) > > www/cherokee unable to detect data struct is used by crypt_r > _______________________________________________ Hi Mark. I'm the maintainer of sysutils/xosview and I'm facing a problem with this struct vmmeter on HEAD also. Apparently, the last modifications on HEAD broke all ports that needs it. For now, xosview is not compiling on HEAD because of this, so probably in this weekend I will investigate and reports here. []'s -Otacilio From owner-freebsd-ports@freebsd.org Wed May 24 15:29: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 E1A4BD7AE8C for ; Wed, 24 May 2017 15:29:21 +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 CC41C1E82 for ; Wed, 24 May 2017 15:29:21 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dDYCv-0007ir-T6 for freebsd-ports@freebsd.org; Wed, 24 May 2017 09:28:17 -0600 Date: Wed, 24 May 2017 09:28:17 -0600 From: The Doctor To: freebsd-ports@freebsd.org Subject: [tss@iki.fi: v2.2.30 release candidate released] Message-ID: <20170524152817.GA29267@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.8.2 (2017-04-18) 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, 24 May 2017 15:29:22 -0000 Potential new dovecot coming out. How can we assist? ----- Forwarded message from Timo Sirainen ----- Date: Wed, 24 May 2017 17:59:40 +0300 From: Timo Sirainen To: dovecot-news@dovecot.org, Dovecot Mailing List Subject: v2.2.30 release candidate released X-Mailer: Apple Mail (2.3273) https://dovecot.org/releases/2.2/rc/dovecot-2.2.30.rc1.tar.gz https://dovecot.org/releases/2.2/rc/dovecot-2.2.30.rc1.tar.gz.sig There are a couple of changes still coming, but now would be a good time to make sure anything unexpected hasn't broken. The final release should be out early next week. * auth: Use timing safe comparisons for everything related to passwords. It's unlikely that these could have been used for practical attacks, especially because Dovecot delays and flushes all failed authentications in 2 second intervals. Also it could have worked only when passwords were stored in plaintext in the passdb. * master process sends SIGQUIT to all running children at shutdown, which instructs them to close all the socket listeners immediately. This way restarting Dovecot should no longer fail due to some processes keeping the listeners open for a long time. + auth: Add passdb { mechanisms=none } to match separate passdb lookup + auth: Add passdb { username_filter } to use passdb only if user matches the filter. See https://wiki2.dovecot.org/PasswordDatabase + dsync: Add dsync_commit_msgs_interval setting. It attempts to commit the transaction after saving this many new messages. Because of the way dsync works, it may not always be possible if mails are copied or UIDs need to change. + imapc: Support imapc_features=search without ESEARCH extension. + imapc: Add imapc_features=fetch-bodystructure to pass through remote server's FETCH BODY and BODYSTRUCTURE. + imapc: Add quota=imapc backend to use GETQUOTA/GETQUOTAROOT on the remote server. + passdb imap: Add allow_invalid_cert and ssl_ca_file parameters. + If dovecot.index.cache corruption is detected, reset only the one corrupted mail instead of the whole file. + doveadm mailbox status: Add "firstsaved" field. + director_flush_socket: Add old host's up/down and vhost count as parameters - More fixes to automatically fix corruption in dovecot.list.index - dsync-server: Fix support for dsync_features=empty-header-workaround - imapc: Various bugfixes, including infinite loops on some errors - fts-lucene: Fix it to work again with mbox format - vpopmail: Fix compiling ----- End forwarded message ----- -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising! https://www.empire.kred/ROOTNK?t=94a1f39b Look at Psalms 14 and 53 on Atheism UK Stop Theresa MAy MT V2 and Impotent Corbyn, Vote Farron and LDEm!! From owner-freebsd-ports@freebsd.org Wed May 24 16:37: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 6039BD7CC3B for ; Wed, 24 May 2017 16:37:21 +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 4D5A41C20 for ; Wed, 24 May 2017 16:37:21 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4CBC0D7CC38; Wed, 24 May 2017 16:37:21 +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 4AA44D7CC37 for ; Wed, 24 May 2017 16:37:21 +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 3DF0B1C1F for ; Wed, 24 May 2017 16:37:21 +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 v4OGbLIR066523 for ; Wed, 24 May 2017 16:37:21 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4OGbLib066521; Wed, 24 May 2017 16:37:21 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201705241637.v4OGbLib066521@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, 24 May 2017 16:37:21 +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, 24 May 2017 16:37:21 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ benchmarks/sysbench | 0.5 | 1.0.7 ------------------------------------------------+-----------------+------------ multimedia/lives | 2.8.4 | 2.8.6 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Wed May 24 17:16: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 E7667D7CD34 for ; Wed, 24 May 2017 17:16:21 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from apnoea.adamw.org (apnoea.adamw.org [104.225.5.94]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "apnoea.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B47DD18D3 for ; Wed, 24 May 2017 17:16:20 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by apnoea.adamw.org (OpenSMTPD) with ESMTPSA id 7027b67d TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Wed, 24 May 2017 11:16:18 -0600 (MDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: [tss@iki.fi: v2.2.30 release candidate released] From: Adam Weinberger In-Reply-To: <20170524152817.GA29267@doctor.nl2k.ab.ca> Date: Wed, 24 May 2017 11:16:15 -0600 Cc: freebsd-ports@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <1E95D558-9F91-4CAD-8F4C-5FEE4B1CFB04@adamw.org> References: <20170524152817.GA29267@doctor.nl2k.ab.ca> To: The Doctor X-Mailer: Apple Mail (2.3273) 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, 24 May 2017 17:16:22 -0000 Hi, The Doctor, Please by all means, test it out, and let us know if you run into any = problems with it. That's a huge help! # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org > On 24 May, 2017, at 9:28, The Doctor wrote: >=20 > Potential new dovecot coming out. >=20 > How can we assist? >=20 >=20 > ----- Forwarded message from Timo Sirainen ----- >=20 > Date: Wed, 24 May 2017 17:59:40 +0300 > From: Timo Sirainen > To: dovecot-news@dovecot.org, Dovecot Mailing List = > Subject: v2.2.30 release candidate released > X-Mailer: Apple Mail (2.3273) >=20 > https://dovecot.org/releases/2.2/rc/dovecot-2.2.30.rc1.tar.gz > https://dovecot.org/releases/2.2/rc/dovecot-2.2.30.rc1.tar.gz.sig=20 >=20 > There are a couple of changes still coming, but now would be a good = time to make sure anything unexpected hasn't broken. The final release = should be out early next week. >=20 > * auth: Use timing safe comparisons for everything related to > passwords. It's unlikely that these could have been used for > practical attacks, especially because Dovecot delays and flushes all > failed authentications in 2 second intervals. Also it could have > worked only when passwords were stored in plaintext in the passdb. > * master process sends SIGQUIT to all running children at shutdown, > which instructs them to close all the socket listeners immediately. > This way restarting Dovecot should no longer fail due to some > processes keeping the listeners open for a long time. >=20 > + auth: Add passdb { mechanisms=3Dnone } to match separate passdb = lookup > + auth: Add passdb { username_filter } to use passdb only if user > matches the filter. See https://wiki2.dovecot.org/PasswordDatabase > + dsync: Add dsync_commit_msgs_interval setting. It attempts to commit > the transaction after saving this many new messages. Because of the > way dsync works, it may not always be possible if mails are copied > or UIDs need to change. > + imapc: Support imapc_features=3Dsearch without ESEARCH extension. > + imapc: Add imapc_features=3Dfetch-bodystructure to pass through = remote > server's FETCH BODY and BODYSTRUCTURE. > + imapc: Add quota=3Dimapc backend to use GETQUOTA/GETQUOTAROOT on the > remote server. > + passdb imap: Add allow_invalid_cert and ssl_ca_file parameters. > + If dovecot.index.cache corruption is detected, reset only the one > corrupted mail instead of the whole file. > + doveadm mailbox status: Add "firstsaved" field. > + director_flush_socket: Add old host's up/down and vhost count as = parameters > - More fixes to automatically fix corruption in dovecot.list.index > - dsync-server: Fix support for dsync_features=3Dempty-header-workaround= > - imapc: Various bugfixes, including infinite loops on some errors > - fts-lucene: Fix it to work again with mbox format > - vpopmail: Fix compiling >=20 > ----- End forwarded message ----- >=20 > --=20 > Member - Liberal International This is doctor@@nl2k.ab.ca Ici = doctor@@nl2k.ab.ca > Yahweh, Queen & country!Never Satan President Republic!Beware = AntiChrist rising! > https://www.empire.kred/ROOTNK?t=3D94a1f39b Look at Psalms 14 and 53 = on Atheism > UK Stop Theresa MAy MT V2 and Impotent Corbyn, Vote Farron and LDEm!! > _______________________________________________ > 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 May 24 18:44: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 9CA63D7C334 for ; Wed, 24 May 2017 18:44:37 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: from relay.waschbuesch.it (relay.waschbuesch.it [IPv6:2a00:cba0:0:100::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.waschbuesch.it", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 532541FF4 for ; Wed, 24 May 2017 18:44:37 +0000 (UTC) (envelope-from martin@waschbuesch.de) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=waschbuesch.de; s=dkim; h=To:Date:Message-Id:Subject:Mime-Version: Content-Transfer-Encoding:Content-Type:From: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=5Aadk+VmMTI/JjIBiTzZimuK9/jEW0XE52TltAXiI8U=; b=JwTftznXNAorm8EoCt0AYzGyd1 1vGSe8AkrdyyOJzgfWcj+OBwEToDWR4wawupt8uFSIjVu0T35wPT2WzmdXlrArQ3BtrB2yBXQjML4 VvMNG7CDwDPjxE10tO639DIX6wUZF7RM3FlT0j+UV6csCew2822mjNp9rX1kDU/g/W4w=; Received: by relay.waschbuesch.it with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim) (envelope-from ) id 1dDbGr-000LiE-50 for freebsd-ports@freebsd.org; Wed, 24 May 2017 18:44:33 +0000 From: =?utf-8?Q?Martin_Waschb=C3=BCsch?= Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: PR 213270 is overcome by events. Message-Id: <4FEB8465-980B-4232-A596-2B19C704ABAE@waschbuesch.de> Date: Wed, 24 May 2017 20:44:42 +0200 To: freebsd-ports@freebsd.org X-Mailer: Apple Mail (2.3273) 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, 24 May 2017 18:44:37 -0000 The version in ports is currently 3.2.8. From owner-freebsd-ports@freebsd.org Wed May 24 19: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 BB138D7C2A4 for ; Wed, 24 May 2017 19:34:10 +0000 (UTC) (envelope-from leona.garcia@ameriummail.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 9856B1DB7 for ; Wed, 24 May 2017 19:34:10 +0000 (UTC) (envelope-from leona.garcia@ameriummail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 97A6CD7C2A3; Wed, 24 May 2017 19: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 97429D7C2A2 for ; Wed, 24 May 2017 19:34:10 +0000 (UTC) (envelope-from leona.garcia@ameriummail.com) Received: from mail-pf0-x232.google.com (mail-pf0-x232.google.com [IPv6:2607:f8b0:400e:c00::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 700931DB6 for ; Wed, 24 May 2017 19:34:10 +0000 (UTC) (envelope-from leona.garcia@ameriummail.com) Received: by mail-pf0-x232.google.com with SMTP id 9so144746845pfj.1 for ; Wed, 24 May 2017 12:34:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ameriummail-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:mime-version:content-language :thread-index; bh=H4gH+YJYv6yhfs0hy3FUT48giXAqkaWBygFhjHOimBI=; b=HZRx4YUAapwAc8nAW0V/FYwpIe/BRCG7URqHFhWRDjl0Oip3ZPTkuet7RavCMVboQe eNZTbhTPAEoL23vW1kemkrrWD7gDDqQRxwN/KfHuyqvqS3kholzwAfvxqocp+yNQeDjh sNkMAzA4SAVBTFQa9js7GNnABJctwgF2GNR7cVaEnZHk+uKxRPKgEq3zJ0QR3fIOBY7r jDLk21hc1a3b9Bg6ZUqcjjHMo4UUY2uhOm84meFuCHpkyzmYfqxWmwQidET7oDnprrUV CNNh+dWrb3GBacII5zNBX6kI55lOg5TyxL52jDWAVWEuVFyi5JIf0H1i0O4cdM1R/h8v dUBA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-language:thread-index; bh=H4gH+YJYv6yhfs0hy3FUT48giXAqkaWBygFhjHOimBI=; b=q5pkk7sDNC571fcsKkA2kAaU1XSaMCNWudPnaHoNbeYmqUl+v5Rroaz/yucLkZj34c 22kMRdJP90MjnN3OoeJNTPxF/trCqYDrXF2XPStpCNCY8MQzSczC5CoW8+nRfkVpBoQL qubtzc3EpS7ZMs7N/z0TKZRjFMdpNybqvYcet4nDRbz2QxVbYYJsHoVe+tKeFESmWrUJ DDbXYDao2dcJTVb2HaCPR2hMRLW75vTL2CoPHdP35E5ws3IBALnHytOenHGG8S/EZUb7 Pih8Hpql05lXpeXF0NmzYa1t2YBDReRLa5QEVwXRn+BqWXzrga/75NWHM38u816k+Esj BdrA== X-Gm-Message-State: AODbwcAeVpexc875OJUY13Q2msLfUf2eNJoNHuCNvee9zqRXVc3kcm8D rcnRmsRBIt9CKaaCNKU= X-Received: by 10.99.5.3 with SMTP id 3mr39949916pgf.104.1495654449233; Wed, 24 May 2017 12:34:09 -0700 (PDT) Received: from MohammedFazal ([49.207.49.96]) by smtp.gmail.com with ESMTPSA id q20sm2535080pfa.58.2017.05.24.12.34.06 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 24 May 2017 12:34:07 -0700 (PDT) From: "leona garcia" To: Subject: SEO Services Users Date: Wed, 24 May 2017 12:32:39 -0700 Message-ID: <51fc01d2d4c4$b597aae0$20c700a0$@ameriummail.com> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 15.0 Content-Language: en-us Thread-Index: AdLUw8dE0X6+FH97TrWolg4GsOog8w== 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: Wed, 24 May 2017 19:34:10 -0000 Hi, Would you be interested in SEO Services Users list for your sales and Daily campaigns? We can provide you Database from North America, Latin America, EMEA, and APAC. Information Fields - Name, Title, Email, Phone Numbers, Company Name, and Company Details like Physical Address, Web Address, Revenue Size, Employee Size and industry. We also have companies using:- * Microsoft * Quest * Qad * Oracle * SAP * Synopsys * Fortinet * SunMicrosystem * Salesforce and many more. Please review and let me know if you need more information. We can also provide other application users as well from across the globe. Await your response! Thanks, Leona Garcia To remove please reply with "Opt-Out" in the subject line. From owner-freebsd-ports@freebsd.org Wed May 24 21:42: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 C7EDBD800D1 for ; Wed, 24 May 2017 21:42:58 +0000 (UTC) (envelope-from lacey.leanne@gmail.com) Received: from mail-pf0-x229.google.com (mail-pf0-x229.google.com [IPv6:2607:f8b0:400e:c00::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86355152F for ; Wed, 24 May 2017 21:42:58 +0000 (UTC) (envelope-from lacey.leanne@gmail.com) Received: by mail-pf0-x229.google.com with SMTP id 9so147376475pfj.1 for ; Wed, 24 May 2017 14:42:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=to:from:subject:message-id:date:user-agent:mime-version :content-transfer-encoding; bh=kGp3JbYp98RL5fLxD/vxfpuj9QBKOt1qacFnn8dbpng=; b=PYcGwstFEEUS7g6AiyzyW0lKOaSqB/3wzfVD4gBbKV0e/gT9i1xwAZINHKGFuc/c3m yxu6c/zY5X32BBKb08apJDrFAfNTXrDXapnm0Sd2MwaOCWMgq6WIcy3K3VBx6ATAcyqv H8xa/+6ZwpGgdxm9mvVV7vCII1wd0lj8EslkpsFsx6iUgtj5dPw+QxTvUu36xHjaVhnf P6T/rHzntv8OxPMw8XrwJM9RSxyVBAoEAOqIVTSdgeupnlE3sglwJZ6n5EIPRIoiEVDl V25FHYoJ+1gUkFSAMGtVZkIIkrcm/oX5Oy0fGdo9Qy0s3ILD38knc8JB2IyA0/zLQnO9 Gesg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-transfer-encoding; bh=kGp3JbYp98RL5fLxD/vxfpuj9QBKOt1qacFnn8dbpng=; b=or+L7Wr9uCZK6EkIhcdjBSpKVvZOuF3AhrFsWHG7vgRMiC9UmqhHSeaORl78xyaFi/ O7PizCn3Y6mRX1U1i8dDwepzy3OywFQM1Dkwu9/mdjCP/8ecW3QzhVNfiK9d6+GGjeFj C+fuEmBtE/RfzINk5Lvhtvayh1qK1Wt3l9ANQg7Al3DentGLv5igg/7jkdbLhOD5MeUc fXxPSZiA4K/fNLGkQyMwlzZpc1j/EbCc0sdXIGqVYAJxC8Z8Kx3XvOetG7jGZF3QByRQ gMAwjsMDzEJ4PZJgJdo4nZRrUK6axdQp4V5YpkPc4Fe/If9osETCGn3nJ0VJA+ZAmkZU Obxw== X-Gm-Message-State: AODbwcAmY0nvPmhFnov3LHOffpXuSk3iYyXeNn//S5RS6zh/kG9p6MP9 DT8pLQ1K6TisqvS8QhE= X-Received: by 10.98.43.206 with SMTP id r197mr40081924pfr.202.1495662177850; Wed, 24 May 2017 14:42:57 -0700 (PDT) Received: from [192.168.0.197] ([162.247.40.130]) by smtp.gmail.com with ESMTPSA id z3sm9636891pfk.99.2017.05.24.14.42.56 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 May 2017 14:42:56 -0700 (PDT) To: freebsd-ports@freebsd.org From: Lacey Powers Subject: PostgreSQL Updates in 2017Q2? Message-ID: Date: Wed, 24 May 2017 14:42:55 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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, 24 May 2017 21:42:58 -0000 Hello everyone, I noticed that ports head has had security updates for PostgreSQL 9.2 to 9.6 since 11 May, but these haven't been merged into the 2017Q2 branch.The last batch of updates in February arrived into 2017Q2 the same day as the official release, but it's been nearly 2 weeks since this last update and they still seem to be missing from 2017Q2. Would it be possible to get these merged from head into the 2017Q2 branch? https://svnweb.freebsd.org/ports?view=revision&revision=440628 Thank you for your time. Best, Lacey From owner-freebsd-ports@freebsd.org Thu May 25 03:04: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 E5889D8074F for ; Thu, 25 May 2017 03:04:14 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D435611F0 for ; Thu, 25 May 2017 03:04:14 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id D38BBD8074E; Thu, 25 May 2017 03:04: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 D32CED8074C for ; Thu, 25 May 2017 03:04:14 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B9BC811EF for ; Thu, 25 May 2017 03:04:14 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org ([127.0.1.2]) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v4P34E1S077111 for ; Thu, 25 May 2017 03:04:14 GMT (envelope-from indexbuild@portsindexbuild.ysv.freebsd.org) Received: (from indexbuild@localhost) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4P34E1i077110 for ports@FreeBSD.org; Thu, 25 May 2017 03:04:14 GMT (envelope-from indexbuild) Date: Thu, 25 May 2017 03:04:14 GMT From: Ports Index build Message-Id: <201705250304.v4P34E1i077110@portsindexbuild.ysv.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 10.x 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, 25 May 2017 03:04:15 -0000 INDEX build failed with errors: Generating INDEX-10 - please wait..--- describe.accessibility --- --- describe.arabic --- --- describe.archivers --- --- describe.astro --- --- describe.audio --- --- describe.benchmarks --- --- describe.biology --- --- describe.cad --- --- describe.chinese --- --- describe.comms --- --- describe.converters --- --- describe.databases --- --- describe.deskutils --- --- describe.devel --- --- describe.dns --- --- describe.editors --- --- describe.emulators --- --- describe.finance --- --- describe.french --- --- describe.ftp --- [...] --- describe.print --- --- describe.russian --- --- describe.science --- --- describe.security --- --- describe.shells --- --- describe.sysutils --- --- describe.textproc --- --- describe.ukrainian --- --- describe.vietnamese --- --- describe.www --- --- describe.x11 --- --- describe.x11-clocks --- --- describe.x11-drivers --- --- describe.x11-fm --- --- describe.x11-fonts --- --- describe.x11-servers --- --- describe.x11-themes --- --- describe.x11-toolkits --- --- describe.x11-wm --- Done. make_index: /home/indexbuild/tindex/ports/www/rubygem-rails50: no entry for /home/indexbuild/tindex/ports/devel/rubygem-spring-rails50 Committers on the hook: jmd jrm Most recent SVN update was: Updating '.': U www/Makefile A www/rubygem-turbolinks-rails50 A www/rubygem-turbolinks-rails50/Makefile A www/rubygem-turbolinks-rails50/distinfo A www/rubygem-turbolinks-rails50/pkg-descr A www/rubygem-redis-rails-rails50 A www/rubygem-redis-rails-rails50/Makefile A www/rubygem-redis-rails-rails50/distinfo A www/rubygem-redis-rails-rails50/pkg-descr A www/rubygem-rails-settings-cached-rails50 A www/rubygem-rails-settings-cached-rails50/Makefile A www/rubygem-rails-settings-cached-rails50/distinfo A www/rubygem-rails-settings-cached-rails50/pkg-descr A www/rubygem-rails50 A www/rubygem-rails50/Makefile A www/rubygem-rails50/distinfo A www/rubygem-rails50/pkg-descr A www/rubygem-lograge-rails50 A www/rubygem-lograge-rails50/Makefile A www/rubygem-lograge-rails50/distinfo A www/rubygem-lograge-rails50/pkg-descr A www/rubygem-kaminari-rails50 A www/rubygem-kaminari-rails50/Makefile A www/rubygem-kaminari-rails50/distinfo A www/rubygem-kaminari-rails50/pkg-descr A www/rubygem-kaminari-activerecord-rails50 A www/rubygem-kaminari-activerecord-rails50/Makefile A www/rubygem-kaminari-activerecord-rails50/distinfo A www/rubygem-kaminari-activerecord-rails50/pkg-descr A www/rubygem-kaminari-actionview-rails50 A www/rubygem-kaminari-actionview-rails50/Makefile A www/rubygem-kaminari-actionview-rails50/distinfo A www/rubygem-kaminari-actionview-rails50/pkg-descr A www/rubygem-jquery-rails-rails50 A www/rubygem-jquery-rails-rails50/Makefile A www/rubygem-jquery-rails-rails50/pkg-descr A www/rubygem-jquery-rails-rails50/distinfo A www/rubygem-hamlit-rails-rails50 A www/rubygem-hamlit-rails-rails50/Makefile A www/rubygem-hamlit-rails-rails50/distinfo A www/rubygem-hamlit-rails-rails50/pkg-descr A www/rubygem-responders-rails50 A www/rubygem-responders-rails50/Makefile A www/rubygem-responders-rails50/distinfo A www/rubygem-responders-rails50/pkg-descr U textproc/Makefile A textproc/rubygem-sass-rails-rails50 A textproc/rubygem-sass-rails-rails50/Makefile A textproc/rubygem-sass-rails-rails50/distinfo A textproc/rubygem-sass-rails-rails50/pkg-descr A textproc/rubygem-rails-dom-testing-rails50 A textproc/rubygem-rails-dom-testing-rails50/Makefile A textproc/rubygem-rails-dom-testing-rails50/distinfo A textproc/rubygem-rails-dom-testing-rails50/pkg-descr U security/Makefile A security/rubygem-doorkeeper-rails50 A security/rubygem-doorkeeper-rails50/Makefile A security/rubygem-doorkeeper-rails50/distinfo A security/rubygem-doorkeeper-rails50/pkg-descr A security/rubygem-devise-two-factor-rails50 A security/rubygem-devise-two-factor-rails50/Makefile A security/rubygem-devise-two-factor-rails50/files A security/rubygem-devise-two-factor-rails50/files/patch-gemspec A security/rubygem-devise-two-factor-rails50/distinfo A security/rubygem-devise-two-factor-rails50/pkg-descr U multimedia/Makefile A multimedia/rubygem-paperclip-av-transcoder-rails50 A multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile A multimedia/rubygem-paperclip-av-transcoder-rails50/distinfo A multimedia/rubygem-paperclip-av-transcoder-rails50/pkg-descr U misc/Makefile A misc/rubygem-dotenv-rails-rails50 A misc/rubygem-dotenv-rails-rails50/Makefile A misc/rubygem-dotenv-rails-rails50/distinfo A misc/rubygem-dotenv-rails-rails50/pkg-descr U devel/Makefile A devel/rubygem-webpacker-rails50 A devel/rubygem-webpacker-rails50/Makefile A devel/rubygem-webpacker-rails50/distinfo A devel/rubygem-webpacker-rails50/pkg-descr A devel/rubygem-web-console-rails50 A devel/rubygem-web-console-rails50/Makefile A devel/rubygem-web-console-rails50/distinfo A devel/rubygem-web-console-rails50/pkg-descr A devel/rubygem-sprockets-rails-rails50 A devel/rubygem-sprockets-rails-rails50/Makefile A devel/rubygem-sprockets-rails-rails50/distinfo A devel/rubygem-sprockets-rails-rails50/pkg-descr A devel/rubygem-simple_form-rails50 A devel/rubygem-simple_form-rails50/Makefile A devel/rubygem-simple_form-rails50/distinfo A devel/rubygem-simple_form-rails50/pkg-descr A devel/rubygem-simple-navigation-rails50 A devel/rubygem-simple-navigation-rails50/Makefile A devel/rubygem-simple-navigation-rails50/pkg-descr A devel/rubygem-simple-navigation-rails50/distinfo A devel/rubygem-redis-activesupport-rails50 A devel/rubygem-redis-activesupport-rails50/Makefile A devel/rubygem-redis-activesupport-rails50/rubygem-redis-activesupport A devel/rubygem-redis-activesupport-rails50/rubygem-redis-activesupport/Makefile A devel/rubygem-redis-activesupport-rails50/rubygem-redis-activesupport/distinfo A devel/rubygem-redis-activesupport-rails50/rubygem-redis-activesupport/pkg-descr A devel/rubygem-redis-activesupport-rails50/distinfo A devel/rubygem-redis-activesupport-rails50/pkg-descr A devel/rubygem-rails-i18n-rails50 A devel/rubygem-rails-i18n-rails50/Makefile A devel/rubygem-rails-i18n-rails50/pkg-descr A devel/rubygem-rails-i18n-rails50/distinfo A devel/rubygem-rails-deprecated_sanitizer-rails50 A devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile A devel/rubygem-rails-deprecated_sanitizer-rails50/distinfo A devel/rubygem-rails-deprecated_sanitizer-rails50/pkg-descr A devel/rubygem-rabl-rails50 A devel/rubygem-rabl-rails50/Makefile A devel/rubygem-rabl-rails50/distinfo A devel/rubygem-rabl-rails50/pkg-descr A devel/rubygem-rabl-rails50/pkg-plist A devel/rubygem-paperclip-rails50 A devel/rubygem-paperclip-rails50/Makefile A devel/rubygem-paperclip-rails50/distinfo A devel/rubygem-paperclip-rails50/pkg-descr A devel/rubygem-jbuilder-rails50 A devel/rubygem-jbuilder-rails50/Makefile A devel/rubygem-jbuilder-rails50/distinfo A devel/rubygem-jbuilder-rails50/pkg-descr A devel/rubygem-devise-rails50 A devel/rubygem-devise-rails50/Makefile A devel/rubygem-devise-rails50/distinfo A devel/rubygem-devise-rails50/pkg-descr A devel/rubygem-coffee-rails-rails50 A devel/rubygem-coffee-rails-rails50/Makefile A devel/rubygem-coffee-rails-rails50/distinfo A devel/rubygem-coffee-rails-rails50/pkg-descr U databases/Makefile A databases/rubygem-pghero-rails50 A databases/rubygem-pghero-rails50/Makefile A databases/rubygem-pghero-rails50/distinfo A databases/rubygem-pghero-rails50/pkg-descr A databases/rubygem-globalid-rails50 A databases/rubygem-globalid-rails50/Makefile A databases/rubygem-globalid-rails50/distinfo A databases/rubygem-globalid-rails50/pkg-descr U math/blis/Makefile U math/blis/pkg-plist Updated to revision 441662. From owner-freebsd-ports@freebsd.org Thu May 25 03:52:52 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 37C18D811B5 for ; Thu, 25 May 2017 03:52:52 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-oedge-vip.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.230]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "dnvrco-oedge-vip.email.rr.com", Issuer "dnvrco-oedge-vip.email.rr.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 193AB10B8 for ; Thu, 25 May 2017 03:52:51 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from [74.134.208.22] ([74.134.208.22:11291] helo=localhost) by dnvrco-omsmta02 (envelope-from ) (ecelerity 3.6.9.48312 r(Core:3.6.9.0)) with ESMTP id B9/BC-29375-11556295; Thu, 25 May 2017 03:52:50 +0000 Date: Thu, 25 May 2017 03:52:49 +0000 Message-ID: From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: Document for OPTIONS syntax in /etc/make.conf, where to find? X-RR-Connecting-IP: 107.14.64.7:25 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, 25 May 2017 03:52:52 -0000 Where do I find documentation so I get the correct syntax for setting ports options in /etc/make.conf ? I tried "man ports", "man make", "man make.conf", and the online Porters' Handbook but have been unable to find the needle in the haystack. NetBSD pkgsrc and Gentoo (Linux) portage document this much better. Tom From owner-freebsd-ports@freebsd.org Thu May 25 04:00: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 E7162D81558 for ; Thu, 25 May 2017 04:00:28 +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 B223415CB for ; Thu, 25 May 2017 04:00:28 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dDjwo-000BFb-3f; Thu, 25 May 2017 06:00:26 +0200 Date: Thu, 25 May 2017 06:00:26 +0200 From: Kurt Jaeger To: Martin =?iso-8859-1?Q?Waschb=FCsch?= Cc: freebsd-ports@freebsd.org Subject: Re: PR 213270 is overcome by events. Message-ID: <20170525040026.GA43031@home.opsec.eu> References: <4FEB8465-980B-4232-A596-2B19C704ABAE@waschbuesch.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4FEB8465-980B-4232-A596-2B19C704ABAE@waschbuesch.de> 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, 25 May 2017 04:00:29 -0000 Hi! > The version in ports is currently 3.2.8. Thanks, closed. -- pi@opsec.eu +49 171 3101372 3 years to go ! From owner-freebsd-ports@freebsd.org Thu May 25 06:04: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 6A7C0D81913 for ; Thu, 25 May 2017 06:04:18 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 593E6199D for ; Thu, 25 May 2017 06:04:18 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5894FD81912; Thu, 25 May 2017 06:04: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 58396D81911 for ; Thu, 25 May 2017 06:04:18 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 33269199C for ; Thu, 25 May 2017 06:04:18 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org ([127.0.1.2]) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id v4P64In8055643 for ; Thu, 25 May 2017 06:04:18 GMT (envelope-from indexbuild@portsindexbuild.ysv.freebsd.org) Received: (from indexbuild@localhost) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4P64ItJ055641 for ports@FreeBSD.org; Thu, 25 May 2017 06:04:18 GMT (envelope-from indexbuild) Date: Thu, 25 May 2017 06:04:18 GMT From: Ports Index build Message-Id: <201705250604.v4P64ItJ055641@portsindexbuild.ysv.freebsd.org> To: ports@FreeBSD.org Subject: INDEX now builds successfully on 10.x 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, 25 May 2017 06:04:18 -0000 From owner-freebsd-ports@freebsd.org Thu May 25 06:14: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 0B6AED81B66 for ; Thu, 25 May 2017 06:14:54 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from apnoea.adamw.org (apnoea.adamw.org [104.225.5.94]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "apnoea.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D80A81E0E for ; Thu, 25 May 2017 06:14:53 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by apnoea.adamw.org (OpenSMTPD) with ESMTPSA id 89fe3588 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Thu, 25 May 2017 00:14:45 -0600 (MDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: Document for OPTIONS syntax in /etc/make.conf, where to find? From: Adam Weinberger In-Reply-To: Date: Thu, 25 May 2017 00:14:44 -0600 Cc: freebsd-ports@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <7A0ECD8D-90BC-4FAA-84B9-C9026E1ECFB7@adamw.org> References: To: Thomas Mueller X-Mailer: Apple Mail (2.3273) 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, 25 May 2017 06:14:54 -0000 > On 24 May, 2017, at 21:52, Thomas Mueller wrote: >=20 > Where do I find documentation so I get the correct syntax for setting = ports options in /etc/make.conf ? >=20 > I tried "man ports", "man make", "man make.conf", and the online = Porters' Handbook but have been unable to find the needle in the = haystack. >=20 > NetBSD pkgsrc and Gentoo (Linux) portage document this much better. >=20 >=20 > Tom You'll find some info in the instructions at the top of = /usr/ports/Mk/bsd.options.mk; there's not a lot of info because it's not = generally the preferred place to specify options. To turn something off by default on all ports (which can always be = overridden by make config), OPTIONS_UNSET=3D NLS To turn something off which overrides make config, OPTIONS_UNSET_FORCE=3D NLS You can set options for individual ports in make.conf too, though it's = almost always a better idea to run 'make config' or 'poudriere options': /usr/ports/editors/vim$ make -V OPTIONS_NAME editors_vim make.conf: editors_vim_UNSET=3D NLS # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Thu May 25 07:47:25 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 6DE58D812C1 for ; Thu, 25 May 2017 07:47:25 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-oedge-vip.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.232]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "dnvrco-oedge-vip.email.rr.com", Issuer "dnvrco-oedge-vip.email.rr.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 430671100 for ; Thu, 25 May 2017 07:47:24 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from [74.134.208.22] ([74.134.208.22:52479] helo=localhost) by dnvrco-omsmta03 (envelope-from ) (ecelerity 3.6.9.48312 r(Core:3.6.9.0)) with ESMTP id B2/B6-25473-B0C86295; Thu, 25 May 2017 07:47:23 +0000 Date: Thu, 25 May 2017 07:47:21 +0000 Message-ID: From: "Thomas Mueller" To: freebsd-ports@freebsd.org CC: Adam Weinberger Subject: Re: Document for OPTIONS syntax in /etc/make.conf, where to find? References: <7A0ECD8D-90BC-4FAA-84B9-C9026E1ECFB7@adamw.org> X-RR-Connecting-IP: 107.14.64.88:25 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, 25 May 2017 07:47:25 -0000 > > On 24 May, 2017, at 21:52, Thomas Mueller wrote: > > Where do I find documentation so I get the correct syntax for setting ports options in /etc/make.conf ? > > I tried "man ports", "man make", "man make.conf", and the online Porters' Handbook but have been unable to find the needle in the haystack. > > NetBSD pkgsrc and Gentoo (Linux) portage document this much better. > Tom > You'll find some info in the instructions at the top of /usr/ports/Mk/bsd.options.mk; there's not a lot of info because it's not generally the preferred place to specify options. > To turn something off by default on all ports (which can always be overridden by make config), OPTIONS_UNSET= NLS > To turn something off which overrides make config, OPTIONS_UNSET_FORCE= NLS > You can set options for individual ports in make.conf too, though it's almost always a better idea to run 'make config' or 'poudriere options': > /usr/ports/editors/vim$ make -V OPTIONS_NAME > editors_vim > make.conf: > editors_vim_UNSET= NLS # Adam > Adam Weinberger While the newer dialog4ports is a big improvement over the previous dialog, it is still difficult to go back in case of finger error. Previous dialog tended to make a mess of the screen, especially when I teed to a log file. Now I have a better idea what to do to set options. I still have in /etc/make.conf from some time ago, OPTIONS_SET.mpop=GNUTLS NLS I guess that would need to be revised to mail_mpop_set=GNUTLS NLS if I stay with the same options. The new synth has no mechanism for configuring options; I guess that would have to be done by make config-recursive , possibly several times until there is nothing more left to configure, as I did when using portupgrade and later portmaster. Thanks for the tips! Other options-configuring systems don't have the dialog: I am thinking of NetBSD pkgsrc and Gentoo portage (not all-inclusive). Tom From owner-freebsd-ports@freebsd.org Thu May 25 08:49: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 0E75ED72B5F for ; Thu, 25 May 2017 08:49:22 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from mail-qt0-x22c.google.com (mail-qt0-x22c.google.com [IPv6:2607:f8b0:400d:c0d::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 C8AC210DB for ; Thu, 25 May 2017 08:49:20 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by mail-qt0-x22c.google.com with SMTP id c13so175119506qtc.1 for ; Thu, 25 May 2017 01:49:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chen-org-nz.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=xFBv00o7iayFu3HdctXIv13xTt/ZO2+6CbuCEgdomQk=; b=lmaSqtRSJMEzp22mdl8wypNeIH8UkvvVaVe7Q9ejdZ43/ozaEOmESeZbpT17urgW65 ArflYuwUEZH+F+vHDgddEgOrT68JiisPvdqGaAJJs/CCgI46uKNKn10WwLr41P61BPzu D7dfutXY50XunipmC/xr+wTQT7AU9bK1GIKjQH3Jn0bjGcfA9jUxmRahg7Rpw27mznA9 o7NUgO/U/fABvVvM0AM/nrgaDoY+UMXpkCgpii4BnviHVmADkpS3pvbOGbkZNrv2h9DW W8EDd5UelhFe0Pt2ASN02bYPKLuIDoR1voqEL49jtZcFnEhLs5AIGfUO6zwtfzI2MVuP WSVg== 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=xFBv00o7iayFu3HdctXIv13xTt/ZO2+6CbuCEgdomQk=; b=LvSOJyiwUp3YW3DL3vqT69hVMf18Dgz3M+uz1hYQjXj6YCOGT9MzsG8Qj8NQ/FMX3i fZOH8SPufpzlKriPPfMlQGPvSDi80R9qZHnAOSXW7Gg/tBH0l++LGxatNWbFd3yxJ9iW I0JOA5ZBZi/+sr5lQhLGpPb9J09ZjU97Gj7Jzo1Ztg2g4t7DmJ5tLQDv6hfxcjt5WJOK 87qPVxtWqtscGTX233JFUolIlX1TOT/CW6MSiS9ufLYlyegNT4O6r9ElODiEp7IfcZC2 65eflzwUUng/U2c93oNeOuJMvnDuIZtSVNUrVpfAy7Nn5OONqvYqiA0X0fPOiBXR2ech jJIw== X-Gm-Message-State: AODbwcBWhtHAueBs/86rzNnplT8s+/GQKwJFplZ3RnhLxk4y9dXyLPXl hm1UctVSm5hdHYAgR9nRtXQl0jGz4ki/ X-Received: by 10.200.9.53 with SMTP id t50mr37494163qth.99.1495702159757; Thu, 25 May 2017 01:49:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.81.41 with HTTP; Thu, 25 May 2017 01:49:19 -0700 (PDT) X-Originating-IP: [180.148.102.31] In-Reply-To: References: <7A0ECD8D-90BC-4FAA-84B9-C9026E1ECFB7@adamw.org> From: Jonathan Chen Date: Thu, 25 May 2017 20:49:19 +1200 Message-ID: Subject: Re: Document for OPTIONS syntax in /etc/make.conf, where to find? To: Thomas Mueller Cc: freebsd-ports@freebsd.org, Adam Weinberger 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, 25 May 2017 08:49:22 -0000 On 25 May 2017 at 19:47, Thomas Mueller wrote: [...] > The new synth has no mechanism for configuring options; I guess that would have to be done by > make config-recursive , > possibly several times until there is nothing more left to configure, as I did when using portupgrade and later portmaster. >From synth(1) man page: -make.conf This is an optional, user-provided file. If it exists, the builder's /etc/make.conf will be appended with the contents of this file. For the default profile, the file would normally be located at /usr/local/etc/synth/LiveSystem-make.conf Cheers. -- Jonathan Chen From owner-freebsd-ports@freebsd.org Thu May 25 13:31: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 06403D814E8 for ; Thu, 25 May 2017 13:31:36 +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 94D6019D1 for ; Thu, 25 May 2017 13:31:35 +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=I0mCG3rReMSH8+QN22BoionL5qzLPhKuJjTW57t5Z9E=; b=rBn1qZska3SMjJWsvnQv8lfkn0Uiw3s8h0vzgfkTNznRhWECPNUwIQD+YwGwJJF1u8nzfxZvl1iq86HU1q1+7yZx3S3IjOrZvbPHOP+pN+F2zBsF3Hdm8TZppj/WTG9XsFYBxH+C2NjnV2uC0IXNGfyxi5vjYCPzE5sPPhgh5io=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1dDsrT-0007ir-P2 for freebsd-ports@freebsd.org; Thu, 25 May 2017 15:31:31 +0200 Received: from 193-83-13-39.adsl.highway.telekom.at ([193.83.13.39] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1dDsrT-0006xF-MU for freebsd-ports@freebsd.org; Thu, 25 May 2017 15:31:31 +0200 To: freebsd-ports@freebsd.org References: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> Subject: Re: Recoll version bump in ports From: Walter Schwarzenfeld Message-ID: <30445795-e777-08c1-b143-1ebf7ca71b85@utanet.at> Date: Thu, 25 May 2017 15:31:27 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <816618c4-5b30-02fb-3a82-756345beb8c3@utu.fi> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US 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: Thu, 25 May 2017 13:31:36 -0000 I had short time open a update PR (Bug 219481). Compiles fine with the port, but not with poudriere; libtool: install: warning: `librecoll.la' has not been installed in `/usr/local/lib/recoll' libtool: install: install -m 555 -s .libs/recollindex /wrkdirs/usr/ports/deskutils/recoll/work/sta ge/usr/local/bin/recollindex (cd python/recoll; \ if test -f /etc/debian_version ; then \ OPTSFORPYTHON=--install-layout=deb; \ fi; \ set -x; \ python setup.py install \ --prefix=/usr/local --root=${DESTDIR:-/} ${OPTSFORPYTHON}) + python setup.py install --prefix=/usr/local --root=/wrkdirs/usr/ports/deskutils/recoll/work/stage python: not found gmake[3]: *** [Makefile:2189: recollpython-install] Error 127 gmake[3]: Leaving directory '/wrkdirs/usr/ports/deskutils/recoll/work/recoll-1.23.2' gmake[2]: *** [Makefile:2006: install-am] Error 2 I have no clue to solve it. so I closed the PR. I hope I or someone other could find a solution. (Maybe, librecoll.la is the cause). From owner-freebsd-ports@freebsd.org Thu May 25 16:55: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 1D721D827B4 for ; Thu, 25 May 2017 16:55:30 +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 0A90F111C for ; Thu, 25 May 2017 16:55:30 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 09E2AD827B2; Thu, 25 May 2017 16:55: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 07E15D827B1 for ; Thu, 25 May 2017 16:55:30 +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 EF5AA111B for ; Thu, 25 May 2017 16:55:29 +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 v4PGtT9i018690 for ; Thu, 25 May 2017 16:55:29 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4PGtT28018689; Thu, 25 May 2017 16:55:29 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201705251655.v4PGtT28018689@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, 25 May 2017 16:55:29 +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, 25 May 2017 16:55:30 -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 ------------------------------------------------+-----------------+------------ multimedia/vdr | 1.7.29 | 2.3.5 ------------------------------------------------+-----------------+------------ 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 May 25 19:59: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 C642AD82A4D for ; Thu, 25 May 2017 19:59:09 +0000 (UTC) (envelope-from jjuanino@gmail.com) Received: from mail-oi0-x22d.google.com (mail-oi0-x22d.google.com [IPv6:2607:f8b0:4003: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 833571E82 for ; Thu, 25 May 2017 19:59:09 +0000 (UTC) (envelope-from jjuanino@gmail.com) Received: by mail-oi0-x22d.google.com with SMTP id l18so293443595oig.2 for ; Thu, 25 May 2017 12:59:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=E+V+X5AVv6teATg2oJuAosCD6+2K/6TnGFaNes31jJ4=; b=gL+IQAXS/LNGubZu6GL3zwggAUWxPtIAmDWSHZuds/Hf64i8lEu5Tcg5/enc6TZAVN 0uxvPgQ+oM5jeBaKCMaEX+L+gPMRexCSdQWTdH7oWAZ4EFTGf6y8yxvR8F19C1HujHai n+554xJla4UE3tsR+58yDuaFh9xToroGLnCswGZTbpxG+gr/SYaV2o0DuP0amIWC2WmZ X/KrdPB/0O/lgVKzEFLxiv6sAfO0yuCbLqSo5WTExqtI6Gd68UfudS2lA9UmSxHQtyJe 4PiZHtINCY8/IGyVPm+P7mmOEFQGlaWFAiLBm4PVrN2ySiANHWSyuLv8LVIfsvdVbmjN RUuA== 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 :content-transfer-encoding; bh=E+V+X5AVv6teATg2oJuAosCD6+2K/6TnGFaNes31jJ4=; b=Z/DZgOhCWYs93iDxlM2XnA5HeVW8x4J3BmJaweAg6idrBYy8sm/KzcpaHKIM/xFpXd Sr+Y7zQ8SPOaBjpIT1P8/Mv0ILerO+IqR9IjlaLS8mOJOxlFD9PzV20051vlE8iKOybH v+Ep1RiLXGBBhECjFkgcqCaZ/OvktnZQIhPaEO0h6TWvE30hJayUicssmY2zJg+lR1lL ikE/C/Dx4MWvSkLmprk016bdv48263fT381yCxqZZYJ16b0uAF1c8NmhGyG6gjFIyAyX Gy/uFL9EfaLqR0pd/LQ5NhTiBQOIHN+kZ0kj+DqDw5kF6ufyL48vtF7+0tcDkkBh/TTT gNpg== X-Gm-Message-State: AODbwcAI1sfxepmFcMhJljvHt4yzM7r63GwOjL0kyrZxZs6Tx/BykewR JiO97NIi6B5XGJ3I67m1WkPbfzAt3w== X-Received: by 10.157.14.46 with SMTP id c43mr8511671otc.200.1495742348397; Thu, 25 May 2017 12:59:08 -0700 (PDT) MIME-Version: 1.0 Received: by 10.202.76.132 with HTTP; Thu, 25 May 2017 12:59:08 -0700 (PDT) From: =?UTF-8?B?Sm9zw6kgR2FyY8OtYSBKdWFuaW5v?= Date: Thu, 25 May 2017 21:59:08 +0200 Message-ID: Subject: Several PostgreSQL versions installed To: ports 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, 25 May 2017 19:59:09 -0000 Hi FreeBSD porters, I have been read the following thread "Proposal to fix postgresql package maintainance nightmare" https://lists.freebsd.org/pipermail/freebsd-ports/2015-July/099842.html but I think that, two years later, there is no progress on this matter. I am unaware if there is any project that addresses this issue, so my apologies if this work is already in progress. The goal of the new postgresql port schema should be, in my honest opinion: * It must allow to install distinct version without ugly hacks as jails, etc. Jails are a overkill to accomplish this task. * Each software version must live in a separate directory ${LOCALBASE}/pgsql/X.Y: /usr/local/pgsql/9.2 /usr/local/pgsql/9.4 /usr/local/pgsql/9.6 and so on. * It is not necessary to provide an installed version as the default. For example, if we need 9.5 and 9.6 versions installed, both are equally valid, and we do not need the standard postgresql binaries (pg_dump, psql, pg_ctl, etc) installed in the standard PATH as /bin:/usr/bin:/usr/local/bin. Those binaries are located under /usr/local/pgsql/X.Y/bin directory, and everyone can configure the shell environment variable PATH to add the previous directory: PATH=3D$PATH:/usr/local/pgsql/X.Y/bin. Please do not make symlinks from /usr/local/bin/pg_some to specific /usr/local/pgsql/X.Y/bin/pg_some, it has very little advantages and a lot of drawbacks. Under a prompt command line, a skilled database administrator always need to know what command version is executing and do not need an standard location as /usr/local/bin. * The rc and the periodic script must be versioned also: /usr/local/etc/rc.d/postgresql9.6 /usr/local/etc/rc.d/postgresql5.6 Best regards, and thanks to the volunteers for make FreeBSD an great operating system! --=20 Jos=C3=A9 G. Juanino From owner-freebsd-ports@freebsd.org Thu May 25 20:06: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 49EA9D82E18 for ; Thu, 25 May 2017 20:06:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0ACBF1600; Thu, 25 May 2017 20:06:09 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: by freefall.freebsd.org (Postfix, from userid 1235) id 31BB453E7; Thu, 25 May 2017 20:06:08 +0000 (UTC) Date: Thu, 25 May 2017 22:06:07 +0200 From: Baptiste Daroussin To: =?iso-8859-1?Q?Jos=E9_Garc=EDa?= Juanino Cc: ports Subject: Re: Several PostgreSQL versions installed Message-ID: <20170525200607.3onokw5yqrprpwdr@ivaldir.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3mqpi5xnkc246zgm" Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170428 (1.8.2) 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, 25 May 2017 20:06:09 -0000 --3mqpi5xnkc246zgm Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 25, 2017 at 09:59:08PM +0200, Jos=E9 Garc=EDa Juanino wrote: > Hi FreeBSD porters, >=20 >=20 > I have been read the following thread >=20 > "Proposal to fix postgresql package maintainance nightmare" >=20 > https://lists.freebsd.org/pipermail/freebsd-ports/2015-July/099842.html >=20 > but I think that, two years later, there is no progress on this matter. > I am unaware if there is any project that addresses this issue, so my > apologies if this work is already in progress. No progress as far as I am aware. except a PoC (early, ugly, unfinished) https://people.freebsd.org/~bapt/pgsql95.diff >=20 > The goal of the new postgresql port schema should be, in my honest > opinion: >=20 > * It must allow to install distinct version without ugly hacks as jails, > etc. Jails are a overkill to accomplish this task. >=20 > * Each software version must live in a separate directory > ${LOCALBASE}/pgsql/X.Y: >=20 > /usr/local/pgsql/9.2 > /usr/local/pgsql/9.4 > /usr/local/pgsql/9.6 >=20 > and so on. Yes this is what I was proposing >=20 >=20 > * It is not necessary to provide an installed version as the default. > For example, if we need 9.5 and 9.6 versions installed, both are > equally valid, and we do not need the standard postgresql binaries > (pg_dump, psql, pg_ctl, etc) installed in the standard PATH as > /bin:/usr/bin:/usr/local/bin. Those binaries are located under > /usr/local/pgsql/X.Y/bin directory, and everyone can configure the > shell environment variable PATH to add the previous directory: > PATH=3D$PATH:/usr/local/pgsql/X.Y/bin. Please do not make symlinks from > /usr/local/bin/pg_some to specific /usr/local/pgsql/X.Y/bin/pg_some, > it has very little advantages and a lot of drawbacks. Under a prompt > command line, a skilled database administrator always need to know > what command version is executing and do not need an standard location > as /usr/local/bin. For a database administrator yes playing with the path is enough, but for a= new comer installing pgsql for his blog this would be complicated >=20 >=20 > * The rc and the periodic script must be versioned also: >=20 > /usr/local/etc/rc.d/postgresql9.6 > /usr/local/etc/rc.d/postgresql5.6 >=20 yes One important thing is there is a need for a small modification for the postgresql build system: add a proper RUNPATH for the binaries to always fi= nd the right libpq >=20 >=20 > Best regards, and thanks to the volunteers for make FreeBSD an great > operating system! >=20 Note that the same should apply to mysql/mariadb/etc bapt --3mqpi5xnkc246zgm Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAlknORUACgkQY4mL3PG3 PlqeCQ//bAQhQA2UZocucdphCBnW/yJyzTM1Gld4tp8430ygIdtKOMJR31T1ik+P 2+Y/ccaaeaxQQFrHvrW+9+nBtYC8yeCq4iwYzbSfdzCynFfhTp8HLkl49pTo/cUn 2etKVjJoOz6eg+A/HhDBsbM4/OvvPvfoy1konSe7hk5oNFZ+mrp7ZXibhSt5w4Ys jcBC92UUR9qWJf51Z2yFt1gygVOjNev8rCNL82L6FHS5sZG9JfKtC2lKqDpidZyf qjTDv6Pj7KOUsREVZcc13Es/FWVPZHO/95y4nnw7VZ5HrtLG0ypzfXoJODkGlIA/ M0U3IYZUDsSWNBV8dnLZpXFghER0hnRlu6RgkL+ScI7DlwIY/o3VeWEpb7jP5f0i VbpkRrAkAzm4ArZt8U09z/8xaqOQDK7no/Pp2bK8ovfS4l/OwWMVMUqtVRGjqAtW 5lzjssGq2olWK/nuq9Ii75O/I7CK8Z65iVEpOs0kFn8/ja8MgiK6jCUtWjn1YWRQ cn2weqIu/ar8a02JwztjxdQpav/lTs1syES1kICjy5mnEwljjzjOZgosojBldUkr IFqiCuzMboYs0aFJQdD18JF3fjJsx4WYpyp0uOCxEhTuzFYVgYPnezQ/47YlmBxl 2/gojd6eHZL+U9vqYbACBbh4nhNX6NzBlfVmTuRSfIxEETVqXdk= =1TE4 -----END PGP SIGNATURE----- --3mqpi5xnkc246zgm-- From owner-freebsd-ports@freebsd.org Thu May 25 20:11: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 F1F44D82FC1 for ; Thu, 25 May 2017 20:11:50 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (23-111-151-218.static.hvvc.us [23.111.151.218]) (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 B64E51903 for ; Thu, 25 May 2017 20:11:49 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (localhost [127.0.0.1]) by maurice.jlkmail.com (Postfix) with ESMTP id 36EB51889A2A for ; Thu, 25 May 2017 16:11:43 -0400 (EDT) Authentication-Results: maurice.jlkmail.com (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=mailman-hosting.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= mailman-hosting.com; h=content-transfer-encoding:mime-version :x-mailer:content-type:content-type:references:in-reply-to:date :date:to:from:from:subject:subject:message-id; s=dkim; t= 1495743101; x=1496607102; bh=T1of9zVIs81OFjxzqTtshds34DyTnUQTDqb LhR9ShlU=; b=Sk18Tl4R9xmtHODyfInpyKl6L3gZwciKN2iyvDQ/wUmtqP3gqqF YkZ7lSyTYz1EGynxyAI/CikOqLHU6xPBI3j2C1XvhLOgn/y9KLGQxw79ZrTxcxbv 27/t3nUaE+dhHtNITi76JuAf06bPB6Nlnizrs3NSwu2wUIG3LvgVpt4Q= X-Virus-Scanned: Debian amavisd-new at maurice.jlkmail.com X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-9999 required=6.31 tests=[ALL_TRUSTED=-1, URIBL_BLOCKED=0.001] autolearn=unavailable autolearn_force=no Received: from maurice.jlkmail.com ([127.0.0.1]) by maurice.jlkmail.com (maurice.jlkmail.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id JTXQLrzHm8LZ for ; Thu, 25 May 2017 16:11:41 -0400 (EDT) Received: from hogwarts.fios-router.home (static-70-104-198-154.nrflva.fios.verizon.net [70.104.198.154]) by maurice.jlkmail.com (Postfix) with ESMTPSA id 96C951889A23; Thu, 25 May 2017 16:11:41 -0400 (EDT) Message-ID: <1495743088.9249.1.camel@mailman-hosting.com> Subject: Re: Several PostgreSQL versions installed From: Jim Ohlstein To: Baptiste Daroussin , =?ISO-8859-1?Q?Jos=E9_Garc=EDa?= Juanino Cc: ports Date: Thu, 25 May 2017 16:11:28 -0400 In-Reply-To: <20170525200607.3onokw5yqrprpwdr@ivaldir.net> References: <20170525200607.3onokw5yqrprpwdr@ivaldir.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.24.2 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: Thu, 25 May 2017 20:11:51 -0000 On Thu, 2017-05-25 at 22:06 +0200, Baptiste Daroussin wrote: > On Thu, May 25, 2017 at 09:59:08PM +0200, José García Juanino wrote: > > Hi FreeBSD porters, > > > > > > I have been read the following thread > > > > "Proposal to fix postgresql package maintainance nightmare" > > > > https://lists.freebsd.org/pipermail/freebsd-ports/2015-July/099842. > > html > > > > but I think that, two years later, there is no progress on this > > matter. > > I am unaware if there is any project that addresses this issue, so > > my > > apologies if this work is already in progress. > > No progress as far as I am aware. except a PoC (early, ugly, > unfinished) > https://people.freebsd.org/~bapt/pgsql95.diff > > > > > The goal of the new postgresql port schema should be, in my honest > > opinion: > > > > * It must allow to install distinct version without ugly hacks as > > jails, > > etc. Jails are a overkill to accomplish this task. > > > > * Each software version must live in a separate directory > > ${LOCALBASE}/pgsql/X.Y: > > > > /usr/local/pgsql/9.2 > > /usr/local/pgsql/9.4 > > /usr/local/pgsql/9.6 > > > > and so on. > > Yes this is what I was proposing > > > > > > * It is not necessary to provide an installed version as the > > default. > > For example, if we need 9.5 and 9.6 versions installed, both are > > equally valid, and we do not need the standard postgresql > > binaries > > (pg_dump, psql, pg_ctl, etc) installed in the standard PATH as > > /bin:/usr/bin:/usr/local/bin. Those binaries are located under > > /usr/local/pgsql/X.Y/bin directory, and everyone can configure > > the > > shell environment variable PATH to add the previous directory: > > PATH=$PATH:/usr/local/pgsql/X.Y/bin. Please do not make symlinks > > from > > /usr/local/bin/pg_some to specific > > /usr/local/pgsql/X.Y/bin/pg_some, > > it has very little advantages and a lot of drawbacks. Under a > > prompt > > command line, a skilled database administrator always need to > > know > > what command version is executing and do not need an standard > > location > > as /usr/local/bin. > > For a database administrator yes playing with the path is enough, but > for a new > comer installing pgsql for his blog this would be complicated > > > > > > * The rc and the periodic script must be versioned also: > > > > /usr/local/etc/rc.d/postgresql9.6 > > /usr/local/etc/rc.d/postgresql5.6 > > > > yes > > One important thing is there is a need for a small modification for > the > postgresql build system: add a proper RUNPATH for the binaries to > always find > the right libpq > > > > > > > Best regards, and thanks to the volunteers for make FreeBSD an > > great > > operating system! > > > > Note that the same should apply to mysql/mariadb/etc > And in a perfect world, PHP also. We run different versions in different jails now. While it works, it is a bit of overkill. -- Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com/ From owner-freebsd-ports@freebsd.org Thu May 25 20:36: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 E656CD82A19 for ; Thu, 25 May 2017 20:36:50 +0000 (UTC) (envelope-from dreamx@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 CC7451C3B for ; Thu, 25 May 2017 20:36:50 +0000 (UTC) (envelope-from dreamx@gmx.de) Received: by mailman.ysv.freebsd.org (Postfix) id CBC78D82A18; Thu, 25 May 2017 20:36:50 +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 CB6E5D82A16 for ; Thu, 25 May 2017 20:36:50 +0000 (UTC) (envelope-from dreamx@gmx.de) Received: from mout.gmx.net (mout.gmx.net [212.227.15.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 352B11C3A for ; Thu, 25 May 2017 20:36:49 +0000 (UTC) (envelope-from dreamx@gmx.de) Received: from [192.168.1.11] ([109.100.29.30]) by mail.gmx.com (mrgmx002 [212.227.17.190]) with ESMTPSA (Nemesis) id 0MHoC5-1dEpVf1Aez-003cjH for ; Thu, 25 May 2017 22:36:42 +0200 To: ports@freebsd.org From: Horatiu Moldovan Subject: OpenSSL 1.0.2l Message-ID: <128cd03f-d5bf-9806-2095-5ead7c3b9937@gmx.de> Date: Thu, 25 May 2017 23:36:40 +0300 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Provags-ID: V03:K0:Zm6ZOkpjTwkoH/Le1vqfOZNSMxjqf5f/TtPhIOWPd0KWQ7ZoDQj cg5SCWyYG2aJSkhvOx3i3WqpH1Kx8Z44dEZbxyXt1wjyuNR/kgaGw/XlgKsuDl47rOylELV xaHrlNgVlLRSvoERAQfTzvpR0mEp+n7YxIifYT8NfJcBHx5leqx0ZOIH/YofTuKSy9LVB1j Ic4VfvO27+dSMW1YgL0hA== X-UI-Out-Filterresults: notjunk:1;V01:K0:K8mHdIC2C+k=:6irMuTGR2GAHoogWULAvmD 50O4dDFE6M49mJYnCu9vB47/6bQTKu0m3kpt8it1qjeqxQpdOrjDCP327ZYIOp+XF2YKXemxy gw3QanSnPUzh2bC4LRij7IKGYt2PAr5Jpy0L0tYtpPPZsFhbsDbEdjctKot8YI0pqHds9hcOl Cj4fOHvnlFPbYY7qV5UUIlwKgveT+eATXYVLCsrb2TaAhITMdUbdl5qKl9AeaHQlN/NwUG9CE 4ps3pgS+s75abOtd/QiGuu1UoEJoq59Ro2WgJMqVE7QeZv4Efj7ArrecUojQNYiQQLzJ9Syfa fvzHlTPZ9KBfPYVxNjlbf4rxTVi7mLZ4efwmUG6wc+AKLOgekElCL5xKl/TY0THIjrA3X7aJm r8Wc0ZF3wRUBvWffhtS24cssHGfuX/nfRU58rLXTckAunGGrZvcJvZwtYxyPmiUCzbDK/TPx4 zXU5KrJ2CLQ9G7Blfzz1N7OAgiKa6HAprd5g7qzcKg1pyWs9b3IlhaXuQ+W37v6d9bIEC6XXH RrHnRymuhAOmbkTXHeLpWHJcA8YLslU7E50ECNV1iYU+EgS45NKwvPm9OaxBcsVa/YCD3OyPn 1ZNHU6ot/WRI+jfvNdG0gY1MRNFmw+bFwxXTxDkS4ThmiVGca09zBiOvTtR2Fbl9zZpGiUX3O c3tcnjkJ4sz5iFLfwaEIzxmq/m+Z8z/jx0O7QDp0bl8Islqei1aXcWwoLD76zZR8dqAfDmsNV z2ArvvnyLhKPK3FgZx69ubvWSvMGmJguPtUVZehPG716CE0jJ79SDmXsbZmo/I4MKk1t/Qc7Q Y0UT8SC 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, 25 May 2017 20:36:51 -0000 Hello, The distinfo for openssl 1.0.2l seems to have the wrong paths: openssl-1.0.2l/openssl-1.0.2l.tar.gz instead of openssl-1.0.2/openssl-1.0.2l.tar.gz This applies to all the entries in distinfo. --- Horatiu From owner-freebsd-ports@freebsd.org Fri May 26 09:03:12 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 A91FCD82B4C for ; Fri, 26 May 2017 09:03:12 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-oedge-vip.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "dnvrco-oedge-vip.email.rr.com", Issuer "dnvrco-oedge-vip.email.rr.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 886271349 for ; Fri, 26 May 2017 09:03:11 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from [74.134.208.22] ([74.134.208.22:49538] helo=localhost) by dnvrco-omsmta01 (envelope-from ) (ecelerity 3.6.9.48312 r(Core:3.6.9.0)) with ESMTP id 25/FD-03935-84FE7295; Fri, 26 May 2017 09:03:04 +0000 Date: Fri, 26 May 2017 09:02:59 +0000 Message-ID: <25.FD.03935.84FE7295@dnvrco-omsmta01> From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: Re: Document for OPTIONS syntax in /etc/make.conf, where to find? References: <7A0ECD8D-90BC-4FAA-84B9-C9026E1ECFB7@adamw.org> X-RR-Connecting-IP: 107.14.64.6:25 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, 26 May 2017 09:03:12 -0000 > On 25 May 2017 at 19:47, Thomas Mueller wrote: [...] > > The new synth has no mechanism for configuring options; I guess that would have to be done by > > make config-recursive , > > possibly several times until there is nothing more left to configure, as I did when using portupgrade and later portmaster. > >From synth(1) man page: -make.conf This is an optional, user-provided file. If it exists, the builder's /etc/make.conf will be appended with the contents of this file. For the default profile, the file would normally be located at /usr/local/etc/synth/LiveSystem-make.conf > Cheers. > Jonathan Chen Thanks for the tip. I already have read the man page because I git-cloned synth tree from github repository. I want to keep the Ada code for viewing, among other things. My first attempt to build synth was on FreeBSD-current amd64 and failed when the system rebooted itself when I was sleeping. Apparently no filesystem damage. System came up in System Rescue CD 5.0.0 USB-stick installation. I attribute this to FreeBSD-current instability rather than synth or ports, meaning I must first rebuild FreeBSD 11.0-STABLE amd64 installation, and then from there, FreeBSD-current amd64. Tom From owner-freebsd-ports@freebsd.org Fri May 26 12:16: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 74B6FD7B0DC for ; Fri, 26 May 2017 12:16:06 +0000 (UTC) (envelope-from carmel_ny@outlook.com) Received: from NAM05-BY2-obe.outbound.protection.outlook.com (mail-oln040092012036.outbound.protection.outlook.com [40.92.12.36]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client CN "mail.protection.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4547E1CCF for ; Fri, 26 May 2017 12:16:05 +0000 (UTC) (envelope-from carmel_ny@outlook.com) 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=q3dY5JDLOImQfq1FmlgBrfv8kfDb895EKryd35Dk7Cw=; b=lDUED8Jh9edecwns6TU48H2vfrYW2DKwRi0kOsrBCOG/B0iCCvPqo0De7KEn4nuwDNmvJ0XwkTGmwbFFnLkuLG/T3rXLrT980t7QiCMFWIQR7i8QxV6Gvd8u43ak06kzxEx0cwimok41QylhvlZcOa5KEC4eJ2eOWi+gIciKjLB6aptw2pTqBeHsZP7e0Rw8k39odFH7Nfn6LFRtIG1NBVNLuYNjUIOec7ZZsMBUsx8Dj61Mo7vFcMwQGySvl864QmUHuWbmKVpd2NIEfxKRCevSfyV9V6ysv3+6kEx7PFOnL1OkpS+1qkUYn9/8a1iyvljswpM/85gPUjX1Do/U1g== Received: from BY2NAM05FT022.eop-nam05.prod.protection.outlook.com (10.152.100.55) by BY2NAM05HT230.eop-nam05.prod.protection.outlook.com (10.152.101.175) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1075.12; Fri, 26 May 2017 12:16:05 +0000 Received: from CO1PR20MB0695.namprd20.prod.outlook.com (10.152.100.59) by BY2NAM05FT022.mail.protection.outlook.com (10.152.100.159) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1075.12 via Frontend Transport; Fri, 26 May 2017 12:16:04 +0000 Received: from CO1PR20MB0695.namprd20.prod.outlook.com ([fe80::88f1:720f:5d4b:2f14]) by CO1PR20MB0695.namprd20.prod.outlook.com ([fe80::88f1:720f:5d4b:2f14%14]) with mapi id 15.01.1124.009; Fri, 26 May 2017 12:16:04 +0000 From: Gerard Seibert To: FreeBSD Ports Subject: Port for Resilio Sync Thread-Topic: Port for Resilio Sync Thread-Index: AQHS1hnYDkOzCl76pUO7QLu2hsgz+A== Date: Fri, 26 May 2017 12:16:04 +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:B195547F9F53026292E7DE5DF7C65C35649FBC7CA29A35DBD99296FEB9FFDC43; UpperCasedChecksum:F909CFEB1E2C6008801EE79C99936B17C98182BAE7CFC28FDDC28489CA65227B; SizeAsReceived:7924; Count:41 x-ms-exchange-messagesentrepresentingtype: 1 x-ms-publictraffictype: Email x-microsoft-exchange-diagnostics: 1; BY2NAM05HT230; 5:Wu8Mm9wRE1nI2tzJrsvwRTVFz7BX66z4CyUVlI6u+CKNbI14/MSPYhIFFN3tzs+cMrDOgo0qMgQcEOTS/19cG8HPS8vaCfUyQT4Rsz6HAsV2l6G+/V+4a+yb2lkdDBEpogQV2lTUdqPPMBbOfonCZQ==; 24:OXYwrMbPyaoXFJJfe9DoYMqdzlC7qZ4HLKeGk4OscjUNJUMiYV3+wwHqSiuqFOp91eR1AmuX8pH+wBYvv4jP/ggQbn7kp+LBdSx84neA804=; 7:TDL5ez1F905fBsPXefbwp+mJwQAkk9/OARaBsxX7lrxIMmugwShDOnL3OGisHVF+62ByQ+NrOZ72xaEVH7oPmEbgMj2UuweINP9xAvcpyqwAk8BK4EoeFs18U1zVsz5I+7a0Qzxr+N6Mjbu/N+MAtAbwIHG8yHZQFzpmpri19A3R2uSgwZJRAwTstZYDW1CLokmeG7n66UYC8Ug6kVw6jseMJ0CF01uKwoUR6ajhGOXkAiIj9UHHj7huOmBkOo+RGc/izn2hIVnPGtWupZ1KI9RXL6V2tPpnEog2hYUwHADpz3KH2Qmz8mkcywuOACJ9 x-incomingheadercount: 41 x-eopattributedmessage: 0 x-forefront-antispam-report: EFV:NLI; SFV:NSPM; SFS:(7070007)(98901004); DIR:OUT; SFP:1901; SCL:1; SRVR:BY2NAM05HT230; H:CO1PR20MB0695.namprd20.prod.outlook.com; FPR:; SPF:None; LANG:; x-ms-office365-filtering-correlation-id: 2ff4b9b5-a899-4d93-5ba3-08d4a430f9c4 x-microsoft-antispam: UriScan:; BCL:0; PCL:0; RULEID:(22001)(201702061074)(5061506573)(5061507331)(1603103135)(2017031320274)(2017031324274)(2017031323274)(2017031322274)(1603101448)(1601125374)(1701031045); SRVR:BY2NAM05HT230; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(444000031); SRVR:BY2NAM05HT230; BCL:0; PCL:0; RULEID:; SRVR:BY2NAM05HT230; x-forefront-prvs: 031996B7EF spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" Content-ID: <07BF62A9B66F0F468C8EB1424913F5D5@namprd20.prod.outlook.com> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: outlook.com X-MS-Exchange-CrossTenant-originalarrivaltime: 26 May 2017 12:16:04.1829 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: BY2NAM05HT230 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, 26 May 2017 12:16:06 -0000 I presently use Resilio Sync 2.5 on my Windows based machines. I see that there is a version available for FreeBSD . I was wondering if there is a port of this application? I could not find one, but FreeBSD tends to change the names of applications in the port system making it somewhat difficult to locate specific programs. Thanks! --=20 Carmel From owner-freebsd-ports@freebsd.org Fri May 26 12:28: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 3692BD7BA3B for ; Fri, 26 May 2017 12:28:59 +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 F3AE717E5 for ; Fri, 26 May 2017 12:28:58 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dEEMU-000Euf-UU for freebsd-ports@freebsd.org; Fri, 26 May 2017 14:28:58 +0200 Date: Fri, 26 May 2017 14:28:58 +0200 From: Kurt Jaeger To: FreeBSD Ports Subject: Re: Port for Resilio Sync Message-ID: <20170526122858.GC43031@home.opsec.eu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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, 26 May 2017 12:28:59 -0000 Hi! > I presently use Resilio Sync 2.5 on my Windows based machines. I see > that there is a version available for FreeBSD > . > I was wondering if there is a port of this application? Not as far as I can see. The distfiles just contain a binary, so a port is probably easy. -- pi@opsec.eu +49 171 3101372 3 years to go ! From owner-freebsd-ports@freebsd.org Fri May 26 15:20: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 8D18CD82D17 for ; Fri, 26 May 2017 15:20:58 +0000 (UTC) (envelope-from bdrewery@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 6F76D1ED0 for ; Fri, 26 May 2017 15:20:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6B4A1D82D15; Fri, 26 May 2017 15:20:58 +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 6ABD9D82D13; Fri, 26 May 2017 15:20:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2A2751ECE; Fri, 26 May 2017 15:20:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (unknown [127.0.1.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by freefall.freebsd.org (Postfix) with ESMTPS id 3863B47D2; Fri, 26 May 2017 15:20:57 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 116E97B74; Fri, 26 May 2017 15:20:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id RTW1NFxMCAU1; Fri, 26 May 2017 15:20:53 +0000 (UTC) To: current@FreeBSD.org, ports@FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com AE1CB7B6F From: Bryan Drewery Subject: (head users) 64-bit inodes: Packages heads up and Poudriere errors Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: Date: Fri, 26 May 2017 08:20:31 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uiOGc6uvPsKo3XBHI2f48fOeLHrFl0FII" 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, 26 May 2017 15:20:58 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --uiOGc6uvPsKo3XBHI2f48fOeLHrFl0FII Content-Type: multipart/mixed; boundary="DabqeoUXQjH9mhswMwg2LEd17Js19q5p2"; protected-headers="v1" From: Bryan Drewery To: current@FreeBSD.org, ports@FreeBSD.org Message-ID: Subject: (head users) 64-bit inodes: Packages heads up and Poudriere errors --DabqeoUXQjH9mhswMwg2LEd17Js19q5p2 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable For those running FreeBSD head, the ABI was majorly changed in r318736 for 64-bit inodes. This change was *backwards compatible* but not *forward compatible*. This is normal and expected. For Pkg users: You are advised to upgrade your system past r318736 soon or avoid using official packages until you do. Portmgr may upgrade the package builders at any time and without much notice. For Poudriere users: What this means is that you may see warnings like this in Poudriere: > [00:00:01] =3D=3D=3D=3D>> Warning: !!! Jail is newer than host. (Jail: = 1200031, Host: 1200030) !!! > [00:00:01] =3D=3D=3D=3D>> Warning: This is not supported. > [00:00:01] =3D=3D=3D=3D>> Warning: Host kernel must be same or newer th= an jail. > [00:00:01] =3D=3D=3D=3D>> Warning: Expect build failures. This warning is quite old and usually can be ignored as the __FreeBSD_version number it is tracking is normally bumped for minor things. Large ABI breakage is relatively rare. In this case it matters though. =2E.. > [00:00:03] =3D=3D=3D=3D>> Starting jail exp-head-commit-test > [00:00:03] =3D=3D=3D=3D>> Error: Unable to execute id(1) in jail. Emula= tion or ABI wrong. This is due to the ABI breakage - your older kernel cannot run the newer binary from the jail. The solution is to upgrade your host system past r318736. Be sure to follow the proper (and normal) upgrade procedure as documented in UPDATING. (For people finding this error on Google, it can indicate anything wrong in the jail that is disallowing binaries from running from a broken QEMU to a non-forward-compatible ABI change to simply missing files or broke jail setup) Lastly, Poudriere normally automatically rebuilds packages for head jails anytime the VCS revision is changed, so SVN revision or GIT hash. This is important in these ABI-breaking cases as you want all packages to use the new ABI. I am changing this in the next Poudriere updates to track __FreeBSD_version for svn/git/-m src=3D builds. It will still continue to track "Release name" for other methods. This will do 2 thing= s: 1. Rebuild less often and only when someone updates __FreeBSD_version. This is more proper and we should strive to update this only as needed to rebuild things. 2. Fix -m src=3D *not* rebuilding packages after the recent ABI breakage.= If your jail uses -m src=3D I recommend forcifully doing a bulk -c once t= o ensure you get working packages. --=20 Regards, Bryan Drewery --DabqeoUXQjH9mhswMwg2LEd17Js19q5p2-- --uiOGc6uvPsKo3XBHI2f48fOeLHrFl0FII 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 iQEcBAEBAgAGBQJZKEfEAAoJEDXXcbtuRpfPAKQIALLJffPO/3hB8ekKxY+Afex1 oHRAUPp3q9IxaGTfaC8c9HG1QMVGyjDVhr4OvNK2Nu2H5UGR2DO6FE7+YP740zrR aEX75jCKbkJ42oooji0qlPBoM2FRt6yrf/8UcX13lkl/LR/Tzm0zQ/PDij9+aJxm 6/rIErVZdDlKVLYGIvg6iI0at7bZf3X5LiLR8Z4xxpdxhTi+PNLrVWqszEZZ1J15 stK+0K6NL/DXpy1Jdtf6Ew2g21t8SqjXRA/SU3p+9rjvtc8knDAYEaMWUwePMx7R 0S5rqxuAFDEJsGIi9WhGP1IxSuBpaPXM/grWNVxGZD8/oUK6M78PoQMec4IG1PU= =LvmR -----END PGP SIGNATURE----- --uiOGc6uvPsKo3XBHI2f48fOeLHrFl0FII-- From owner-freebsd-ports@freebsd.org Fri May 26 16:53: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 347BED83A9D for ; Fri, 26 May 2017 16:53:28 +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 21F1017FC for ; Fri, 26 May 2017 16:53:28 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 1E889D83A9C; Fri, 26 May 2017 16:53: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 1C8FDD83A9B for ; Fri, 26 May 2017 16:53:28 +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 0736F17FA for ; Fri, 26 May 2017 16:53:28 +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 v4QGrRBQ090475 for ; Fri, 26 May 2017 16:53:27 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4QGrRpw090474; Fri, 26 May 2017 16:53:27 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201705261653.v4QGrRpw090474@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: Fri, 26 May 2017 16:53:27 +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: Fri, 26 May 2017 16:53:28 -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/micropython | 1.5.1 | v1.9 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Fri May 26 18:13: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 A7632D83E52 for ; Fri, 26 May 2017 18:13:16 +0000 (UTC) (envelope-from bdrewery@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 87B2D15F3 for ; Fri, 26 May 2017 18:13:16 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 81FC0D83E4F; Fri, 26 May 2017 18:13: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 812E3D83E4D; Fri, 26 May 2017 18:13:16 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5570115F0; Fri, 26 May 2017 18:13:16 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (unknown [127.0.1.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by freefall.freebsd.org (Postfix) with ESMTPS id 69EFA7C19; Fri, 26 May 2017 18:13:15 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 1F24A7E74; Fri, 26 May 2017 18:13:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id dUGtYw2oau9j; Fri, 26 May 2017 18:13:10 +0000 (UTC) Subject: Re: (head users) 64-bit inodes: Packages heads up and Poudriere errors DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 5CD807E6F To: current@FreeBSD.org, ports@FreeBSD.org References: From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <88e4f6f6-fef4-1191-36d5-41a7b551b457@FreeBSD.org> Date: Fri, 26 May 2017 11:12:48 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TJbc8Ih6ujQfuI4kQNuXoOhaAM10LGf9g" 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, 26 May 2017 18:13:16 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --TJbc8Ih6ujQfuI4kQNuXoOhaAM10LGf9g Content-Type: multipart/mixed; boundary="fjOOUqulmcNKeEdl94ATvRi8ErUwUdJs4"; protected-headers="v1" From: Bryan Drewery To: current@FreeBSD.org, ports@FreeBSD.org Message-ID: <88e4f6f6-fef4-1191-36d5-41a7b551b457@FreeBSD.org> Subject: Re: (head users) 64-bit inodes: Packages heads up and Poudriere errors References: In-Reply-To: --fjOOUqulmcNKeEdl94ATvRi8ErUwUdJs4 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 5/26/2017 8:20 AM, Bryan Drewery wrote: > For those running FreeBSD head, the ABI was majorly changed in r318736 > for 64-bit inodes. This change was *backwards compatible* but not > *forward compatible*. This is normal and expected. >=20 > For Pkg users: >=20 > You are advised to upgrade your system past r318736 soon or avoid using= > official packages until you do. Portmgr may upgrade the package > builders at any time and without much notice. I had forgotten a detail here. The package builds are all automated. The source jails are automatically updated before a build. The package builder's kernel doesn't matter here. So head package builds _will_ be ABI broken for systems older than r318736 either now or in the next day or two once the builds finish and upload to the mirrors. --=20 Regards, Bryan Drewery --fjOOUqulmcNKeEdl94ATvRi8ErUwUdJs4-- --TJbc8Ih6ujQfuI4kQNuXoOhaAM10LGf9g 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 iQEcBAEBAgAGBQJZKHAhAAoJEDXXcbtuRpfP1KMIAMJe30SZBe4ASGyGhPafUEzW yJx9ZPvHjno1dHedMTE1MKtdzc0PFCrr6K9DCKqNfVgfgqRc5rJGKKVwwTyw/ufj 0llOvcfUjlDgZ62ShUrP/v2CO31hrzZWONfFX7+SrFQdUwz1KJRuJQivPD+OpZ/U 4o6YK4OF4m+bgVvnc3QLLcqyvvZCq3g7akB7xk7umDdZ7sbGol9GBRfF310yQ8fA oNIiXzTXQIExR836PoO5l3awE+Uug/QLcQkRSxc7dqDlmlMXVvjA6HZsFLRK8dK7 Wkf7OBJH9z16/xltjSZ9sVVKj9KawXqB7DzJLK//WMTYeetSGK5SQzIxwGv16sg= =tyA2 -----END PGP SIGNATURE----- --TJbc8Ih6ujQfuI4kQNuXoOhaAM10LGf9g-- From owner-freebsd-ports@freebsd.org Fri May 26 18:41: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 3E3BED83536 for ; Fri, 26 May 2017 18:41:36 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from mail.protected-networks.net (mail.protected-networks.net [IPv6:2001:470:8d59:1::8]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protected-networks.net", Issuer "Protected Networks CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 119B514C8; Fri, 26 May 2017 18:41:36 +0000 (UTC) (envelope-from imb@protected-networks.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= protected-networks.net; h=content-transfer-encoding :content-language:content-type:content-type:mime-version :user-agent:date:date:message-id:subject:subject:from:from; s= 201508; t=1495824086; bh=NflXE6tjwBH61FlmAvuUPD1SBKAgtV5rrNwL8Ug 0DWQ=; b=o9TbJAWKZEcEdCSV+SQx454I6q1705KmkMeg1EJ8tHMtnQ8VKRbYOpi fO8n9WUAeAHHIin2ooriqBx08r+8cOBWkfNTTuzXl3qbajzRxDnOB5VkgjeIvJkG 4G9KePhHN6nZlhLUWXfgmhRZb9kpg4WsbBObwBeLi7LgfDKi4m7M= Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [192.168.1.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: imb@mail.protected-networks.net) by mail.protected-networks.net (Postfix) with ESMTPSA id C07E035920; Fri, 26 May 2017 14:41:26 -0400 (EDT) To: FreeBSD Ports Cc: sunpoet@FreeBSD.org From: Michael Butler Subject: texinfo build failure Openpgp: id=6F63E6399DCC8E3E94D60F0642FF6BAE0442D492 Message-ID: Date: Fri, 26 May 2017 14:41:25 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US 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, 26 May 2017 18:41:36 -0000 Is anyone else seeing this failure to build texinfo on -CURRENT? cd doc && gmake TEXMF=/usr/local/share/texmf install-tex gmake[3]: Entering directory '/usr/ports/print/texinfo/work/texinfo-6.3/doc' test -n "/usr/local/share/texmf" || (echo "TEXMF must be set." >&2; exit 1) /bin/sh /usr/ports/print/texinfo/work/texinfo-6.3/build-aux/install-sh -d /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/texinfo /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/generic/epsf install -m 0644 ./texinfo.tex /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/texinfo/texinfo.tex install -m 0644 ./epsf.tex /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/generic/epsf/epsf.tex for f in txi-ca.tex txi-cs.tex txi-de.tex txi-en.tex txi-es.tex txi-fr.tex txi-hu.tex txi-is.tex txi-it.tex txi-ja.tex txi-nb.tex txi-nl.tex txi-nn.tex txi-pl.tex txi-pt.tex txi-ru.tex txi-sr.tex txi-tr.tex txi-uk.tex; do \ install -m 0644 ./$f /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/texinfo/$f; done gmake[3]: Leaving directory '/usr/ports/print/texinfo/work/texinfo-6.3/doc' gmake[2]: Leaving directory '/usr/ports/print/texinfo/work/texinfo-6.3' install -m 0644 /usr/ports/distfiles/texinfo/6.3/htmlxref.cnf /usr/ports/print/texinfo/work/stage/usr/local/share/texinfo /bin/rmdir /usr/ports/print/texinfo/work/stage/usr/local/lib/texinfo rmdir: /usr/ports/print/texinfo/work/stage/usr/local/lib/texinfo: No such file or directory *** Error code 1 Stop. make[1]: stopped in /usr/ports/print/texinfo *** Error code 1 Stop. make: stopped in /usr/ports/print/texinfo ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20170526-91663-1k3i9m0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=texinfo-6.3_1,1 UPGRADE_PORT_VER=6.3_1,1 make ** Fix the problem and try again. From owner-freebsd-ports@freebsd.org Sat May 27 10:00:11 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 ABE18D83077 for ; Sat, 27 May 2017 10:00:11 +0000 (UTC) (envelope-from peo@intersonic.se) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 98EAB16C9 for ; Sat, 27 May 2017 10:00:11 +0000 (UTC) (envelope-from peo@intersonic.se) Received: by mailman.ysv.freebsd.org (Postfix) id 985A9D83076; Sat, 27 May 2017 10:00:11 +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 980C2D83074 for ; Sat, 27 May 2017 10:00:11 +0000 (UTC) (envelope-from peo@intersonic.se) Received: from neonpark.inter-sonic.com (neonpark.inter-sonic.com [212.247.8.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "neonpark.inter-sonic.com", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5FF0C16C8 for ; Sat, 27 May 2017 10:00:10 +0000 (UTC) (envelope-from peo@intersonic.se) X-Virus-Scanned: amavisd-new at Intersonic AB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intersonic.se; s=INTERSONICSE; t=1495878771; bh=AZ3DW0twZwAbq0UNwWzPsp/HEeis3ZnbC6GjXZ6R3iI=; h=To:From:Subject:Date; b=mVqMu4c99XlVc1yPzqksR34LCpritABVWMWDM4P6H0+cGHAlhUUh/8rPJkD7yeWMB dYyc/n8j8ZQU4DSE/VEZ/ZROu1XjRwbYhSEAh8hbwKpj1znbvesWoP287vDaWGv+UP pxvllZ6u5RHMCXdA7Yjfdytsq8O6FYsnQwK8cqNk= To: ports@freebsd.org From: Per olof Ljungmark Subject: cyrus-imapd24-2.4.19_1 is marked as broken: Patch is not applicable. Organization: Intersonic AB Message-ID: Date: Sat, 27 May 2017 11:52:49 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US 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: Sat, 27 May 2017 10:00:11 -0000 Is a fix for this coming? Thanks, From owner-freebsd-ports@freebsd.org Sat May 27 12:02: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 493D7D84AEB for ; Sat, 27 May 2017 12:02:59 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 2E8FF179F for ; Sat, 27 May 2017 12:02:59 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2DE50D84AEA; Sat, 27 May 2017 12:02:59 +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 2D839D84AE9 for ; Sat, 27 May 2017 12:02:59 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mx1.mailbox.org (mx1.mailbox.org [80.241.60.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.mailbox.org", Issuer "SwissSign Server Silver CA 2014 - G22" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E3E14179E; Sat, 27 May 2017 12:02:58 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id 87ADA45553; Sat, 27 May 2017 13:56:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mailbox.org; h= content-type:content-type:mime-version:references:in-reply-to :subject:subject:from:from:message-id:date:date:received; s= mail20150812; t=1495886167; bh=IvFerVgA+u0XoN23OJzGXqVmx70kbNgrQ TdmR2xMITg=; b=oJH4eBLLnSChpTtrJ1EGADMZjF2rATf6F507q4bmHeU70TlUl kDoK0P3QtjoAx5VTSkjp/Xzgly4MIru8gxik6TbOJaW8PpFB7pWq9h7cqaNDyLOv Gv6TM1vKqmGjzoc6KY70eyWzXjjvUgQpPgeQi3YrRwMYe0UnYdHBitmvH7wAQlbr FH8IlA+bNBtcCBWHA97d6Jhj4vBn/6PTlgmXNw2ob9GNUjhpnPNnHUyFCDBoPkYo IoTxgWPX0CejCw9QFpJMZ+IkQz/cI0C3ZBE5dMeGllvaA6CsFmSu42C1w2o+h1mR qnUl8M9rqKunaFN4iLygLz9vRthB0sAEj7hrA== X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by spamfilter03.heinlein-hosting.de (spamfilter03.heinlein-hosting.de [80.241.56.117]) (amavisd-new, port 10030) with ESMTP id ti5lxFGhtmtc; Sat, 27 May 2017 13:56:07 +0200 (CEST) Date: Sat, 27 May 2017 13:56:06 +0200 Message-ID: <87vaom8qeh.wl-herbert@mailbox.org> From: "Herbert J. Skuhra" To: ports@freebsd.org Cc: Per olof Ljungmark , ume@FreeBSD.org Subject: Re: cyrus-imapd24-2.4.19_1 is marked as broken: Patch is not applicable. In-Reply-To: References: MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII 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, 27 May 2017 12:02:59 -0000 Per olof Ljungmark skrev: > > Is a fix for this coming? > Thanks, Why are you still using 2.4.x? The AUTOCREATE patch was obviously created for 2.3.x in 2010 and later updated by mm@ for 2.4. It seems there is only a tiny change required: - Modify cyrus-imapd-2.4.4-autocreate-0.10-0.patch in /usr/ports/distfiles: --- cyrus-imapd-2.4.4-autocreate-0.10-0.patch.bak 2017-05-27 13:32:07.313215000 +0200 +++ cyrus-imapd-2.4.4-autocreate-0.10-0.patch 2017-05-27 13:38:55.245649000 +0200 @@ -249,11 +249,11 @@ mupdate_err.h: mupdate_err.c ### Services --idled: idled.o mutex_fake.o libimap.a $(DEPLIBS) -+idled: idled.o mutex_fake.o libimap.a $(SIEVE_LIBS) $(DEPLIBS) +-idled: idled.o idlemsg.o mutex_fake.o libimap.a $(DEPLIBS) ++idled: idled.o idlemsg.o mutex_fake.o libimap.a $(SIEVE_LIBS) $(DEPLIBS) $(CC) $(LDFLAGS) -o idled \ -- idled.o mutex_fake.o libimap.a $(DEPLIBS) $(LIBS) -+ idled.o mutex_fake.o libimap.a $(SIEVE_LIBS) $(DEPLIBS) $(LIBS) +- idled.o idlemsg.o mutex_fake.o libimap.a $(DEPLIBS) $(LIBS) ++ idled.o idlemsg.o mutex_fake.o libimap.a $(SIEVE_LIBS) $(DEPLIBS) $(LIBS) lmtpd: lmtpd.o proxy.o $(LMTPOBJS) $(SIEVE_OBJS) mutex_fake.o \ libimap.a $(SIEVE_LIBS) $(DEPLIBS) $(SERVICE) - Patch the port: Index: mail/cyrus-imapd24/Makefile =================================================================== --- mail/cyrus-imapd24/Makefile (revision 441838) +++ mail/cyrus-imapd24/Makefile (working copy) @@ -103,7 +103,7 @@ AUTOCREATE_VERSION= 0.10-0 AUTOCREATE_PATCH_SITES= LOCAL/mm:autocreate AUTOCREATE_PATCHFILES= ${PORTNAME}-2.4.4-autocreate-${AUTOCREATE_VERSION}.patch:-p1:autocreate -AUTOCREATE_BROKEN= Patch is not applicable +#AUTOCREATE_BROKEN= Patch is not applicable AUTOSIEVE_VERSION= 0.6.0 AUTOSIEVE_PATCH_SITES= LOCAL/mm:autosieve Index: mail/cyrus-imapd24/distinfo =================================================================== --- mail/cyrus-imapd24/distinfo (revision 441838) +++ mail/cyrus-imapd24/distinfo (working copy) @@ -1,7 +1,7 @@ TIMESTAMP = 1494954318 SHA256 (cyrus-imapd-2.4.19.tar.gz) = 5ef3cef8e394901fba162f14eb43f5e364b266234eff28d17273303c019f8ef1 SIZE (cyrus-imapd-2.4.19.tar.gz) = 2488567 -SHA256 (cyrus-imapd-2.4.4-autocreate-0.10-0.patch) = 1130e80b6604901ba8cf887c792fa8e4ef181b4cfc212720bcfc984163fe8a13 -SIZE (cyrus-imapd-2.4.4-autocreate-0.10-0.patch) = 74039 +SHA256 (cyrus-imapd-2.4.4-autocreate-0.10-0.patch) = a42015ac045a8cae6e6aff51728731e14154bf3932acb04875143970ff379263 +SIZE (cyrus-imapd-2.4.4-autocreate-0.10-0.patch) = 74079 SHA256 (cyrus-imapd-2.4.12-autosieve-0.6.0.patch) = daafab6c1a824d1d16745ea25a0bb6e404655ef690961e1dc236805e5c923135 SIZE (cyrus-imapd-2.4.12-autosieve-0.6.0.patch) = 7626 Untested as I am not using Cyrus-imapd. -- Herbert From owner-freebsd-ports@freebsd.org Sat May 27 13:00: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 0CD19D85B4B for ; Sat, 27 May 2017 13:00:51 +0000 (UTC) (envelope-from peo@intersonic.se) Received: from neonpark.inter-sonic.com (neonpark.inter-sonic.com [212.247.8.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "neonpark.inter-sonic.com", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C75511493 for ; Sat, 27 May 2017 13:00:50 +0000 (UTC) (envelope-from peo@intersonic.se) X-Virus-Scanned: amavisd-new at Intersonic AB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intersonic.se; s=INTERSONICSE; t=1495890047; bh=xBH8a/na8r/XzjrVHbIo+AAnPVSWSZpovGA4weuBQJo=; h=Subject:To:References:From:Date:In-Reply-To; b=NRf3AcW79VrZ8W98wtxcuN2hwwfPXvbukkr5HKO0RetEkN4F02UBmQA4ZfHKsJqhF egbmL6CPkcB0WQZ2OqfBPSkZrpZb0c7XG/nI1SMPHNVlQOQqH3n52ku2aPekipwTdC 5Ns1Txrb493r1UwKGG/62FGduPzei0/kUh5NNz48= Subject: Re: cyrus-imapd24-2.4.19_1 is marked as broken: Patch is not applicable. To: freebsd-ports@freebsd.org References: <87vaom8qeh.wl-herbert@mailbox.org> From: Per olof Ljungmark Organization: Intersonic AB Message-ID: Date: Sat, 27 May 2017 15:00:41 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.0 MIME-Version: 1.0 In-Reply-To: <87vaom8qeh.wl-herbert@mailbox.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US 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: Sat, 27 May 2017 13:00:51 -0000 On 2017-05-27 13:56, Herbert J. Skuhra wrote: > Per olof Ljungmark skrev: >> >> Is a fix for this coming? >> Thanks, > > Why are you still using 2.4.x? > Thanks. Good question, I will test 2.5 over the weekend and if all fine upgrade. 2.4 still gets support however, upgrading mail servers is not always without problems. //per From owner-freebsd-ports@freebsd.org Sat May 27 14:28: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 05A01D844A2 for ; Sat, 27 May 2017 14:28:14 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (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 B53261C01 for ; Sat, 27 May 2017 14:28:13 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [88.217.104.99] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.86_2) (envelope-from ) id 1dEchG-00032C-WD for freebsd-ports@freebsd.org; Sat, 27 May 2017 16:28:03 +0200 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.unixarea.de (8.15.2/8.14.9) with ESMTPS id v4RES2Rs006488 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 27 May 2017 16:28:02 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.15.2/8.14.9/Submit) id v4RES1UK006484 for freebsd-ports@freebsd.org; Sat, 27 May 2017 16:28:01 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Sat, 27 May 2017 16:28:01 +0200 From: Matthias Apitz To: freebsd-ports@freebsd.org Subject: usage of "poudriere bulk -c ...." Message-ID: <20170527142801.GA3867@c720-r314251> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline X-Operating-System: FreeBSD 12.0-CURRENT r314251 (amd64) User-Agent: Mutt/1.8.0 (2017-02-23) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 88.217.104.99 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, 27 May 2017 14:28:14 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello I have built ports with: # poudriere bulk -f poudriere-list -J 8 -j freebsd-r314251 -p ports-201= 70519 and I now want to remove the packages and logs of this jail+port, but not of other ports tree built with the same jail freebsd-r314251; the man page of poudriere says about the flag -c that it will "Clean _all_ previously built packages and logs." which is perhaps not what I want to do, or is the man page not precise enough? What is the correct way to remove freebsd-r314251-ports-20170519 pkg and logs? Thanks matthias --=20 Matthias Apitz, =E2=9C=89 guru@unixarea.de, =E2=8C=82 http://www.unixarea.d= e/ =E2=98=8E +49-176-38902045 Public GnuPG key: http://www.unixarea.de/key.pub --liOOAslEiF7prFVr Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEXmn7rBYYViyzy/vBR8z35Hb+nREFAlkpjOkACgkQR8z35Hb+ nRGnYhAAh3OUrl2wouDK1MMeFPWBujfJithYT80BOEP97QoJbcfxBtKpyR1VGGBx EWNgk4WQmdDVi0wkmSehCWqGMMZiV1xH3b3wTLD+QtYdejiE97GNw6eHDq+QPxCX BHnm+8vtPdpasljTGGfy34lSkMU9JcyKEJBaNyyxW8JTKOnAwF0+wbgi/y/cHETB naqnXacgLr0B+ASPVXsEwMc+KZjL9fRqImKfRHpsTLihxJFEYdbYLtOZC9Uc0Q7q KQUNZJFd6peDWNt+GUZ5dXZpPowOQC7pHxKQuA3weIdhL1jpRyJGTp7JFydvnKLY ySOnt9tlB64i/ZYYDHhVZJqqmrbPyEip3ihTvflNh8/k5Sd7NWaSINZDGiNczsoa j7/U2hnxuM+mLx8QcmZ+5tqSq0/L3gcCDuxa0kDWPnXKJSE0nxlOXoMmQw+jSoax 8KP+lblY8thYIoy1SZcvzNsUU3Q15vlwUHcdVXjaJWJQnsTWzkOdn8qy68pzTg+2 vw1FdzdUA99eZUFlfbf/K9KQYSLz4Jr9QY/Vvhde18oCdIg7gSnUSD7XU2XniP4U 8vSJTCgqonSLIx3RjWKVH1pZqO8Uh1jjflB5QgfGla2cQ1p2xSe7cRQSTOsbepUA H0LhFbF3OBcGdUmK4/tOKK9Jb8Uk6kFMPh1tVSAI/80rGWo2swM= =Vk8h -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- From owner-freebsd-ports@freebsd.org Sat May 27 14:58: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 1A41CD84F7C for ; Sat, 27 May 2017 14:58:01 +0000 (UTC) (envelope-from oleg@theweb.org.ua) Received: from oleg.opentransfer.com (oleg.opentransfer.com [91.217.144.197]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "oleg-10.opentransfer.com", Issuer "oleg-10.opentransfer.com" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 926F719DC for ; Sat, 27 May 2017 14:57:59 +0000 (UTC) (envelope-from oleg@theweb.org.ua) Received: from asus.theweb.org.ua ([10.0.8.4]) by oleg.opentransfer.com (8.15.2/8.15.2) with ESMTPS id v4REgnRC058883 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Sat, 27 May 2017 17:42:52 +0300 (EEST) (envelope-from oleg@theweb.org.ua) Received: from asus.theweb.org.ua (localhost [127.0.0.1]) by asus.theweb.org.ua (8.15.2/8.15.2) with ESMTPS id v4REa8tC006138 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 27 May 2017 17:36:08 +0300 (EEST) (envelope-from oleg@theweb.org.ua) Received: (from oleg@localhost) by asus.theweb.org.ua (8.15.2/8.15.2/Submit) id v4REa8rO006137 for freebsd-ports@freebsd.org; Sat, 27 May 2017 17:36:08 +0300 (EEST) (envelope-from oleg@theweb.org.ua) X-Authentication-Warning: asus.theweb.org.ua: oleg set sender to oleg@theweb.org.ua using -f From: "Oleg V. Nauman" To: freebsd-ports@freebsd.org Subject: Re: texinfo build failure Date: Sat, 27 May 2017 17:36:08 +0300 Message-ID: <2046343.JRStmVWEfy@asus.theweb.org.ua> Organization: Private person User-Agent: KMail/4.14.10 (FreeBSD/12.0-CURRENT; KDE/4.14.30; amd64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: Sat, 27 May 2017 14:58:01 -0000 On Friday 26 May 2017 14:41:25 Michael Butler wrote: > Is anyone else seeing this failure to build texinfo on -CURRENT? Yes I see the same failure. My system is i386 12.0-CURRENT r318856 ( ino64 world ). >=20 > cd doc && gmake TEXMF=3D/usr/local/share/texmf install-tex > gmake[3]: Entering directory '/usr/ports/print/texinfo/work/texinfo-6= .3/doc' > test -n "/usr/local/share/texmf" || (echo "TEXMF must be set." >&2; e= xit 1) > /bin/sh /usr/ports/print/texinfo/work/texinfo-6.3/build-aux/install-s= h -d > /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/texinfo= > /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/generic= /epsf > install -m 0644 ./texinfo.tex > /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/texinfo= /texinf > o.tex install -m 0644 ./epsf.tex > /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/generic= /epsf/e > psf.tex for f in txi-ca.tex txi-cs.tex txi-de.tex txi-en.tex txi-es.t= ex > txi-fr.tex txi-hu.tex txi-is.tex txi-it.tex txi-ja.tex txi-nb.tex > txi-nl.tex txi-nn.tex txi-pl.tex txi-pt.tex txi-ru.tex txi-sr.tex > txi-tr.tex txi-uk.tex; do \ > install -m 0644 ./$f > /usr/ports/print/texinfo/work/stage/usr/local/share/texmf/tex/texinfo= /$f; > done > gmake[3]: Leaving directory '/usr/ports/print/texinfo/work/texinfo-6.= 3/doc' > gmake[2]: Leaving directory '/usr/ports/print/texinfo/work/texinfo-6.= 3' > install -m 0644 /usr/ports/distfiles/texinfo/6.3/htmlxref.cnf > /usr/ports/print/texinfo/work/stage/usr/local/share/texinfo > /bin/rmdir /usr/ports/print/texinfo/work/stage/usr/local/lib/texinfo > rmdir: /usr/ports/print/texinfo/work/stage/usr/local/lib/texinfo: No > such file or directory > *** Error code 1 >=20 > Stop. > make[1]: stopped in /usr/ports/print/texinfo > *** Error code 1 >=20 > Stop. > make: stopped in /usr/ports/print/texinfo > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade20170526-91663-1k3i9m0 env UPGRADE_TOOL=3Dportupgrade= > UPGRADE_PORT=3Dtexinfo-6.3_1,1 UPGRADE_PORT_VER=3D6.3_1,1 make > ** Fix the problem and try again. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.o= rg" --=20 =D0=9D=D0=B0=D1=83=D0=BC=D0=B0=D0=BD =D0=9E=D0=BB=D0=B5=D0=B3 From owner-freebsd-ports@freebsd.org Sat May 27 15:13: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 14BD0D853EB for ; Sat, 27 May 2017 15:13:54 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from apnoea.adamw.org (apnoea.adamw.org [104.225.5.94]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "apnoea.adamw.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3173F130A for ; Sat, 27 May 2017 15:13:52 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by apnoea.adamw.org (OpenSMTPD) with ESMTPSA id cbb1bbb3 TLS version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Sat, 27 May 2017 09:13:50 -0600 (MDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: usage of "poudriere bulk -c ...." From: Adam Weinberger In-Reply-To: <20170527142801.GA3867@c720-r314251> Date: Sat, 27 May 2017 09:13:47 -0600 Cc: freebsd-ports@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <4F10DE6F-8338-452C-9591-C04D015CEA93@adamw.org> References: <20170527142801.GA3867@c720-r314251> To: Matthias Apitz X-Mailer: Apple Mail (2.3273) 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, 27 May 2017 15:13:54 -0000 > On 27 May, 2017, at 8:28, Matthias Apitz wrote: >=20 >=20 > Hello >=20 > I have built ports with: >=20 > # poudriere bulk -f poudriere-list -J 8 -j freebsd-r314251 -p = ports-20170519 >=20 > and I now want to remove the packages and logs of this jail+port, but = not of > other ports tree built with the same jail freebsd-r314251; >=20 > the man page of poudriere says about the flag -c that it will "Clean = _all_ > previously built packages and logs." which is perhaps not what I want = to > do, or is the man page not precise enough? What is the correct way to > remove freebsd-r314251-ports-20170519 pkg and logs? >=20 > Thanks >=20 > matthias -c won't do what you want because it just removes the packages prior to = rebuilding them again, though if you kill poudriere right after it = deletes the old packages you're okay. In that case, you can try using -C = instead, which removes just the packages specified. So "-C -f = poudriere-list" will remove all the packages in poudriere-list, but not = any of their dependencies. Just remember to CTRL-c it before it rebuilds = them! If you have the packages you want to keep in other lists, you can use = them with pkgclean: poudriere pkgclean -f list-of-ports-to-keep -f = other-list-of-ports-to-keep In the future, to minimize polluting your package space, consider doing = test builds within a new jail, or use sets (with -z) to keep them = separate. See poudriere(8) for some pointers on using sets. # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Sat May 27 16:36: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 C96EDD8362D for ; Sat, 27 May 2017 16:36:22 +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 B6F1E1693 for ; Sat, 27 May 2017 16:36:22 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id B36A0D8362C; Sat, 27 May 2017 16:36:22 +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 B30EDD8362B for ; Sat, 27 May 2017 16:36:22 +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 A63F41692 for ; Sat, 27 May 2017 16:36:22 +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 v4RGaMdK092409 for ; Sat, 27 May 2017 16:36:22 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id v4RGaM87092407; Sat, 27 May 2017 16:36:22 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201705271636.v4RGaM87092407@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, 27 May 2017 16:36:22 +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, 27 May 2017 16:36:22 -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 ------------------------------------------------+-----------------+------------ multimedia/mkvalidator | 0.5.0 | 0.5.1 ------------------------------------------------+-----------------+------------ x11-themes/adwaita-qt4 | 0.98 | 1.0 ------------------------------------------------+-----------------+------------ x11-themes/adwaita-qt5 | 0.98 | 1.0 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Sat May 27 16:44: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 182EDD83C1C for ; Sat, 27 May 2017 16:44:42 +0000 (UTC) (envelope-from fbsd@www.zefox.net) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 06FF91FBC for ; Sat, 27 May 2017 16:44:42 +0000 (UTC) (envelope-from fbsd@www.zefox.net) Received: by mailman.ysv.freebsd.org (Postfix) id 06709D83C19; Sat, 27 May 2017 16: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 0609BD83C17; Sat, 27 May 2017 16:44:42 +0000 (UTC) (envelope-from fbsd@www.zefox.net) Received: from www.zefox.net (www.zefox.net [69.239.235.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "www.zefox.org", Issuer "www.zefox.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C5AD81FBB; Sat, 27 May 2017 16:44:41 +0000 (UTC) (envelope-from fbsd@www.zefox.net) Received: from www.zefox.net (localhost [127.0.0.1]) by www.zefox.net (8.15.2/8.15.2) with ESMTPS id v4RGibwN047429 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 27 May 2017 09:44:38 -0700 (PDT) (envelope-from fbsd@www.zefox.net) Received: (from fbsd@localhost) by www.zefox.net (8.15.2/8.15.2/Submit) id v4RGibXQ047428; Sat, 27 May 2017 09:44:37 -0700 (PDT) (envelope-from fbsd) Date: Sat, 27 May 2017 09:44:37 -0700 From: bob prohaska To: ports@freebsd.org, freebsd-arm@freebsd.org Subject: libGL error: unable to load driver: swrast_dri.so Message-ID: <20170527164437.GA47374@www.zefox.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) 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, 27 May 2017 16:44:42 -0000 On an RPI2 www/epiphany finally compiled using portmaster. When started it runs (somewhat) but reports libGL error: unable to load driver: swrast_dri.so Web searches suggest it's something to do with an Nvidia driver, which seems inapplicable to an RPI2. Is there a workaround? /usr/ports are at 441746, /usr/src is at 318674. Thanks for reading, bob prohaska From owner-freebsd-ports@freebsd.org Sat May 27 17:12: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 C06D6D84852 for ; Sat, 27 May 2017 17:12:32 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms-10.1blu.de (ms-10.1blu.de [178.254.4.101]) (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 854C51FF5 for ; Sat, 27 May 2017 17:12:31 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from [88.217.104.99] (helo=localhost.unixarea.de) by ms-10.1blu.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.86_2) (envelope-from ) id 1dEfGO-0004dT-Eq for freebsd-ports@freebsd.org; Sat, 27 May 2017 19:12:28 +0200 Received: from localhost.my.domain (localhost [127.0.0.1]) by localhost.unixarea.de (8.15.2/8.14.9) with ESMTPS id v4RHCR2i065775 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 27 May 2017 19:12:27 +0200 (CEST) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by localhost.my.domain (8.15.2/8.14.9/Submit) id v4RHCRIk065774 for freebsd-ports@freebsd.org; Sat, 27 May 2017 19:12:27 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: localhost.my.domain: guru set sender to guru@unixarea.de using -f Date: Sat, 27 May 2017 19:12:27 +0200 From: Matthias Apitz To: freebsd-ports@freebsd.org Subject: Re: usage of "poudriere bulk -c ...." Message-ID: <20170527171227.GA64079@c720-r314251> Reply-To: Matthias Apitz Mail-Followup-To: Matthias Apitz , freebsd-ports@freebsd.org References: <20170527142801.GA3867@c720-r314251> <4F10DE6F-8338-452C-9591-C04D015CEA93@adamw.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <4F10DE6F-8338-452C-9591-C04D015CEA93@adamw.org> X-Operating-System: FreeBSD 12.0-CURRENT r314251 (amd64) User-Agent: Mutt/1.8.0 (2017-02-23) X-Con-Id: 51246 X-Con-U: 0-guru X-Originating-IP: 88.217.104.99 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, 27 May 2017 17:12:32 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable El d=C3=ADa s=C3=A1bado, mayo 27, 2017 a las 09:13:47a. m. -0600, Adam Wein= berger escribi=C3=B3: > -c won't do what you want because it just removes the packages prior to r= ebuilding them again, though if you kill poudriere right after it deletes t= he old packages you're okay. In that case, you can try using -C instead, wh= ich removes just the packages specified. So "-C -f poudriere-list" will rem= ove all the packages in poudriere-list, but not any of their dependencies. = Just remember to CTRL-c it before it rebuilds them! >=20 > ... Thanks for he explanation. I have in the (ZFS-) file system for poudriere: root@jet:/usr/local/poudriere/data # du -sh packages/* logs/bulk/* 6.4G packages/freebsd-r314251-ports-20170304 4.6G packages/freebsd-r314251-ports-20170519 1.4G logs/bulk/freebsd-r314251-ports-20170304 1.3G logs/bulk/freebsd-r314251-ports-20170519 18M logs/bulk/latest-per-pkg so I will just wipe with rm(1) these two: packages/freebsd-r314251-ports-20170519 logs/bulk/freebsd-r314251-ports-20170519 and start building within the new created jail freebsd-r318593 the ports tr= ee ports-20170519 later on; any comments on this? Thanks matthias --=20 Matthias Apitz, =E2=9C=89 guru@unixarea.de, =E2=8C=82 http://www.unixarea.d= e/ =E2=98=8E +49-176-38902045 Public GnuPG key: http://www.unixarea.de/key.pub --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEXmn7rBYYViyzy/vBR8z35Hb+nREFAlkps3MACgkQR8z35Hb+ nRFNwhAAhezzNTr2v7dZm8f7Sh8jFshJFiBimDQyGYytB8G5/X4inq0ElfSpqSuU JvpwNtU7iOS4aaHYvdLVt7juHWX1j4fvqKzdhiXyRwAqbCPhCfcqNHNi+V6knEvu 3KhJLhAUDfUWtsUdKcBHgZbOPehvkUpxudg7dHpvA/GTLrps3da97buRQazaXZBK C9Bk87sYNaRtm0wPIvqRXndZw/I9MRE1DkPOUh56BmTCfB4eTOuiBIdMswqHyKPS uqtmn7CIo2Yvg4w9hvyvnjosIbGx/CBhPcPisAqIFIWjPRX5UOVp8e+amP4/4gNs GU1tJnO26u/Pr1USUOH1W+MhGZ4hRNq1QFvHFd0apRJGGsb7DA2mcUA9vYvT40ZN EywFSAAT2uJ47XGf/mEQVQQvkK6+muMb3cOK2dPFNCuWW7kBu7XlTOWnzbBgDXrV adC7FnLTAwMH+geCdjphKQiCBNSPZBKaXqzInk9+8AVk0f/noVBkbHReFI98FlLa jolFWVjocxSKWNzqEonSDz8iCEBdp8EmVCoRtZ8bKrg+Uo18buC7oQRWlrZBh8Z+ j+Pv09CRuWr9D6Jw8qxxmlvPy1KNr8V6lu6Dc8kZCRX3eKX9Hgunme5VRD6GXJX0 ja4oIKSqr3qGbAxwciQRBhRUuXPn24c3Ph4tmFUpigljoxCgHZQ= =p0QW -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-freebsd-ports@freebsd.org Sat May 27 19:30: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 8A5D8D8554E for ; Sat, 27 May 2017 19:30:02 +0000 (UTC) (envelope-from jev@ecadlabs.com) Received: from mail-qk0-x230.google.com (mail-qk0-x230.google.com [IPv6:2607:f8b0:400d:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49F741A35 for ; Sat, 27 May 2017 19:30:02 +0000 (UTC) (envelope-from jev@ecadlabs.com) Received: by mail-qk0-x230.google.com with SMTP id y201so27197931qka.0 for ; Sat, 27 May 2017 12:30:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ecadlabs.com; s=google; h=mime-version:from:date:message-id:subject:to; bh=b7//vJzkD2aejBOe58Cz1JFbY55/mn+QvKKDkVa6zuc=; b=YcF6Tx/MOoLGhKVV/nu93hzFmnuATQPRkFnBh3Pdws6v0gkAIv/nEFCkqULR8UKRPV eIS+3UBeKHsk167gC1reFQIi7n5uSCGHAP+/p5o7lQSoSdmcsZD/wb8IayvgYEcKvF+d IQOcpmqxbtMLgxOK6Vs2br7Wze5uqj1pCiMu2KdLs3mx4/v98iEF/LpyF+kw3zN1ts9v g0/WFLEkPynx49WWG3es5YjJLb39qzi6SkxFZwbih7Rp523f7WP9THrPyIJtk83Skkfi tHq0zcV95rRh6StUorc/fCEwho1OTxWcveMhTpNiRjc66p/5ZhVeQLHJpd2c0slLuGkR 0T+A== 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=b7//vJzkD2aejBOe58Cz1JFbY55/mn+QvKKDkVa6zuc=; b=oSWi8bq2G13Im+hIT0c3a1Rex5mIgdgwvljCmdNXorWTOS5y2NfBwf7+qD28KpHrk6 bW7uyntruU9efOZ0D/2RfokQCzTNKekRO0IQRk/WOvZ8eBg5GDhKEjYvrPqQ4p6yjzP1 Pa5KsA5ExLAP0j4lofdIVWZwpRSTxK+jQnttb0dVZ9iJWSwYFQBf+c04SUCT7m4rBc3F A8tzBCCMnJH75bi8TNLIxUY2ahVeZYjbd4QTw8P1rUxqxPw4xVTQl60Js2nt7+0hlxHf 7toQFwXtf6LsOy540bHZfz+Y8iI0+I3fp5s88ByYzTzuFfEpSaRWmhDvh0qfIExoBhZ4 l8fw== X-Gm-Message-State: AODbwcDgB3PRc1RPO9cEW8bRMaRhvVo+zYKihhG8isDnIIbXA+AJtcrB CGs6dDsPdI4rjMlvz+JdoYkZJdWDXSz5AXg= X-Received: by 10.55.86.66 with SMTP id k63mr8583678qkb.46.1495913401311; Sat, 27 May 2017 12:30:01 -0700 (PDT) MIME-Version: 1.0 From: =?UTF-8?Q?Jev_Bj=C3=B6rsell?= Date: Sat, 27 May 2017 19:29:51 +0000 Message-ID: Subject: patch for net-mgmt/prometheus, committer needed To: "freebsd-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, 27 May 2017 19:30:02 -0000 Hi, Can someone take on https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219225 Martin Wilke assigned the bug to himself 16 days ago, but I have not had response from him. Maybe he's on vacation. :) -Jev From owner-freebsd-ports@freebsd.org Sat May 27 20:14: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 9ABB1D8418F for ; Sat, 27 May 2017 20:14:55 +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 6199517C0 for ; Sat, 27 May 2017 20:14:55 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dEi6z-000Lfj-8d; Sat, 27 May 2017 22:14:57 +0200 Date: Sat, 27 May 2017 22:14:57 +0200 From: Kurt Jaeger To: Jev =?iso-8859-1?Q?Bj=F6rsell?= Cc: "freebsd-ports@freebsd.org" Subject: Re: patch for net-mgmt/prometheus, committer needed Message-ID: <20170527201457.GE43031@home.opsec.eu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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, 27 May 2017 20:14:55 -0000 Hi! > Can someone take on https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=219225 Done. -- pi@opsec.eu +49 171 3101372 3 years to go !