From owner-freebsd-ports@freebsd.org Sun May 13 04:38:39 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86DECFB461D for ; Sun, 13 May 2018 04:38:39 +0000 (UTC) (envelope-from jbeich@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 1C45E70A15 for ; Sun, 13 May 2018 04:38:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CC96AFB461A; Sun, 13 May 2018 04:38:38 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92322FB4617; Sun, 13 May 2018 04:38:38 +0000 (UTC) (envelope-from jbeich@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 3D08670A13; Sun, 13 May 2018 04:38:38 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 2A168460; Sun, 13 May 2018 04:38:38 +0000 (UTC) From: Jan Beich To: Stephen Gunn Cc: gecko@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: firefox-60.0_2,1 missing 'Print to LPR' References: Date: Sun, 13 May 2018 06:38:34 +0200 In-Reply-To: (Stephen Gunn's message of "Sat, 12 May 2018 16:23:21 -0500") Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 04:38:39 -0000 --=-=-= Content-Type: text/plain Stephen Gunn writes: > I'm running Firefox 60.0_2,1 on 11.1-RELEASE-p10. In the print > dialog, the option 'Print to LPR' no longer shows up, only 'Print to > File'. If I install firefox-esr, then 'Print to LPR' is again > present. LPR backend doesn't support PDF, so 'Print to LPR' disappeared after Firefox 59 removed GTK_PRINT_CAPABILITY_GENERATE_PS. Try the attached patch to confirm. https://bugzilla.mozilla.org/show_bug.cgi?id=1425188 https://bugzilla.mozilla.org/show_bug.cgi?id=1322653 --=-=-= Content-Type: text/plain Content-Disposition: attachment; filename=patch-revert-bug1425188 Content-Description: A patch to revert bug 1425188. Put under /usr/ports/www/firefox/files/ Revert bug 1425188 in order to restore 'Print to LPR' option. diff --git widget/gtk/nsDeviceContextSpecG.cpp widget/gtk/nsDeviceContextSpecG.cpp index a90f13b43b006..ca2449aa766f5 100644 --- widget/gtk/nsDeviceContextSpecG.cpp +++ widget/gtk/nsDeviceContextSpecG.cpp @@ -150,8 +150,8 @@ already_AddRefed nsDeviceContextSpecGTK::MakePrintTarget() // Determine the real format with some GTK magic if (format == nsIPrintSettings::kOutputFormatNative) { if (mIsPPreview) { - // There is nothing to detect on Print Preview, use PDF. - format = nsIPrintSettings::kOutputFormatPDF; + // There is nothing to detect on Print Preview, use PS. + format = nsIPrintSettings::kOutputFormatPS; } else { return nullptr; } diff --git widget/gtk/nsPrintDialogGTK.cpp widget/gtk/nsPrintDialogGTK.cpp index d499fd2f37729..75ec90c2f9c9a 100644 --- widget/gtk/nsPrintDialogGTK.cpp +++ widget/gtk/nsPrintDialogGTK.cpp @@ -180,6 +180,7 @@ nsPrintDialogWidgetGTK::nsPrintDialogWidgetGTK(nsPIDOMWindowOuter *aParent, | GTK_PRINT_CAPABILITY_REVERSE | GTK_PRINT_CAPABILITY_SCALE | GTK_PRINT_CAPABILITY_GENERATE_PDF + | GTK_PRINT_CAPABILITY_GENERATE_PS ) ); diff --git widget/gtk/nsPrintSettingsGTK.cpp widget/gtk/nsPrintSettingsGTK.cpp index 44dc63375a598..dafab1795d943 100644 --- widget/gtk/nsPrintSettingsGTK.cpp +++ widget/gtk/nsPrintSettingsGTK.cpp @@ -214,12 +214,22 @@ NS_IMETHODIMP nsPrintSettingsGTK::GetOutputFormat(int16_t *aOutputFormat) return rv; } - if (format == nsIPrintSettings::kOutputFormatNative && - GTK_IS_PRINTER(mGTKPrinter)) { - if (gtk_printer_accepts_pdf(mGTKPrinter)) { - format = nsIPrintSettings::kOutputFormatPDF; - } else { - format = nsIPrintSettings::kOutputFormatPS; + if (format == nsIPrintSettings::kOutputFormatNative) { + const gchar* fmtGTK = + gtk_print_settings_get(mPrintSettings, + GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT); + if (fmtGTK) { + if (nsDependentCString(fmtGTK).EqualsIgnoreCase("pdf")) { + format = nsIPrintSettings::kOutputFormatPDF; + } else { + format = nsIPrintSettings::kOutputFormatPS; + } + } else if (GTK_IS_PRINTER(mGTKPrinter)) { + if (gtk_printer_accepts_pdf(mGTKPrinter)) { + format = nsIPrintSettings::kOutputFormatPDF; + } else { + format = nsIPrintSettings::kOutputFormatPS; + } } } @@ -424,7 +434,11 @@ nsPrintSettingsGTK::SetToFileName(const nsAString& aToFileName) return NS_OK; } - gtk_print_settings_set(mPrintSettings, GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT, "pdf"); + if (StringEndsWith(aToFileName, NS_LITERAL_STRING(".ps"))) { + gtk_print_settings_set(mPrintSettings, GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT, "ps"); + } else { + gtk_print_settings_set(mPrintSettings, GTK_PRINT_SETTINGS_OUTPUT_FILE_FORMAT, "pdf"); + } nsCOMPtr file; nsresult rv = NS_NewLocalFile(aToFileName, true, getter_AddRefs(file)); diff --git widget/nsPrintSettingsService.cpp widget/nsPrintSettingsService.cpp index ad50088a48082..df1879ecdbf39 100644 --- widget/nsPrintSettingsService.cpp +++ widget/nsPrintSettingsService.cpp @@ -612,14 +612,6 @@ nsPrintSettingsService::ReadPrefs(nsIPrintSettings* aPS, if (aFlags & nsIPrintSettings::kInitSaveToFileName) { if (GETSTRPREF(kPrintToFileName, str)) { - if (StringEndsWith(str, NS_LITERAL_STRING(".ps"))) { - // We only support PDF since bug 1425188 landed. Users may still have - // prefs with .ps filenames if they last saved a file as Postscript - // though, so we fix that up here. (The pref values will be - // overwritten the next time they save to file as a PDF.) - str.Truncate(str.Length() - 2); - str.AppendLiteral("pdf"); - } aPS->SetToFileName(str); DUMP_STR(kReadStr, kPrintToFileName, str.get()); } --=-=-= Content-Type: text/plain > I strongly suspect it's related to a switch to gtk-3.0 in the most > recent versions of Firefox. I think gtk3 by default expects CUPS > printing, but I'm using LPD. There is supposed to be a way to specify > that you still want printing in the gtk3 settings.ini file, by setting > gtk-print-backends = "lpr, file", but it doesn't work. Upstream appears to only test "cups" and "file". CUPS option is enabled by default in x11-toolkits/gtk30 and x11-toolkits/gtk20. Did /usr/bin/lpr (not /usr/local/bin/lpr from CUPS) really work with your printer? --=-=-=-- From owner-freebsd-ports@freebsd.org Sun May 13 09:43:25 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B3CAFD1501 for ; Sun, 13 May 2018 09:43:25 +0000 (UTC) (envelope-from martin@waschbuesch.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 A518C77282 for ; Sun, 13 May 2018 09:43:24 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: by mailman.ysv.freebsd.org (Postfix) id 64D72FD1500; Sun, 13 May 2018 09:43:24 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 507ECFD14FF for ; Sun, 13 May 2018 09:43:24 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: from relay02.waschbuesch.it (relay02.waschbuesch.it [IPv6:2a00:cba0:100::232]) (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 D1AA77727F for ; Sun, 13 May 2018 09:43:23 +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-Type:From:Sender:Reply-To:Cc:Content-Transfer-Encoding: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=928NYPchN6uxAvFt45xXxJp7PIIoIIMtP+9TeO2J9MA=; b=ooHRy2CXQpgVvOzS5QK1na7lX0 T0g6NFRmXAclvVkVFyFIEsRoSMFiqgc/y9nIvqMe7pmJxKKKo+AQ8liu+lgo/hXxLlGpSn4u/9+OW 3PesvzwSn0iGIJlV1Edfe8D1wNdHJSzqAbq67tUBfTCF7A3QGxV9LWWq8U3j5Wfs2TVo=; Received: by relay02.waschbuesch.it with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim) (envelope-from ) id 1fHnXF-0000Ik-7I for ports@FreeBSD.org; Sun, 13 May 2018 09:43:21 +0000 From: =?utf-8?Q?Martin_Waschb=C3=BCsch?= Mime-Version: 1.0 (Mac OS X Mail 11.3 \(3445.6.18\)) Subject: Committer TLC needed for ports devel/sope4, www/sogo4 and www/sogo4-activesync Message-Id: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> Date: Sun, 13 May 2018 11:43:20 +0200 To: ports@FreeBSD.org X-Mailer: Apple Mail (2.3445.6.18) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 09:43:25 -0000 Hi all, if a committer could have a look at these PRs by Euan Thoms: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227578 = https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227579 = https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227580 = They are for new ports devel/sope4, www/sogo4, www/sogo4-activesync and = need some TLC. ;-) Thanks! Martin= From owner-freebsd-ports@freebsd.org Sun May 13 09:48:11 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 044A7FD18A5 for ; Sun, 13 May 2018 09:48:11 +0000 (UTC) (envelope-from martin@waschbuesch.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 8F6F8786C5 for ; Sun, 13 May 2018 09:48:10 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: by mailman.ysv.freebsd.org (Postfix) id 535B0FD18A4; Sun, 13 May 2018 09:48:10 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42189FD18A3 for ; Sun, 13 May 2018 09:48:10 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: from relay02.waschbuesch.it (relay02.waschbuesch.it [IPv6:2a00:cba0:100::232]) (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 CD891786AC for ; Sun, 13 May 2018 09:48:09 +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=Message-Id:In-Reply-To:To:References:Date: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:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=x/arLjFj3atDqEhOyx49UntBcGSDHWMlP6rait0pJTg=; b=fewylePYuVrN1XfZGgfzqFX7MG qbpH1shR+ujxJEc/FK++K5cNfYlTaBfFPyQgQC7T40KrUgBGDWudz8T5PAeM9hfmy06Xq8jcvudcu ep0gI7dW2XoRMJUzQ0MFSPEhgIiiwOaBurTNBL3TpwDiqyZAzwbeweDHc5vHoVsp/4Bw=; Received: by relay02.waschbuesch.it with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim) (envelope-from ) id 1fHnbs-0000Jz-8r for ports@FreeBSD.org; Sun, 13 May 2018 09:48:08 +0000 From: =?utf-8?Q?Martin_Waschb=C3=BCsch?= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 11.3 \(3445.6.18\)) Subject: Re: Committer TLC needed for ports devel/sope4, www/sogo4 and www/sogo4-activesync Date: Sun, 13 May 2018 11:48:07 +0200 References: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> To: ports@FreeBSD.org In-Reply-To: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> Message-Id: <6C75FFCB-6C58-4C4B-99F8-CE0E192E0775@waschbuesch.de> X-Mailer: Apple Mail (2.3445.6.18) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 09:48:11 -0000 > Am 13.05.2018 um 11:43 schrieb Martin Waschb=C3=BCsch = : >=20 > Hi all, >=20 > if a committer could have a look at these PRs by Euan Thoms: >=20 > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227578 = > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227579 = > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227580 = >=20 > They are for new ports devel/sope4, www/sogo4, www/sogo4-activesync = and need some TLC. ;-) PS: I know that 227579 is waiting for maintainer update, but at least = 227578 could be committed?= From owner-freebsd-ports@freebsd.org Sun May 13 09:55:39 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32D62FD20C3 for ; Sun, 13 May 2018 09:55:39 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C3ACB78F49 for ; Sun, 13 May 2018 09:55:38 +0000 (UTC) (envelope-from lists@opsec.eu) Received: by mailman.ysv.freebsd.org (Postfix) id 82487FD20BE; Sun, 13 May 2018 09:55:38 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70DC8FD20BD for ; Sun, 13 May 2018 09:55:38 +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 096C878F46 for ; Sun, 13 May 2018 09:55:37 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fHnj6-000FGb-SD; Sun, 13 May 2018 11:55:36 +0200 Date: Sun, 13 May 2018 11:55:36 +0200 From: Kurt Jaeger To: Martin =?iso-8859-1?Q?Waschb=FCsch?= Cc: ports@FreeBSD.org Subject: Re: Committer TLC needed for ports devel/sope4, www/sogo4 and www/sogo4-activesync Message-ID: <20180513095536.GA37752@home.opsec.eu> References: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 09:55:39 -0000 Hi! > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227578 There's a devel/sope4 already in the ports. Can you provide a diff if it needs an update or can we close this PR ? > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227579 Testbuilds@work. Please note that bapt sees this version crashing, and no update on that patch about this problem. > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227580 -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Sun May 13 09:57:52 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB8A1FD22CD for ; Sun, 13 May 2018 09:57:52 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 52D33790B5 for ; Sun, 13 May 2018 09:57:50 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 45CBE1A5C3; Sun, 13 May 2018 18:47:52 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id D633323D18; Sun, 13 May 2018 18:47:51 +0900 (JST) Received: from localhost (rolling.home.utahime.org [192.168.174.11]) by eastasia.home.utahime.org (Postfix) with ESMTPSA id 848A923D17; Sun, 13 May 2018 18:47:51 +0900 (JST) Date: Sun, 13 May 2018 18:47:32 +0900 (JST) Message-Id: <20180513.184732.793531577555945177.yasu@utahime.org> To: freebsd-ports@freebsd.org Subject: Bug report commit request From: Yasuhiro KIMURA X-Mailer: Mew version 6.7 on Emacs 25.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 09:57:53 -0000 Dear committers, Would someone please commit following bug report with maintainer timeout? Bug 227497 - devel/dash.el: Update to 2.14.1 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227497 Best Regards. --- Yasuhiro KIMURA From owner-freebsd-ports@freebsd.org Sun May 13 10:05:06 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A194DFD2A6D for ; Sun, 13 May 2018 10:05:06 +0000 (UTC) (envelope-from martin@waschbuesch.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 3ABB77A010 for ; Sun, 13 May 2018 10:05:06 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: by mailman.ysv.freebsd.org (Postfix) id C098AFD2A6C; Sun, 13 May 2018 10:05:05 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B00BFD2A6B for ; Sun, 13 May 2018 10:05:05 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: from relay02.waschbuesch.it (relay02.waschbuesch.it [IPv6:2a00:cba0:100::232]) (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 57FAC79FDD for ; Sun, 13 May 2018 10:05:04 +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=References:To:Cc:In-Reply-To:Date:Subject: Mime-Version:Content-Type:Message-Id:From:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=aDyf7WqBrAwLrn5pjBGajPusunUjfsaE5W+dtDqChjQ=; b=bSQDPvrg5ZFHldBN/g5jvUhAt qiH9XjIAV3cznv0zK8nrDnvXB/bVIJt0YUjr2m9VRyav6+BKisUN97/nux0//eEVZcOM6F/0eUIQP pXMqOVdBKNe1rfrWB7Df0ckfFEiMOoQjq/jD5+hIQ0bBeqmngW5m3c1q5JSKb3Xsi1TVc=; Received: by relay02.waschbuesch.it with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim) (envelope-from ) id 1fHnsC-0000Nc-8O; Sun, 13 May 2018 10:05:00 +0000 From: =?utf-8?Q?Martin_Waschb=C3=BCsch?= Message-Id: <59CFE1F8-0078-482D-8DA8-295C6CE2D796@waschbuesch.de> Mime-Version: 1.0 (Mac OS X Mail 11.3 \(3445.6.18\)) Subject: Re: Committer TLC needed for ports devel/sope4, www/sogo4 and www/sogo4-activesync Date: Sun, 13 May 2018 12:04:59 +0200 In-Reply-To: <20180513095536.GA37752@home.opsec.eu> Cc: ports@FreeBSD.org To: Kurt Jaeger References: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> <20180513095536.GA37752@home.opsec.eu> X-Mailer: Apple Mail (2.3445.6.18) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 10:05:06 -0000 > Am 13.05.2018 um 11:55 schrieb Kurt Jaeger : >=20 > Hi! >=20 >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227578 >=20 > There's a devel/sope4 already in the ports. Can you provide a > diff if it needs an update or can we close this PR ? I=E2=80=99ll look into it. My best guess is that bapt must have committed this one but did not = update the PR? >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227579 >=20 > Testbuilds@work. >=20 > Please note that bapt sees this version crashing, and no update > on that patch about this problem. I am also building these to try and find if I can help iron out = problems, as I have a version that compiles on 11.1. >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227580 = This=E2=80=99ll have to wait until it is unblocked by the other two. Thanks for your help, Kurt! Martin= From owner-freebsd-ports@freebsd.org Sun May 13 10:07:42 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CB1DFD2C37 for ; Sun, 13 May 2018 10:07:42 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2C0CE7AA59 for ; Sun, 13 May 2018 10:07:42 +0000 (UTC) (envelope-from lists@opsec.eu) Received: by mailman.ysv.freebsd.org (Postfix) id E00C1FD2C36; Sun, 13 May 2018 10:07:41 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB74FFD2C35 for ; Sun, 13 May 2018 10:07:41 +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 557067AA58 for ; Sun, 13 May 2018 10:07:41 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fHnuo-000FIt-3l; Sun, 13 May 2018 12:07:42 +0200 Date: Sun, 13 May 2018 12:07:42 +0200 From: Kurt Jaeger To: Martin =?iso-8859-1?Q?Waschb=FCsch?= Cc: ports@FreeBSD.org Subject: Re: Committer TLC needed for ports devel/sope4, www/sogo4 and www/sogo4-activesync Message-ID: <20180513100742.GB37752@home.opsec.eu> References: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> <20180513095536.GA37752@home.opsec.eu> <59CFE1F8-0078-482D-8DA8-295C6CE2D796@waschbuesch.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <59CFE1F8-0078-482D-8DA8-295C6CE2D796@waschbuesch.de> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 10:07:42 -0000 Hi! > >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227578 > > There's a devel/sope4 already in the ports. Can you provide a > > diff if it needs an update or can we close this PR ? > I'll look into it. > My best guess is that bapt must have committed this one but did > not update the PR? acm@ committed it. -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Sun May 13 10:12:47 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A6B3FD3099 for ; Sun, 13 May 2018 10:12:47 +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 127627AE7E for ; Sun, 13 May 2018 10:12:47 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fHnzi-000FJn-H1; Sun, 13 May 2018 12:12:46 +0200 Date: Sun, 13 May 2018 12:12:46 +0200 From: Kurt Jaeger To: Yasuhiro KIMURA Cc: freebsd-ports@freebsd.org Subject: Re: Bug report commit request Message-ID: <20180513101246.GC37752@home.opsec.eu> References: <20180513.184732.793531577555945177.yasu@utahime.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180513.184732.793531577555945177.yasu@utahime.org> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 10:12:47 -0000 Hi! > Would someone please commit following bug report with maintainer > timeout? > > Bug 227497 - devel/dash.el: Update to 2.14.1 > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227497 Testbuilding will take a while. Ideas to speed up the commits: - note if you did testbuilds (if with poudriere, list the OS versions) - note if you did run-tests, on which OS version - add links to the release note (what changes?) -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Sun May 13 11:34:23 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D238FD66D0 for ; Sun, 13 May 2018 11:34:23 +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 91E0484070 for ; Sun, 13 May 2018 11:34:22 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fHpGf-000FRG-KL; Sun, 13 May 2018 13:34:21 +0200 Date: Sun, 13 May 2018 13:34:21 +0200 From: Kurt Jaeger To: Yasuhiro KIMURA Cc: freebsd-ports@freebsd.org Subject: Re: Bug report commit request Message-ID: <20180513113421.GD37752@home.opsec.eu> References: <20180513.184732.793531577555945177.yasu@utahime.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180513.184732.793531577555945177.yasu@utahime.org> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 11:34:23 -0000 Hi! > Would someone please commit following bug report with maintainer > timeout? > > Bug 227497 - devel/dash.el: Update to 2.14.1 > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227497 Done. -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Sun May 13 11:38:54 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD863FD69E6 for ; Sun, 13 May 2018 11:38:54 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 4A2E4841D7 for ; Sun, 13 May 2018 11:38:53 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id 5E4AE1A5E8; Sun, 13 May 2018 20:38:49 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id DDB552515D; Sun, 13 May 2018 20:38:48 +0900 (JST) Received: from localhost (rolling.home.utahime.org [192.168.174.11]) by eastasia.home.utahime.org (Postfix) with ESMTPSA id A095D2515C; Sun, 13 May 2018 20:38:48 +0900 (JST) Date: Sun, 13 May 2018 20:38:38 +0900 (JST) Message-Id: <20180513.203838.2046451995949243663.yasu@utahime.org> To: freebsd-ports@freebsd.org Subject: Re: Bug report commit request From: Yasuhiro KIMURA In-Reply-To: <20180513113421.GD37752@home.opsec.eu> References: <20180513.184732.793531577555945177.yasu@utahime.org> <20180513113421.GD37752@home.opsec.eu> X-Mailer: Mew version 6.7 on Emacs 25.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2018 11:38:55 -0000 From: Kurt Jaeger Subject: Re: Bug report commit request Date: Sun, 13 May 2018 13:34:21 +0200 >> Would someone please commit following bug report with maintainer >> timeout? >> Bug 227497 - devel/dash.el: Update to 2.14.1 >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227497 > Done. Thank you. --- Yasuhiro KIMURA From owner-freebsd-ports@freebsd.org Mon May 14 05:42:38 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20D71FD1AB7 for ; Mon, 14 May 2018 05:42:38 +0000 (UTC) (envelope-from martin@waschbuesch.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 AD9567B693 for ; Mon, 14 May 2018 05:42:37 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: by mailman.ysv.freebsd.org (Postfix) id 67129FD1AB6; Mon, 14 May 2018 05:42:37 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 554E6FD1AB4 for ; Mon, 14 May 2018 05:42:37 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: from relay01.waschbuesch.it (relay01.waschbuesch.it [IPv6:2a00:cba0:100::231]) (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 E27A57B692 for ; Mon, 14 May 2018 05:42:36 +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=References:To:Cc:In-Reply-To:Date:Subject: Mime-Version:Content-Type:Message-Id:From:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=iTw8PHGg/Cj6nURFBUNHtaRpdlFfyroWYOEZFA65eC8=; b=q82YRgLOuaCw26PVk7JrSj1iz YZb0mMU7/i2ayAyC0le4AKEcn/31L8YlJdkR1qJndbANdnG5myG1MtA2jkpluYg+Y4XYQtkZYp8x2 hUcphIgNApbkmrx7jTFtFhSAR6RcynO6jJdIPBd4d+00FlbLEp83wIjNIi+maDQFdQuJs=; Received: by relay01.waschbuesch.it with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim) (envelope-from ) id 1fI6Fh-000Cko-4I; Mon, 14 May 2018 05:42:29 +0000 From: =?utf-8?Q?Martin_Waschb=C3=BCsch?= Message-Id: <7FD09E26-ABD3-4BC5-85F3-48D510014255@waschbuesch.de> Content-Type: multipart/signed; boundary="Apple-Mail=_F9D400CD-91D8-401E-AC6E-82378790D485"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 11.3 \(3445.6.18\)) Subject: Re: Committer TLC needed for ports devel/sope4, www/sogo4 and www/sogo4-activesync Date: Mon, 14 May 2018 07:42:28 +0200 In-Reply-To: <20180513095536.GA37752@home.opsec.eu> Cc: ports@FreeBSD.org To: Kurt Jaeger References: <525505EF-DB4B-4018-9FED-FF1A6C75F043@waschbuesch.de> <20180513095536.GA37752@home.opsec.eu> X-Mailer: Apple Mail (2.3445.6.18) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2018 05:42:38 -0000 --Apple-Mail=_F9D400CD-91D8-401E-AC6E-82378790D485 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii > Am 13.05.2018 um 11:55 schrieb Kurt Jaeger : > > Hi! > >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227578 > > There's a devel/sope4 already in the ports. Can you provide a > diff if it needs an update or can we close this PR ? > >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227579 > > Testbuilds@work. Result on 11.1 portlint: OK poudriere testport: OK I cannot reproduce any problem building this package. How about you? Martin --Apple-Mail=_F9D400CD-91D8-401E-AC6E-82378790D485 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIzBAEBCgAdFiEEdOdqtUI86SfkOJv9fwq2rMzPyEUFAlr5IcQACgkQfwq2rMzP yEUWCA/+JZaw340Ao4kSVt/vf5fqlB91tLZ4LybS+wfcWVuTTMd8fmp67YnAanv8 ksS4r5VfygSnOmbm3aLji/Q2vMnr8vljjUramSOnhftfoUHmH/4WvOvsxfttIGWy 5GhfL1Ypr+XBF0GX5pYBcTb0Ihaxamu/fVsfhNNeKA6swh7/fYsyZ+lBF48PLYO2 a9tKBwhH77Nkr5K7PPHYEEQPUXcCPaB/EhVoTfr2qTxvK8teLs8fdV7weVTGF7jg 67lsTtDaIspfS7A8wpIzb8DNS7Z2JPllVH9hymR20DJidgZaLuwe35NtFKr82Igr cFqeVQ7t2LvUn+RKEIOxsmEFUQBGIlJGYFWBO7HNF2xY58JN/0BSXxcauVtEFj1U cDsPNk6DRitF2S9F2vtyKlACylg+hMaZQY/Og7GOyCbAyhnu40lp1m8axfWU1D9S NWoPxZxKmca/fhOWF+MHS+RVGMpq8NUOai7soshx8LFqMMqkhOR88WisaPzIqIGR eOqlBVLghNVxavBWkWbQXC1r1MPLZUsRUa8Ve+a7KoBt+GZSwvlDS+AqWVa5gLti 6LWASAnxlcFb/BsJVVDgo6glVOJYrdjCr7fGuSadCXO367y+yX1J/+dBxZMFU6FD Xh/WSk5fkXFUZzHAtsgNHuvZKBqCHJKrciHon2VpRLFvpeyGNM0= =KU3w -----END PGP SIGNATURE----- --Apple-Mail=_F9D400CD-91D8-401E-AC6E-82378790D485-- From owner-freebsd-ports@freebsd.org Mon May 14 07:03:04 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FCE2FDD022 for ; Mon, 14 May 2018 07:03:04 +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 9E4D96AC55 for ; Mon, 14 May 2018 07:03:03 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5F277FDD013; Mon, 14 May 2018 07:03:03 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D8C2FDD012 for ; Mon, 14 May 2018 07:03:03 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E46A96AC33 for ; Mon, 14 May 2018 07:03:02 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id DF54F8A9D for ; Mon, 14 May 2018 07:03:01 +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 w4E731Ww001231 for ; Mon, 14 May 2018 07:03:01 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id w4E731cO001230; Mon, 14 May 2018 07:03:01 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201805140703.w4E731cO001230@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: Mon, 14 May 2018 07:03:01 +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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2018 07:03:04 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ audio/pacpl | 5.1.0 | 6.1.0 ------------------------------------------------+-----------------+------------ math/ltl2ba | 1.1 | 1.2 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Mon May 14 23:40:26 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26EC6EA799C for ; Mon, 14 May 2018 23:40:26 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [IPv6:2001:470:8d6f:1001::2]) (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 AE2CB72AED for ; Mon, 14 May 2018 23:40:25 +0000 (UTC) (envelope-from john@saltant.com) Received: from statler.priv.n.saltant.net (unknown [IPv6:2001:470:8d6f:0:1541:3ccf:6339:57b7]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id DFBE31189E for ; Mon, 14 May 2018 19:40:18 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526341219; bh=1gUFLq06SsiAq1ft3CDEULKu9v0TPFsY8fF4NCtd1mA=; h=To:From:Subject:Date; b=Ft5X+vgTYRPQQQKTT/RsPC2VlbQ82YhEUts2B59X30e/0PPzQm6D5APgX32z4HBGz 9C3nKQYvq/ssLWsDM1kD1x57hpIzeIzjG8DM98ywYO2oRd+Fh/aJ6twNslWeqlqSpL JtqpSavtTD21GMbKtFh5FbRGycqJPfV8npIyiuCTWm3RkXKF379VeK1u1KcnDEVVJA By2wRbjrAqdlcqYrI4qxCZ/cEnhNDO8+MsiMKtLoQUkZ/YEI9AkNhpU9RgwZ8xf6CH a09IkRoj1XEZkdzo5S0Cvb7jkwN56Cw9tYZYV4zBjLSnFQTHKt1O0PpWQ5JQXKqUNy sLdPhazw6GIAQ== To: FreeBSD Ports From: "John W. O'Brien" Subject: Practice of "Sponsored by" in commit messages Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: Date: Mon, 14 May 2018 19:40:12 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="CmIm0Q1iMFGRdhu0ETgVSdh76HisTnvTy" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2018 23:40:26 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --CmIm0Q1iMFGRdhu0ETgVSdh76HisTnvTy Content-Type: multipart/mixed; boundary="zk6NYptUzj8eCNuGsVfHp9EbHmbOHWE3W"; protected-headers="v1" From: "John W. O'Brien" To: FreeBSD Ports Message-ID: Subject: Practice of "Sponsored by" in commit messages --zk6NYptUzj8eCNuGsVfHp9EbHmbOHWE3W Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Hello FreeBSD Ports, The Committer's Guide section on Commit Log Messages [0], doesn't cover the use of the "Sponsored by" key word. As a non-committer contributor, it only recently occurred to me to wonder what work that credit is intended to represent, and whether some light definition would be helpful to reduce ambiguity. When a committer credits a sponsor of theirs, from which the contributor received no sponsorship, the portrayal feels a little awkward. Does this strike the list as a problem, and if so, how ought it be solved? To make this concrete, allow me to illustrate the situation. Alice, working on her own time, prepares and contributes a patch. Bob, who works for Acme Corp, reviews and commits the patch on company time. The commit message includes "Sponsored by: Acme Corp". Alice eagerly awaits her check from Acme Corp. Should the commit message have read "Sponsored by: Acme Corp (Bob)"? This could be extensible to multiple sponsorships. If, instead, Alice prepares the patch having received a grant to do so from Best Sys Dev, the commit message could state "Sponsored by: Acme Corp (Bob), Best Sys Dev (Alice)". [0] https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/art= icle.html#commit-log-message PS: I realize that this issue transcends ports, but it's not clear where I should send this instead, and this list seems like it would have a reasonably high concentration of people with a stake in the discussion. --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --zk6NYptUzj8eCNuGsVfHp9EbHmbOHWE3W-- --CmIm0Q1iMFGRdhu0ETgVSdh76HisTnvTy Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr6HmEACgkQWPtK56pP /m637wf/RUeAIi/+hcxcRuz4oa6uojwe2A1TAnjnvIplFpb4Ll/EkUvY37/6wjXA nYjTRwoplFC4G6dtbL6ulRx/QIJWBSEWrtXKR2Xi75Dmg2FIXkKxi8qQPqz6p3F/ mwv5qJcDQG+nJrNKqwpY5G+OqkVAhUG6h+/rxv4xslXO0a1Ie2BqAN1QJZhLqVBq h50Jq8RPlKjIQqf5q8GJmuYiVrucUgjKf0IZfUyqi9c5KlHiSULv0H2oYjRWGeKj M8Byj2f8HqyAvTiq5XzI7qcQI3u53ywehkxu++WjlrZOuiiUxaUDwPAXvZ99djcq gBypr1lxh2eR+hZ9+nAGvFG38Mu/yw== =m6Rr -----END PGP SIGNATURE----- --CmIm0Q1iMFGRdhu0ETgVSdh76HisTnvTy-- From owner-freebsd-ports@freebsd.org Tue May 15 00:25:21 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11900EAA5AB for ; Tue, 15 May 2018 00:25:21 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from vps1.elischer.org (vps1.elischer.org [204.109.63.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "vps1.elischer.org", Issuer "CA Cert Signing Authority" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A6FA37DB8C for ; Tue, 15 May 2018 00:25:20 +0000 (UTC) (envelope-from julian@freebsd.org) Received: from Julian-MBP3.local (124-148-66-42.dyn.iinet.net.au [124.148.66.42]) (authenticated bits=0) by vps1.elischer.org (8.15.2/8.15.2) with ESMTPSA id w4F0PFp3080111 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Mon, 14 May 2018 17:25:18 -0700 (PDT) (envelope-from julian@freebsd.org) Subject: Re: Practice of "Sponsored by" in commit messages To: "John W. O'Brien" , FreeBSD Ports References: From: Julian Elischer Message-ID: <9260b48c-cdeb-e144-b4af-8ea43f730303@freebsd.org> Date: Tue, 15 May 2018 08:25:09 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 00:25:21 -0000 On 15/5/18 7:40 am, John W. O'Brien wrote: > Hello FreeBSD Ports, > > The Committer's Guide section on Commit Log Messages [0], doesn't cover > the use of the "Sponsored by" key word. As a non-committer contributor, > it only recently occurred to me to wonder what work that credit is > intended to represent, and whether some light definition would be > helpful to reduce ambiguity. > > When a committer credits a sponsor of theirs, from which the contributor > received no sponsorship, the portrayal feels a little awkward. Does this > strike the list as a problem, and if so, how ought it be solved? > > To make this concrete, allow me to illustrate the situation. > > Alice, working on her own time, prepares and contributes a patch. Bob, > who works for Acme Corp, reviews and commits the patch on company time. > The commit message includes "Sponsored by: Acme Corp". Alice eagerly > awaits her check from Acme Corp. Should the commit message have read > "Sponsored by: Acme Corp (Bob)"? Probably not for just a review, unless it was pretty in depth and took many hours. However we want to give some sort of acknowledgement to companies that do allow their work to be incorporated, and who allow their employees to do some FreeBSD work as part of their duties. It also makes their name familiar to the readers of the commit emails and often results in others seeking work there etc.  "Sponsored by:"  generally means "some (maybe small) part of this work was developed by someone being paid". It does not specify how much, and it is generally left to the committer to decide if it was meaningful.   In some cases it is deliberately NOT entered despite the developer being paid. (e.g. when a company is in stealth mode, or when some political issue is relevant and people don't want to draw attention). > This could be extensible to multiple sponsorships. If, instead, Alice > prepares the patch having received a grant to do so from Best Sys Dev, > the commit message could state "Sponsored by: Acme Corp (Bob), Best Sys > Dev (Alice)". > > [0] > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/article.html#commit-log-message > > PS: I realize that this issue transcends ports, but it's not clear where > I should send this instead, and this list seems like it would have a > reasonably high concentration of people with a stake in the discussion. > From owner-freebsd-ports@freebsd.org Tue May 15 01:56:26 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD9C7EAE965 for ; Tue, 15 May 2018 01:56:25 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: from mail-ot0-f177.google.com (mail-ot0-f177.google.com [74.125.82.177]) (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 60BB9711D1 for ; Tue, 15 May 2018 01:56:24 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: by mail-ot0-f177.google.com with SMTP id t1-v6so16621717ott.13 for ; Mon, 14 May 2018 18:56:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=OiESzmd+t0mL5YRRAhiMzWpeheCuAcvDk99gcjcALk0=; b=Km0MMlh8qP/C1ZXkj0zeHVhKHn1MN+5r+riX/xhqEkD2c9vAHQ7vPhAGtl3w1eldoZ bVnn3DjWOVbKmetwn4DmyQgzB2wBfCl3bbnTcSBcT7OBClpYgxLbyeLxbCtH8AOGC4xs bfTWAY+kRYQRvlbOHnqP04V0khR19y+x78BSdVUAXRlxx4GYpzIcIc4g6W0fqwhkP4n0 y2auI2RHB8WyIL3tRtfNIyA3vPuEoc2h6KBAiYd86ua+V826mG9xEaBnMZ3Yob45bE1z Hxt0vNk/dMNIj4jJ7HovXGS8yDzRaNi8UjA6O61kPBDJX+xKl4hf5LKSRYXUF7QMInvz jWpw== X-Gm-Message-State: ALKqPweJ8XSawd3N+l6XQOljpQohrrpyou5OL/OIgnrMYoyTcsZiELb/ jpLVzaEyMDr2ZND4tMPF5d28QNpVs6VQg/Nvkp3vLQ== X-Google-Smtp-Source: AB8JxZo+nTkiKyvo3etH0UWkpGmHo755cLkHxn0I8PAhtluhQ7LpaH7OA1t+ntGzRrvuRFW0OSiguz/NRlLn1L+jjXQ= X-Received: by 2002:a9d:48f1:: with SMTP id a46-v6mr8424533otj.94.1526343251635; Mon, 14 May 2018 17:14:11 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Maxim Sobolev Date: Mon, 14 May 2018 17:14:00 -0700 Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: "John W. O'Brien" Cc: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 01:56:26 -0000 What's wrong with a current practice. Why is it of any concern to you, John? Just curious that is not very clear from your message. It is like someone trying to moderate what people in general or some group in particular (e.g. freebsd committers) are allowed to put on their t-shirts just because you find it offensive or inappropriate. -Max On Mon, May 14, 2018, 4:40 PM John W. O'Brien wrote: > Hello FreeBSD Ports, > > The Committer's Guide section on Commit Log Messages [0], doesn't cover > the use of the "Sponsored by" key word. As a non-committer contributor, > it only recently occurred to me to wonder what work that credit is > intended to represent, and whether some light definition would be > helpful to reduce ambiguity. > > When a committer credits a sponsor of theirs, from which the contributor > received no sponsorship, the portrayal feels a little awkward. Does this > strike the list as a problem, and if so, how ought it be solved? > > To make this concrete, allow me to illustrate the situation. > > Alice, working on her own time, prepares and contributes a patch. Bob, > who works for Acme Corp, reviews and commits the patch on company time. > The commit message includes "Sponsored by: Acme Corp". Alice eagerly > awaits her check from Acme Corp. Should the commit message have read > "Sponsored by: Acme Corp (Bob)"? > > This could be extensible to multiple sponsorships. If, instead, Alice > prepares the patch having received a grant to do so from Best Sys Dev, > the commit message could state "Sponsored by: Acme Corp (Bob), Best Sys > Dev (Alice)". > > [0] > > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/article.html#commit-log-message > > PS: I realize that this issue transcends ports, but it's not clear where > I should send this instead, and this list seems like it would have a > reasonably high concentration of people with a stake in the discussion. > > -- > John W. O'Brien > OpenPGP keys: > 0x33C4D64B895DBF3B > > From owner-freebsd-ports@freebsd.org Tue May 15 05:32:03 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C43BEDDC65 for ; Tue, 15 May 2018 05:32:02 +0000 (UTC) (envelope-from dave@horsfall.org) Received: from viclamta11p.bpe.bigpond.com (viclamta11p.bpe.bigpond.com [203.38.21.75]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "", Issuer "Openwave Messaging Inc." (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id E3E3A81E8B for ; Tue, 15 May 2018 05:31:59 +0000 (UTC) (envelope-from dave@horsfall.org) Received: from smtp.telstra.com ([10.10.26.4]) by viclafep11p-svc.bpe.nexus.telstra.com.au with ESMTP id <20180515044804.BMT31472.viclafep11p-svc.bpe.nexus.telstra.com.au@smtp.telstra.com> for ; Tue, 15 May 2018 14:48:04 +1000 X-RG-Spam: Unknown X-RazorGate-Vade: gggruggvucftvghtrhhoucdtuddrgedthedrvdeigdeklecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfupfevtfgpvffgnffuvfftteenuceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhepfffhvffujgfkfhgfgggtsehttddttddtredvnecuhfhrohhmpeffrghvvgcujfhorhhsfhgrlhhluceouggrvhgvsehhohhrshhfrghllhdrohhrgheqnecukfhppeduuddtrddugedurdduleefrddvfeefnecurfgrrhgrmhephhgvlhhopegrnhgvuhhrihhnrdhhohhrshhfrghllhdrohhrghdpihhnvghtpeduuddtrddugedurdduleefrddvfeefpdhmrghilhhfrhhomhepoegurghvvgeshhhorhhsfhgrlhhlrdho X-RG-VS-CLASS: clean Received: from aneurin.horsfall.org (110.141.193.233) by smtp.telstra.com (9.0.019.22-1) id 5A1F320A19234964 for freebsd-ports@freebsd.org; Tue, 15 May 2018 14:48:04 +1000 Received: from aneurin.horsfall.org (localhost [127.0.0.1]) by aneurin.horsfall.org (8.15.2/8.15.2) with ESMTP id w4F4m3lW068062 for ; Tue, 15 May 2018 14:48:03 +1000 (EST) (envelope-from dave@horsfall.org) Received: from localhost (dave@localhost) by aneurin.horsfall.org (8.15.2/8.15.2/Submit) with ESMTP id w4F4m1HU068059 for ; Tue, 15 May 2018 14:48:03 +1000 (EST) (envelope-from dave@horsfall.org) X-Authentication-Warning: aneurin.horsfall.org: dave owned process doing -bs Date: Tue, 15 May 2018 14:48:01 +1000 (EST) From: Dave Horsfall To: FreeBSD Ports Subject: Re: Practice of "Sponsored by" in commit messages In-Reply-To: Message-ID: References: User-Agent: Alpine 2.21.999 (BSF 260 2018-02-26) X-GPG-Public-Key: http://www.horsfall.org/gpgkey.pub X-GPG-Fingerprint: 05B4 FFBC 0218 B438 66E0 587B EF46 7357 EF5E F58B X-Home-Page: http://www.horsfall.org/ X-Witty-Saying: "chmod 666 the_mode_of_the_beast" MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 05:32:03 -0000 On Mon, 14 May 2018, Maxim Sobolev wrote: > It is like someone trying to moderate what people in general or some > group in particular (e.g. freebsd committers) are allowed to put on > their t-shirts just because you find it offensive or inappropriate. Now, where did I put that link to the "t-shirt incident"? :-) -- Dave From owner-freebsd-ports@freebsd.org Tue May 15 07:02:56 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19C74EE39C0 for ; Tue, 15 May 2018 07:02:56 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: from mail-pf0-x233.google.com (mail-pf0-x233.google.com [IPv6:2607:f8b0:400e:c00::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8C6A3750DF for ; Tue, 15 May 2018 07:02:55 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: by mail-pf0-x233.google.com with SMTP id c10-v6so7238392pfi.12 for ; Tue, 15 May 2018 00:02:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=gq+IWpaigtpGWmOSYDKCCnwJyd/acyaGgX89N5iP80o=; b=dOY3MewI7nZTfaw79jcYNQEqFAUDT49LlArDtTNjvzw07/QhdsbXVw0nMh43RLET1q q1I/c3+R4oyqzTeQ5kry86hS3EH6eswwHoKWy4jZJX2tu1aFGmj4UUqAze53NHjSvYGb lt8ns2T6DRDKp1z9BoqlE24aGt46Q4qONO0AxDiTLWA95ICkkqjQfiYE3gsOKd5HJosM T+ecTZZIPPw9c3QXdGv2k5Lcfz2vhz4gxCSGnqSuL1Hm/JAtQKarCT2yAC4mSTN417kW RF38xUjGtWbgRx7FQ8MWZ6gJDi0QbFEAPtUat1BlZeHf1tKP2FMDVQELIGQCUvpCzR2R bovA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=gq+IWpaigtpGWmOSYDKCCnwJyd/acyaGgX89N5iP80o=; b=kme8LRbyAATgnmLEq6vkvNddIzAXbjx5pHL/jxjgcvfCKt0Q1FsHBCTzw2sGB7Qqlg nDsOSEr/Z4KlejbRt36DqO2wtLdpdtR0wofG8+0XcTQVV9CvxvyKEM5VLUBHeGoZsaL8 BbabpbRVHp8Sxxqrasq/ZiNxqPv4rRam+Xi1JCYJsP0WyqSSF8hWobwZyjeJjX2/0zrN djwLOzCTliI5H+LATucVL18K9GsDj6uyr25irH5PhTnPc5axAvqHgjWLXUZIFzv40p1i I8OcnkqrC9/dEY30GyG91hyFTv2luBVZjRG70FcyJtnw6B/qPs28lUmPT2lip1iFPnMS +hNQ== X-Gm-Message-State: ALKqPwfqpVKfrghTOb3SEUYBatypFv1LNoyOQ9VTiHmibv2aYnjkdPLr p0l2ZpSR+CfTpMEUKxvZxmfBZEqVYkM= X-Google-Smtp-Source: AB8JxZozYZU7k0h2FveVBYF8UPGTc9Oy2hjVVnQzEhSfLVPA+TG8m2kjRqDXkxFpoaGTqAwJ7HG+XA== X-Received: by 2002:a62:3c10:: with SMTP id j16-v6mr13807879pfa.7.1526367774333; Tue, 15 May 2018 00:02:54 -0700 (PDT) Received: from localhost (2001-b030-2314-0200-f279-59ff-fe6a-4741.hinet-ip6.hinet.net. [2001:b030:2314:200:f279:59ff:fe6a:4741]) by smtp.gmail.com with ESMTPSA id n67-v6sm26290307pfh.188.2018.05.15.00.02.53 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 15 May 2018 00:02:53 -0700 (PDT) Date: Tue, 15 May 2018 15:02:48 +0800 From: Christopher Hall To: FreeBSD Ports Subject: sysutils/ansible and FLAVOR (Python 3.6 support) Message-ID: <20180515150248.63b852a6@gmail.com> X-Mailer: Claws Mail 3.16.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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 07:02:56 -0000 Hello everyone, I am looking at which is the best way to modify the sysutils/ansible port so that it will use Python3.6. Currently it has the "noflavors" option in the USE_PYTHON line son only a single packages with Python2.7 exists in the pkg repo. Should it be renamed to sysutils/py-ansible and "noflavors" removed? To produce both py27-ansible and py36-ansible packages in repo, allowing a choice of Python version Alternatively, is it better to keep the name as sysutils/ansible and just change the "USES=python" to "USES=python:3.6+". However this would make it a Python3 only package. Any suggestions as to which approach would be preferable? -- Best Regards. Christopher Hall. From owner-freebsd-ports@freebsd.org Tue May 15 08:06:30 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AED82EE761A; Tue, 15 May 2018 08:06:30 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: from mail-pl0-x236.google.com (mail-pl0-x236.google.com [IPv6:2607:f8b0:400e:c01::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2809784AAC; Tue, 15 May 2018 08:06:30 +0000 (UTC) (envelope-from koobs.freebsd@gmail.com) Received: by mail-pl0-x236.google.com with SMTP id w19-v6so6337292plq.4; Tue, 15 May 2018 01:06:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:reply-to:subject:to:references:from:openpgp:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=MaqCNISKSNuTB/A+I6eJB4iOWmW9AUIfIQVcjCft7Lg=; b=ZyXW3XY0K4CRJDYEBZeVRz4JTetjCmbbxvD0pl/NzuZ9eNnAIR99PiFWOH7HOqAMEL xZi12plkJXgtGefPOANcZ6ayJs4FlI1cKOnIKq7b2+ZwAJxTNL3ieMxjX5KJsWwXDnux 4L7bjFgPOlsVxGi4JKUBSB+DxaZ7IImjH9rmnZXPhyLZe4r1ImsH3/uMWb/BSwUA8MTK pWlEuz/cQfYJ8k9cWXyPKXPpjc8a6eS8xXYLuL6YKSlhReGPwkPyIoDVX9AOk18Q3h3r vPbgzLVueCv9wZTKlQGYr9/qPBYAHleqGlPAYbJwZiQH44J1gHSsFT+WuxWYVNH9PxqU Z4Kg== 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:references:from :openpgp:message-id:date:user-agent:mime-version:in-reply-to :content-language:content-transfer-encoding; bh=MaqCNISKSNuTB/A+I6eJB4iOWmW9AUIfIQVcjCft7Lg=; b=HznZG9hUr4J+xEEmmXy82JDhcOxKMk7+B4ihuguPeJltg5XTJACP3/WgcaRzBOf5tF tOy0828jkp54P2qGoaOYQJE/nOHdoqW3ensDAdCfcj7iPJnaYLyrq+mHBNVWVt4Hik15 o43d6139YeLE5DrWn6xqdzI69hWOzhqli0HXVP4Wc8G3/lmM6JVJW7GvDPXToq7kq1nI UNTiG31g0Miyd6YIntEm2hA8orJOCCgbWB29OWTvjYqERsm3xj5LqLLaJGd1XoZi/EfV XWJuVtM0eF5w8VyDzuPEsdc0A4Ifll37aQCZWq9Vgr1HAMg8nDVnREK78V307mH08NS4 l86w== X-Gm-Message-State: ALKqPwe/0NystiBWRq4bJiSmMLsmd8NeluOQec5eDS44M2e+si0LqbeB j8qHU9KzvntSLtDg7dyVNxWsXyFQ X-Google-Smtp-Source: AB8JxZqQ5SnVpAZsnjOeoqhWJRAvYxxrivzZIumXz0OSj0V1nS6IRPLTBTmcCJ+ygzaIE6B0eFBWsQ== X-Received: by 2002:a17:902:42e:: with SMTP id 43-v6mr13435187ple.365.1526371589099; Tue, 15 May 2018 01:06:29 -0700 (PDT) Received: from [192.168.1.102] (116.133.220.111.sta.wbroadband.net.au. [111.220.133.116]) by smtp.gmail.com with ESMTPSA id g68-v6sm21372286pfk.53.2018.05.15.01.06.26 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 15 May 2018 01:06:28 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: sysutils/ansible and FLAVOR (Python 3.6 support) To: Christopher Hall , FreeBSD Ports , python , Nikolai Lifanov References: <20180515150248.63b852a6@gmail.com> From: Kubilay Kocak Openpgp: preference=signencrypt Message-ID: <01e214e3-d119-3f50-ac34-6aad4cadc7bc@FreeBSD.org> Date: Tue, 15 May 2018 18:06:26 +1000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 In-Reply-To: <20180515150248.63b852a6@gmail.com> 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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 08:06:30 -0000 On 15/05/2018 5:02 pm, Christopher Hall wrote: > Hello everyone, Hi Christopher, > I am looking at which is the best way to modify the sysutils/ansible > port so that it will use Python3.6. Currently it has the "noflavors" > option in the USE_PYTHON line son only a single packages with > Python2.7 exists in the pkg repo. tldr: Add PYTHON_PKGNAMEPREFIX to the port if you want to produce a py3x version of the port. If you/we/users also want it from the official package repositories, remove noflavors. > Should it be renamed to sysutils/py-ansible and "noflavors" removed? > To produce both py27-ansible and py36-ansible packages in repo, > allowing a choice of Python version The name of the directory is less relevant than whether a/the port uses PYTHON_PKGNAMEPREFIX (to differentiate package names when built with/for different Python versions. The current ansible port doesn't do this and it should (since it correctly allows all python versions with USES=python, without qualification) > Alternatively, is it better to keep the name as sysutils/ansible and > just change the "USES=python" to "USES=python:3.6+". However this would > make it a Python3 only package. > > Any suggestions as to which approach would be preferable? The Python team recommends that if a Python package supports multiple Python versions (ansible does), then the port should reflect that and not force one version or another, and use PYTHON_PKGNAMEPREFIX. This includes Python packages supporting 2 & 3, and forcing 3.x or the reverse, forcing 2.x. This at *least* allows a user to select which version of the port/package they want, using DEFAULT_VERSIONS overrides. Separately, on the multiple flavours/package creation question in the official package repositories, we also recommend that noflavors only be used in the *very* rare cases where it is *entirely* irrelevant which Python version is used, and where there isn't any value *whatsoever* in having multiple packages, say if a user wants to transition between using a 2.x version to 3.x on their own time at their own pace. tldr, for maintainers: - User choice should not be removed/precluded - Be declarative, not imperative for Python ports/packages - If it supports > 1 Python versions (any combination), use PYTHON_PKGNAMEPREFIX From owner-freebsd-ports@freebsd.org Tue May 15 08:29:44 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7333BEE8D64 for ; Tue, 15 May 2018 08:29:44 +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 098796821E for ; Tue, 15 May 2018 08:29:44 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from leaf.local (unknown [88.202.132.43]) (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 01F338941 for ; Tue, 15 May 2018 08:29:41 +0000 (UTC) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none (p=none dis=none) header.from=FreeBSD.org Authentication-Results: smtp.infracaninophile.co.uk/01F338941; dkim=none; dkim-atps=neutral Subject: Re: sysutils/ansible and FLAVOR (Python 3.6 support) To: freebsd-ports@freebsd.org References: <20180515150248.63b852a6@gmail.com> From: Matthew Seaman Message-ID: <88740074-42f3-436b-eb2b-a59bb1def5f9@FreeBSD.org> Date: Tue, 15 May 2018 09:29:35 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20180515150248.63b852a6@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 08:29:44 -0000 On 15/05/2018 08:02, Christopher Hall wrote: > Hello everyone, > > I am looking at which is the best way to modify the sysutils/ansible > port so that it will use Python3.6. Currently it has the "noflavors" > option in the USE_PYTHON line son only a single packages with > Python2.7 exists in the pkg repo. > > > Should it be renamed to sysutils/py-ansible and "noflavors" removed? > To produce both py27-ansible and py36-ansible packages in repo, > allowing a choice of Python version > > Alternatively, is it better to keep the name as sysutils/ansible and > just change the "USES=python" to "USES=python:3.6+". However this would > make it a Python3 only package. > > Any suggestions as to which approach would be preferable? > Having python-3.6 versions of ansible avaialbe in the default package repos is a good idea -- it's already easy enough to build-you-own ansible packages against python-3.6 and that works fine. It's also fine to use that python-3.6-ized ansible against a host with only python-2.7 installed. Take a look at eg. the databases/phpmyadmin port for an example of a flavoured port that doesn't have a language dependent (in this case php-) prefix. Just add PKGNAMESUFFIX and take away the noflavors from USES, plus add flavour markers to any dependencies that need them. You'll end up with packages called ansible-py27 and ansible-py36. Cheers, Matthew From owner-freebsd-ports@freebsd.org Tue May 15 08:53:19 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF6AEEEA84F for ; Tue, 15 May 2018 08:53:18 +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 6A56C6DEEA for ; Tue, 15 May 2018 08:53:18 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2ECBEEEA84A; Tue, 15 May 2018 08:53:18 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C47EEEA849 for ; Tue, 15 May 2018 08:53:18 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B21956DEE3 for ; Tue, 15 May 2018 08:53:17 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id EAD3C1650D for ; Tue, 15 May 2018 08:53:16 +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 w4F8rGRP085394 for ; Tue, 15 May 2018 08:53:16 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id w4F8rGgp085393; Tue, 15 May 2018 08:53:16 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201805150853.w4F8rGgp085393@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, 15 May 2018 08:53:16 +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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 08:53:19 -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 ------------------------------------------------+-----------------+------------ deskutils/recoll | 1.23.7 | 1.24.1 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Tue May 15 08:55:23 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3235BEEAA6C; Tue, 15 May 2018 08:55:23 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: from mail-pf0-x235.google.com (mail-pf0-x235.google.com [IPv6:2607:f8b0:400e:c00::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F9A56E056; Tue, 15 May 2018 08:55:22 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: by mail-pf0-x235.google.com with SMTP id e9-v6so7394433pfi.4; Tue, 15 May 2018 01:55:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=gaynd2hxdTteCWS0OU/Sh3arU6Jv6uBK4YZq4uTKm/w=; b=Lh8mBW9mWOl6LIJQSZaR3bwSxIpAOXNbtoTDy2LTLRbcZJXQ17u74pJrOl9AFHS36H unufdEEvFYC1lqHEpnDi/WLSVCDvH8l+pVEJ1+orESZN0+pP38E40PPTTOjDQbsCCJ69 wkWV4svuGp45YftJIxNxrWsDnB459vNZ/Gz6Gw7iSgz74KIxgsiswPyFazT1IO1xv7X1 keW+uSTbeHlfwg+/iRFVSSeiTsCcYfckXTZdo7ecfJ7sDrBmtv6JQg5yKjam4po08eOv mAANb+8JP/vwXM22ygPmXyEqnSEdPbhwgbRQytgfx3mLyivw2xDVEgtNzVD+w38/BvVt CkpA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=gaynd2hxdTteCWS0OU/Sh3arU6Jv6uBK4YZq4uTKm/w=; b=fa3TqIZzRWs10R65KOikeFDKTZLnVqm2GBN0VXlq36/xtJ8nxi+73deIucHtm4p4/2 uv6p0jwwLBSWXRYW88puD8gc4HusKLE4/X463DDfEa2geTxCQG2pRzD7apBBVB+mftBd pXiUK1Dc+8oB71csfC5HKDF35SmGqXwDwwclObV1k+bUNavvafYNekTC1UhhHaGeCHAn a4VyDOVMzOwNvxcOdjWn8PBbxGtVpPlf2lSU+y0t3NObnLCepYLcS7syA1vPN+69r2MF yvOt8R5iwdY3mdXXHuLrptbt7nRJ1lI/JechkwnrOQZ2mbxdsFsyngCQdn9iEiZfQt2J VuIA== X-Gm-Message-State: ALKqPwfe9l86lzI2mXE+jiT6AoSp9brRm5O7ethiM3yGwgcjeaNpMfEb HwVLOX0Tp9BnjwBQMH3XQdQPX5D2sqs= X-Google-Smtp-Source: AB8JxZofyUo3z3e9UyaMhqGAkXs1Sz6QZwLoSlRn9TGqM7vZ8I9/Od7P8N67oS3SoOy4iC8nOA0DaQ== X-Received: by 2002:a62:6304:: with SMTP id x4-v6mr14149941pfb.94.1526374521087; Tue, 15 May 2018 01:55:21 -0700 (PDT) Received: from localhost (2001-b030-2314-0200-f279-59ff-fe6a-4741.hinet-ip6.hinet.net. [2001:b030:2314:200:f279:59ff:fe6a:4741]) by smtp.gmail.com with ESMTPSA id d4-v6sm24147661pfl.24.2018.05.15.01.55.19 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 15 May 2018 01:55:20 -0700 (PDT) Date: Tue, 15 May 2018 16:55:14 +0800 From: Christopher Hall To: Kubilay Kocak Cc: FreeBSD Ports , python , Nikolai Lifanov Subject: Re: sysutils/ansible and FLAVOR (Python 3.6 support) Message-ID: <20180515165514.1a0e079b@gmail.com> In-Reply-To: <01e214e3-d119-3f50-ac34-6aad4cadc7bc@FreeBSD.org> References: <20180515150248.63b852a6@gmail.com> <01e214e3-d119-3f50-ac34-6aad4cadc7bc@FreeBSD.org> X-Mailer: Claws Mail 3.16.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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 08:55:23 -0000 Hello Kubilay, On Tue, 15 May 2018 18:06:26 +1000, Kubilay Kocak wrote: > On 15/05/2018 5:02 pm, Christopher Hall wrote: > > Hello everyone, > > Hi Christopher, > > > I am looking at which is the best way to modify the sysutils/ansible > > port so that it will use Python3.6. Currently it has the "noflavors" > > option in the USE_PYTHON line son only a single packages with > > Python2.7 exists in the pkg repo. > > tldr: Add PYTHON_PKGNAMEPREFIX to the port if you want to produce a > py3x version of the port. If you/we/users also want it from the > official package repositories, remove noflavors. > > > Should it be renamed to sysutils/py-ansible and "noflavors" removed? > > To produce both py27-ansible and py36-ansible packages in repo, > > allowing a choice of Python version > > The name of the directory is less relevant than whether a/the port > uses PYTHON_PKGNAMEPREFIX (to differentiate package names when built > with/for different Python versions. The current ansible port doesn't > do this and it should (since it correctly allows all python versions > with USES=python, without qualification) Thanks for this, I put a patch in: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228268 > > > Alternatively, is it better to keep the name as sysutils/ansible and > > just change the "USES=python" to "USES=python:3.6+". However this > > would make it a Python3 only package. > > > > Any suggestions as to which approach would be preferable? > > The Python team recommends that if a Python package supports multiple > Python versions (ansible does), then the port should reflect that and > not force one version or another, and use PYTHON_PKGNAMEPREFIX. This > includes Python packages supporting 2 & 3, and forcing 3.x or the > reverse, forcing 2.x. > > This at *least* allows a user to select which version of the > port/package they want, using DEFAULT_VERSIONS overrides. > > Separately, on the multiple flavours/package creation question in the > official package repositories, we also recommend that noflavors only > be used in the *very* rare cases where it is *entirely* irrelevant > which Python version is used, and where there isn't any value > *whatsoever* in having multiple packages, say if a user wants to > transition between using a 2.x version to 3.x on their own time at > their own pace. > > tldr, for maintainers: > > - User choice should not be removed/precluded > - Be declarative, not imperative for Python ports/packages > - If it supports > 1 Python versions (any combination), use > PYTHON_PKGNAMEPREFIX -- Best Regards. Christopher Hall. From owner-freebsd-ports@freebsd.org Tue May 15 16:35:02 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A113BEE68C5 for ; Tue, 15 May 2018 16:35:02 +0000 (UTC) (envelope-from jim@mailman-hosting.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 26C7476127 for ; Tue, 15 May 2018 16:35:02 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: by mailman.ysv.freebsd.org (Postfix) id D4A79EE68C4; Tue, 15 May 2018 16:35:01 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B236CEE68C2 for ; Tue, 15 May 2018 16:35:01 +0000 (UTC) (envelope-from jim@mailman-hosting.com) Received: from maurice.jlkmail.com (maurice.jlkmail.com [IPv6:2606:c700:1:30::23:2a]) (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 406A876126 for ; Tue, 15 May 2018 16:35:01 +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 156A424C04E0 for ; Tue, 15 May 2018 12:34:53 -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-type:content-type:mime-version :user-agent:date:date:message-id:subject:subject:from:from:to; s=dkim; t=1526402090; x=1527266091; bh=hGCl8lW/Q2tyMda6uGN5/1Yr uKd5QCEYBE6HgyJgxSY=; b=TRJLzLsQMFWM04ztPEEw4QS5bcnv684MDBMFzLIX kP74ioMECMyq0yIUDV9lhILBGtpwMuMD+KV8lZAXE9Y2qev4hBOzFkoQrD/L/jkm b+30G2Z4Jc27Ybh5+edK9jOU0Dsr7i8F5qfDiM1scxzXnpeOKTndi9XUxIauEFNh dqM= 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=-999 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 6yZILqofjhXc for ; Tue, 15 May 2018 12:34:50 -0400 (EDT) Received: from [192.168.1.164] (static-70-104-198-156.nrflva.fios.verizon.net [70.104.198.156]) by maurice.jlkmail.com (Postfix) with ESMTPSA id 68BA524C029F; Tue, 15 May 2018 12:34:50 -0400 (EDT) To: ports@freebsd.org, osa@freebsd.org From: Jim Ohlstein Subject: www/nginx-devel redis module fetch error Openpgp: preference=signencrypt Autocrypt: addr=jim@mailman-hosting.com; prefer-encrypt=mutual; keydata= xsBNBFk4U7QBCAD0xK4/jXvDamBRX1uQX9DD874PhAYLPZGuqgppchs41JpfUWOrbzKeYOca iPrryvtFfUz5mKY8Yzh3sLwpkrgsFsxDS2ByC/DJMo7BAoD3jCjzI35SH/8pTLDp8/QCj09k +u8PMA7Tc03OoITGkqXwsrZGxPYjVtA07aanY+Zk2B0ywET2XRhjI+3RNgTTulsw+ifm8WEm Woxpp5uFtx9sWFbMx1h6cUmbth44GYLyFoqB2yMiaEPcEX/vyMkeEZ2Xy7wA1kJi+rsCoLeG YlRyF7PWA75KYSNP/0kNIzrs9HFI7gm/Ad50+NrqOvcDoJ5eoOuWYVtk/OVDiBQb/bvHABEB AAHNJkppbSBPaGxzdGVpbiA8amltQG1haWxtYW4taG9zdGluZy5jb20+wsB3BBMBCAAhBQJZ OFO0AhsDBQsJCAcCBhUICQoLAgQWAgMBAh4BAheAAAoJEEv1Sg15i1V9TSEIALyJeMwKKJYn HstciQnX4+t4TXqCYSHtm/ZruJ6y2Z0MtXZqzcYI+ZB/y9+/81kKml8WI0swpPQPUUx6h4uJ d19NvoJTAjtDnU+H5p8o95vU+QfKaIB+XC3O2DirFlnFo6nXwjUYAscWAclh65fH9saBoM4Z TCtgDuiG5DKuLdTcW34QrTl5z6vODNUExGKcHiY5+wpI7irXbLBwxcyuRy6sq9ohriIjGaAj 0SrsvkkiojXx6xOPJprA27kwSdj2d2XrKT1X/uxmqJNgARgi6QhbA2nQMiYQ+Tr+6HDdSzTn ltdFLnmfSQoX/zJNx6DXK4I8cLYE4EDKw98bhSAzG7XOwE0EWThTtAEIALab7EzO2xKXRsF/ 6b0WgFvLWrkKqX07zqiLAUJTP8NzmGZzKUVlTGGIXnK5eTfWa0HE3/ksTyFJfJRAORpITjpq WPMwcvJDNf+/CKC1C6P7YtfUX+voX58XN0lzbF/7Zqn7QbeyKntU8qHaMQUvYDBHuVru+qd/ jqHWqBUBx2wXC1qYiQtQwVA5bUt4jtBXOla2fRp+1cVBiG0sdB2qWW+ZvjYJRKamXhhpbrNz BzAbry2JjM2QXl71cuzD37OK5tXusYqKrv58wHiG1MiWknW0cU4vorbNcnskga/Zvq2UqHTV THbLS0CiQ2Z8zzfFtm9f55GwLamOXhdAYh4xoD8AEQEAAcLAXwQYAQgACQUCWThTtAIbDAAK CRBL9UoNeYtVfVucCADTNR6FdXsLFEinBaSxRCcIUaCPzTwYCTzWKLAvB2vpTtgZM4FHySpy BxHuGLtPOkujtRN51Ow1ejZ8qmJMM0qWb2IKTa2eNFAVE/vBxcn9rr2d7djTQDPPp0oKogeE llaCrvlqE0LbjvUWQXgpcRx/Xz0jsvrCnDX3OCm/SUxbaxAdz7fhg/D1zHGTi/KBQTIxpL58 /xFUwP55aGRdxzlEGJul5NDYdyTQLZTMK1PS62dK4k5q9OF9h7h4kgkLUfmD33ABmPktx8R8 86v6qQ5ye7rjZ+HIZwWVVCSbLE2DsLMgIQp7O/x8PnrSEEMAiz1Dw54Egc2j6Ahc2Ckm4OAo Message-ID: <7aa46145-646f-bcef-eb13-65a8871098bb@mailman-hosting.com> Date: Tue, 15 May 2018 12:34:48 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="aSKRNDxk3lBca3mvfz53j4p02Yov2hjfm" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 May 2018 16:35:02 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --aSKRNDxk3lBca3mvfz53j4p02Yov2hjfm Content-Type: multipart/mixed; boundary="xmF414NCZIwjWGYkOjQ9YTnZAT7fbn73f"; protected-headers="v1" From: Jim Ohlstein To: ports@freebsd.org, osa@freebsd.org Message-ID: <7aa46145-646f-bcef-eb13-65a8871098bb@mailman-hosting.com> Subject: www/nginx-devel redis module fetch error --xmF414NCZIwjWGYkOjQ9YTnZAT7fbn73f Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Hello, After the recent bump of the third party redis module to 0.3.9, I've found it to be un-fetchable. See below: =3D> ngx_http_redis-0.3.9.tar.gz doesn't seem to exist in /portdistfiles/= =2E =3D> Attempting to fetch http://distcache.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0.3.9.tar= =2Egz fetch: http://distcache.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0.3.9.tar= =2Egz: Not Found =3D> Attempting to fetch http://distcache.us-east.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0= =2E3.9.tar.gz fetch: http://distcache.us-east.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0= =2E3.9.tar.gz: Not Found =3D> Attempting to fetch http://distcache.eu.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0.3.9.= tar.gz fetch: http://distcache.eu.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0.3.9.= tar.gz: Not Found =3D> Attempting to fetch http://distcache.us-west.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0= =2E3.9.tar.gz fetch: http://distcache.us-west.FreeBSD.org/local-distfiles/osa/ngx_http_redis-0= =2E3.9.tar.gz: Not Found =3D> Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/ngx_http_redis-0.3.9.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/ngx_http_redis-0.3.9.tar.gz:= Not Found =3D> Couldn't fetch it - please try to retrieve this =3D> port manually into /portdistfiles/ and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/nginx-devel =3D>> Cleaning up wrkdir =3D=3D=3D> Cleaning for nginx-devel-1.14.0_8 build of www/nginx-devel | nginx-devel-1.14.0_8 ended at Tue May 15 12:21:11 EDT 2018 build time: 00:00:30 !!! build failure encountered !!! --=20 Jim Ohlstein Professional Mailman Hosting https://mailman-hosting.com --xmF414NCZIwjWGYkOjQ9YTnZAT7fbn73f-- --aSKRNDxk3lBca3mvfz53j4p02Yov2hjfm 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 iQEcBAEBCAAGBQJa+wwpAAoJEEv1Sg15i1V99asIAMcOE+pQsvQuHc+/2VwxPZCk 5KEWSzwwwfSOybn/OCND/G2DIqJxKvwMKGP4+PKRw1EpsDxkf+MkHvbWgsflqVOq p1TesTF3vZ+2G1sGNWxiD1uTyIRxUoCuj4NW2HXC79BMqci7b09oGo6WAcBQLeJu ayJTVS+2eIjjrrPsKh6Px5Q8b/roofxd1t2dppgDtnIRFKpwJ6Vt7myAO7Vr+yye PQhlXSge9Is55bWu5rgMfOffr7KJOB0+UNn/KIuRu+EbxV4yHFPO1U144oQXKIsJ CDi+3x6SzX4zYa9pC1uxZJyNPvd4hsNHwaXbZ27TjpYJSb+rlrMV7dxnUseO974= =hqGJ -----END PGP SIGNATURE----- --aSKRNDxk3lBca3mvfz53j4p02Yov2hjfm-- From owner-freebsd-ports@freebsd.org Wed May 16 10:42:01 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75539ED89F2 for ; Wed, 16 May 2018 10:42:01 +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 11AB982AFB for ; Wed, 16 May 2018 10:42:01 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id C67CDED89EA; Wed, 16 May 2018 10:42:00 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4317ED89E8 for ; Wed, 16 May 2018 10:42:00 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5646682AED for ; Wed, 16 May 2018 10:42:00 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 8A1AF23C93 for ; Wed, 16 May 2018 10:41:59 +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 w4GAfxWv051628 for ; Wed, 16 May 2018 10:41:59 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id w4GAfxaB051625; Wed, 16 May 2018 10:41:59 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201805161041.w4GAfxaB051625@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, 16 May 2018 10:41:59 +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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 May 2018 10:42:01 -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/libdca | 0.0.5 | 0.0.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 Thu May 17 04:32:53 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A3A2EA97C8 for ; Thu, 17 May 2018 04:32:53 +0000 (UTC) (envelope-from lists@eitanadler.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 DA0DB69A81 for ; Thu, 17 May 2018 04:32:52 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: by mailman.ysv.freebsd.org (Postfix) id 99063EA97B7; Thu, 17 May 2018 04:32:52 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76BF2EA97B6 for ; Thu, 17 May 2018 04:32:52 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-yw0-x243.google.com (mail-yw0-x243.google.com [IPv6:2607:f8b0:4002:c05::243]) (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 20BA969A80 for ; Thu, 17 May 2018 04:32:52 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: by mail-yw0-x243.google.com with SMTP id m65-v6so283880ywc.12 for ; Wed, 16 May 2018 21:32:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-transfer-encoding; bh=bwQEkXk/2700ySgHPKXY8Dgx8qCTcTU2IYsmFsEyumg=; b=DKBKa8h9SwXU+FcCR8bAjXx2DQ9/BAMZt3tnSq59cGNn0Q7c2VmqZNM4h4LT24r0PV 0ysTv/524gnBUCehL9HoGFKlRswm9N5IZt90UMpoj8BGWsAuNY8B3rFZ89L+MKWEvS84 N1DgZUbs54Cmcb10d7hCyssVvaGNuWpxVFjEQ= 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:content-transfer-encoding; bh=bwQEkXk/2700ySgHPKXY8Dgx8qCTcTU2IYsmFsEyumg=; b=rZz+yRhzXdc4NDoxlqEtPCm+c2hGGqHbZStEIwf0Or5i+ErrYKrEMEIaVjDzSH4d9X vuYICsGYpD32dhupeOt948Q3sAQIlhWTlgvJvyWY09nHuGUsLy7R7yG0f7MJWHNTofTJ 8ur+qzt3Jlm2TrniMGy2trtfwe4cgxplYOKCjOIF0sAVABBzMBCEJaseTOYzFQnL+82r orVVDtxjdG67vC/7UkiKnlB0Sg13UMa0TRj83hvcyVYBkWsHxXV5z2Ni2IqH09blTSlR DpmPtrIjpyoTo6pz9NcIZjncjwNDROuf927PqAA4ztvYyyvN/gr++l0ZeXsiS/ivPZc+ 77TA== X-Gm-Message-State: ALKqPwc4Oes0OymLKJ8AcvOHrmq6oV9F5OtYVm7X+J/43O7sZoimfTUJ FYms5Q6+wrywaqsjxkUOhWWnTv164/L1MotKpyNqsA== X-Google-Smtp-Source: AB8JxZog0xejxlUaCCn6HLNcVbJzpFcYdo8nqQ0zw4UON5rnkvnI1cOhxFHBFcWC4Dm66cAFjWP3svAr40QjjSXbY9k= X-Received: by 2002:a81:5fc4:: with SMTP id t187-v6mr1814369ywb.19.1526531571042; Wed, 16 May 2018 21:32:51 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a25:c709:0:0:0:0:0 with HTTP; Wed, 16 May 2018 21:32:20 -0700 (PDT) In-Reply-To: References: From: Eitan Adler Date: Wed, 16 May 2018 21:32:20 -0700 Message-ID: Subject: Re: pkg wants to install packages it just autoremoved (and vice versa) To: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 04:32:53 -0000 ping? On 12 May 2018 at 06:06, Eitan Adler wrote: > Can anyone explain why pkg wants to both install and autoremove the > same packages? > > [8212 11:56:42.045 eax@fasteagle ~]=E2=88=B4sudo pkg autoremove > Checking integrity... done (0 conflicting) > Deinstallation has been requested for the following 4 packages: > > Installed packages to be REMOVED: > libXv-1.0.11,1 > libepoxy-1.4.3 > libxkbfile-1.0.9 > videoproto-2.3.3 > > Number of packages to be removed: 4 > > The operation will free 3 MiB. > > Proceed with deinstalling packages? [y/N]: y > [1/4] Deinstalling libXv-1.0.11,1... > [1/4] Deleting files for libXv-1.0.11,1: 100% > [2/4] Deinstalling libepoxy-1.4.3... > [2/4] Deleting files for libepoxy-1.4.3: 100% > [3/4] Deinstalling libxkbfile-1.0.9... > [3/4] Deleting files for libxkbfile-1.0.9: 100% > [4/4] Deinstalling videoproto-2.3.3... > [4/4] Deleting files for videoproto-2.3.3: 100% > [8213 11:56:45.479 eax@fasteagle ~]=E2=88=B4sudo pkg upgrade > Updating FreeBSD repository catalogue... > FreeBSD repository is up to date. > Updating poudriere repository catalogue... > poudriere repository is up to date. > All repositories are up to date. > Checking for upgrades (60 candidates): 100% > Processing candidates (60 candidates): 100% > Checking integrity... done (0 conflicting) > The following 4 package(s) will be affected (of 0 checked): > > New packages to be INSTALLED: > libxkbfile: 1.0.9 [FreeBSD] > videoproto: 2.3.3 [FreeBSD] > libXv: 1.0.11,1 [FreeBSD] > libepoxy: 1.4.3 [FreeBSD] > > Number of packages to be installed: 4 > > The process will require 3 MiB more space. > > Proceed with this action? [y/N]: y > [1/4] Installing videoproto-2.3.3... > [1/4] Extracting videoproto-2.3.3: 100% > [2/4] Installing libxkbfile-1.0.9... > [2/4] Extracting libxkbfile-1.0.9: 100% > [3/4] Installing libXv-1.0.11,1... > [3/4] Extracting libXv-1.0.11,1: 100% > [4/4] Installing libepoxy-1.4.3... > [4/4] Extracting libepoxy-1.4.3: 100% > > -- > Eitan Adler --=20 Eitan Adler From owner-freebsd-ports@freebsd.org Thu May 17 05:28:18 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD078EAD34F for ; Thu, 17 May 2018 05:28:17 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6F5C26B94F for ; Thu, 17 May 2018 05:28:17 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 2E4A1EAD34E; Thu, 17 May 2018 05:28:17 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A542EAD34C for ; Thu, 17 May 2018 05:28:17 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: from mail-pl0-x243.google.com (mail-pl0-x243.google.com [IPv6:2607:f8b0:400e:c01::243]) (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 805406B94A for ; Thu, 17 May 2018 05:28:16 +0000 (UTC) (envelope-from christopherhall.hsw@gmail.com) Received: by mail-pl0-x243.google.com with SMTP id c11-v6so1801605plr.5 for ; Wed, 16 May 2018 22:28:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ernIodadKD/sI323KtS8sF2u1wcPf054bErrb0W/Gmg=; b=AAzJzG1WCDj1g0Sz0f6yY0IN6jtVq11UCgJuw3u+OhWdC0WocU6EKTudNdCJhSUZmq Ns8b/amuy+3aUF9w+1nXHBTWh0ZNsKmAGjbUvW6+6kxAHRrySEcoR1gcBrwjhsjZ48hr LTdv0Oan+0KkpUGipRNzN1gziYOdGu8iZa+6+HObn99XwxDqoc1PsYZmh6aedV4zaZkk D4fs9fegbA0M4oS9rKIaAlt+xWlmr6iaWyhj4Ov5qj4dv7Uw/XKXuSzD68bDriqTtpIF b8MfGBh+H58xyqfZHBx+4ZTep1DHDX2HQjD+/cfhpWlWqrGRzZqvCPZLDSjPFr41OGat OQtA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=ernIodadKD/sI323KtS8sF2u1wcPf054bErrb0W/Gmg=; b=Bse7+vvw4+n7zdADgdTBpQ5Y7JeSf00gg0NEqU2+tEVD+GcppGqO4hn/ittfTaIGJ+ CLdhUK/PGYXNaE56RZfwmIIk2RKeuFtVmLwyTEWAO2aORX+Hrcl3Z3ZIpWAOzQAXCJPF F8pJCv1ofvwOIZtxtEfb0pZPh0UN/GIcqIVbbVwHuIG0IBaYJHJgfomuXXlqhuBJRO0w R/94E3zPJjFZ3ErDNyvcpwzObMbyYZPlwjiUKimCgOeNbw5sy0lJw+cmzUQco2B1ckir s/zPMMnaEBP8iRIDEqrx+UNlYeAFEg4nr43vXVAd5A8FNkHgt6/9lgnWGmraZqORGeq8 QyUw== X-Gm-Message-State: ALKqPwdPCJPIQrbqjvnWrnmlPEWUuWhL/Szlu3S04nvugFR/8nwbp9km 4jgR2fugi0GBLeJsvPRNWrhoIy0gBIA= X-Google-Smtp-Source: AB8JxZq+b3gxTM6zD2KQlL1mCKbt5aqB08NBcqFQq+Ibp4a/khZrbiLNCtg9MSnc8dT7MiP7QpiiCw== X-Received: by 2002:a17:902:369:: with SMTP id 96-v6mr3911305pld.64.1526534895719; Wed, 16 May 2018 22:28:15 -0700 (PDT) Received: from localhost (2001-b030-2314-0200-f279-59ff-fe6a-4741.hinet-ip6.hinet.net. [2001:b030:2314:200:f279:59ff:fe6a:4741]) by smtp.gmail.com with ESMTPSA id s17-v6sm8574472pfi.165.2018.05.16.22.28.14 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 16 May 2018 22:28:15 -0700 (PDT) Date: Thu, 17 May 2018 13:28:09 +0800 From: Christopher Hall To: Eitan Adler Cc: FreeBSD Ports Subject: Re: pkg wants to install packages it just autoremoved (and vice versa) Message-ID: <20180517132809.4ef9ffd4@gmail.com> In-Reply-To: References: X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.31; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 05:28:18 -0000 Hello Eitan, On Wed, 16 May 2018 21:32:20 -0700, Eitan Adler wrote: > ping? >=20 > On 12 May 2018 at 06:06, Eitan Adler wrote: > > Can anyone explain why pkg wants to both install and autoremove the > > same packages? > > When I had similar, it was because I tried to use both FreeBSD repo and my own repo. Then a installed package from my local repo had a more recent version on FreeBSD repo, so the dependencies changed. I ended up with machines that only use FreeBSD or only use local repo and have not seen this happen since. > > [8212 11:56:42.045 eax@fasteagle ~]=E2=88=B4sudo pkg autoremove > > Checking integrity... done (0 conflicting) > > Deinstallation has been requested for the following 4 packages: > > > > Installed packages to be REMOVED: > > libXv-1.0.11,1 > > libepoxy-1.4.3 > > libxkbfile-1.0.9 > > videoproto-2.3.3 > > > > Number of packages to be removed: 4 > > > > The operation will free 3 MiB. > > > > Proceed with deinstalling packages? [y/N]: y > > [1/4] Deinstalling libXv-1.0.11,1... > > [1/4] Deleting files for libXv-1.0.11,1: 100% > > [2/4] Deinstalling libepoxy-1.4.3... > > [2/4] Deleting files for libepoxy-1.4.3: 100% > > [3/4] Deinstalling libxkbfile-1.0.9... > > [3/4] Deleting files for libxkbfile-1.0.9: 100% > > [4/4] Deinstalling videoproto-2.3.3... > > [4/4] Deleting files for videoproto-2.3.3: 100% > > [8213 11:56:45.479 eax@fasteagle ~]=E2=88=B4sudo pkg upgrade > > Updating FreeBSD repository catalogue... > > FreeBSD repository is up to date. > > Updating poudriere repository catalogue... > > poudriere repository is up to date. > > All repositories are up to date. > > Checking for upgrades (60 candidates): 100% > > Processing candidates (60 candidates): 100% > > Checking integrity... done (0 conflicting) > > The following 4 package(s) will be affected (of 0 checked): > > > > New packages to be INSTALLED: > > libxkbfile: 1.0.9 [FreeBSD] > > videoproto: 2.3.3 [FreeBSD] > > libXv: 1.0.11,1 [FreeBSD] > > libepoxy: 1.4.3 [FreeBSD] > > > > Number of packages to be installed: 4 > > > > The process will require 3 MiB more space. > > > > Proceed with this action? [y/N]: y > > [1/4] Installing videoproto-2.3.3... > > [1/4] Extracting videoproto-2.3.3: 100% > > [2/4] Installing libxkbfile-1.0.9... > > [2/4] Extracting libxkbfile-1.0.9: 100% > > [3/4] Installing libXv-1.0.11,1... > > [3/4] Extracting libXv-1.0.11,1: 100% > > [4/4] Installing libepoxy-1.4.3... > > [4/4] Extracting libepoxy-1.4.3: 100% > > > > -- > > Eitan Adler =20 >=20 >=20 >=20 > --=20 > Eitan Adler > _______________________________________________ > 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" --=20 Best Regards. Christopher Hall. From owner-freebsd-ports@freebsd.org Thu May 17 08:08:09 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3E16EDD6A3 for ; Thu, 17 May 2018 08:08:09 +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 40444723EC for ; Thu, 17 May 2018 08:08:09 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 04D54EDD6A2; Thu, 17 May 2018 08:08:09 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6B69EDD6A1 for ; Thu, 17 May 2018 08:08:08 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7FCF4723DD for ; Thu, 17 May 2018 08:08:08 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id C37F9F048 for ; Thu, 17 May 2018 08:08:07 +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 w4H8877s047470 for ; Thu, 17 May 2018 08:08:07 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id w4H887F0047467; Thu, 17 May 2018 08:08:07 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201805170808.w4H887F0047467@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, 17 May 2018 08:08:07 +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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 08:08:09 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ java/jgrapht | 0.7.3 | 1.2.0 ------------------------------------------------+-----------------+------------ net-im/py-matrix-synapse | 0.27.4 | v0.29.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 Thu May 17 09:56:37 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BF57EE4D87 for ; Thu, 17 May 2018 09:56:37 +0000 (UTC) (envelope-from rhurlin@gwdg.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 DB74476F0A for ; Thu, 17 May 2018 09:56:36 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: by mailman.ysv.freebsd.org (Postfix) id 9A6D5EE4D82; Thu, 17 May 2018 09:56:36 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88BFBEE4D81 for ; Thu, 17 May 2018 09:56:36 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from fmailer.gwdg.de (fmailer.gwdg.de [134.76.11.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2645F76F09 for ; Thu, 17 May 2018 09:56:35 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from excmbx-24.um.gwdg.de ([134.76.9.234] helo=email.gwdg.de) by mailer.gwdg.de with esmtp (Exim 4.90_1) (envelope-from ) id 1fJEiT-0006Ia-Qd for ports@FreeBSD.org; Thu, 17 May 2018 10:56:53 +0200 Received: from pc028.nfv.nw-fva.de (134.76.242.1) by EXCMBX-24.um.gwdg.de (2002:864c:9ea::864c:9ea) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1415.2; Thu, 17 May 2018 10:56:53 +0200 To: From: Rainer Hurling Subject: www/firefox-i18n: Install problems on 12.0-CURRENT Message-ID: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> Date: Thu, 17 May 2018 10:56:47 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: de-DE Content-Transfer-Encoding: 7bit X-ClientProxiedBy: EXCMBX-15.um.gwdg.de (2002:864c:9e2::864c:9e2) To EXCMBX-24.um.gwdg.de (2002:864c:9ea::864c:9ea) X-Virus-Scanned: (clean) by clamav X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 09:56:37 -0000 For some time now (Firefox 60.x beta versions and on), I get the following error, if I try to install www/firefox-i18n on 12.0-CURRENT amd64: #make make: "/usr/ports/Mk/Uses/gecko.mk" line 48: warning: "/usr/local/bin/firefox --version 2>/dev/null" returned non-zero status ===> firefox-i18n-60.0.1 cannot install: firefox versions mismatch: firefox- is installed and wanted version is firefox-60. *** Error code 1 Stop. make: stopped in /usr/ports/www/firefox-i18n This happens on three boxes. Any hints are really appreciated. Thanks in advance. Regards, Rainer Hurling From owner-freebsd-ports@freebsd.org Thu May 17 11:21:50 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74B4AEEA424 for ; Thu, 17 May 2018 11:21:50 +0000 (UTC) (envelope-from jbeich@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 162A97A904 for ; Thu, 17 May 2018 11:21:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C757AEEA423; Thu, 17 May 2018 11:21:49 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4DD1EEA422 for ; Thu, 17 May 2018 11:21:49 +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 6D25B7A903; Thu, 17 May 2018 11:21:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 5F67CEA33; Thu, 17 May 2018 11:21:49 +0000 (UTC) From: Jan Beich To: Rainer Hurling Cc: Subject: Re: www/firefox-i18n: Install problems on 12.0-CURRENT References: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> Date: Thu, 17 May 2018 13:21:45 +0200 In-Reply-To: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> (Rainer Hurling's message of "Thu, 17 May 2018 10:56:47 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 11:21:50 -0000 Rainer Hurling writes: > For some time now (Firefox 60.x beta versions and on), I get the > following error, if I try to install www/firefox-i18n on 12.0-CURRENT > amd64: Can you reproduce with firefox binary built by FreeBSD package cluster? $ pkg delete -f firefox $ pkg install firefox $ make install -C/usr/ports/www/firefox-i18n > #make > make: "/usr/ports/Mk/Uses/gecko.mk" line 48: warning: > "/usr/local/bin/firefox --version 2>/dev/null" returned non-zero > status Probably because "firefox --version" crashes. It would be surprising if firefox works fine otherwise. > ===> firefox-i18n-60.0.1 cannot install: firefox versions mismatch: > firefox- > is installed and wanted version is firefox-60. > *** Error code 1 > Stop. > make: stopped in /usr/ports/www/firefox-i18n > > > This happens on three boxes. Any hints are really appreciated. > Thanks in advance. Try to get a backtrace. If you didn't disable DTRACE or PROFILE the package should have non-debug symbols. Alternatively, build firefox itself and all its library dependencies with debug symbols e.g., $ env CFLAGS=-g make clean all install STRIP= WITHOUT=OPTIMIZED_CFLAGS -C /usr/ports/www/firefox $ env CFLAGS=-g make clean all install STRIP= -C /usr/ports/devel/icu ... From owner-freebsd-ports@freebsd.org Thu May 17 12:41:55 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADB52EEEF6A for ; Thu, 17 May 2018 12:41:55 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: from mail-lf0-f52.google.com (mail-lf0-f52.google.com [209.85.215.52]) (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 3A1817DF9C for ; Thu, 17 May 2018 12:41:55 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: by mail-lf0-f52.google.com with SMTP id b18-v6so8525316lfa.9 for ; Thu, 17 May 2018 05:41:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-transfer-encoding; bh=TVNHpRunPZ8JqnT1iXCqoEkUTyQ5W+8Vkh80XaS5mQQ=; b=KP52gdSkz985P47T4lKxsbLiHLFlVg9kYi+VARoV44YmTZOL2pKbgiQrdJKQv5SKf4 +Xkk20GaNeTMtInNOKXzkB9mCmUjpJuNWiowG4WevrCEia99jQE4Po0HCrQx7Mwbjt1f OeJhaNhdQYtdqEzX0oh5Py1PaScOnuPuQoe8y/tf8fMmxv1jay0qtrLuWbaj99n7XDj8 0YdD8/b+vDBa41UZkuZ8BJSQ5dv4yUQI2A/6VOcfw6Dirl9hzMZk7vao6lk3R/XwBdTS lXixv2+WRaVNVLVu60Nqf9SV7qUjtRCr5hDGh2Hfy3cytfx2Sl0cFPRXznIV1JBc6TE8 dYwQ== X-Gm-Message-State: ALKqPwdqA64DSTPyFfWKjj8FJqTys8u/BRImpgWcZyLZNLQtipW1iA+1 qgagsX9GcxYq+YP+VMUUcgDyh49UQqU= X-Google-Smtp-Source: AB8JxZqCTI8q2a3OCU6BGWfXp/MHBM4NHylF9ECL/UCxlM0k9Vb/G+mbY6IK17PLZjvcFhoBBeTOZA== X-Received: by 2002:a19:910c:: with SMTP id t12-v6mr8702888lfd.29.1526560908238; Thu, 17 May 2018 05:41:48 -0700 (PDT) Received: from oxy (89-76-8-18.dynamic.chello.pl. [89.76.8.18]) by smtp.gmail.com with ESMTPSA id r8-v6sm813453ljc.8.2018.05.17.05.41.47 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 17 May 2018 05:41:48 -0700 (PDT) Date: Thu, 17 May 2018 14:42:51 +0200 From: Mateusz Piotrowski <0mp@FreeBSD.org> To: FreeBSD Ports mailing list Subject: Should we Rust warnings suggesting adding work/stage/usr/local/bin to the PATH? Message-ID: <20180517144251.17185e7e@oxy> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; 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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 12:41:55 -0000 Hello, When I build Rust packages I get warnings like this one: > warning: be sure to add `/usr/home/0mp/ports/games/genact/work/stage/usr/local/bin` to your PATH to be able to run the installed binaries It is not very helpful when building ports. Do you think that we should try to mute it by default? Regards, Mateusz From owner-freebsd-ports@freebsd.org Thu May 17 13:27:13 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1156AEF12D5 for ; Thu, 17 May 2018 13:27:13 +0000 (UTC) (envelope-from se@freebsd.org) Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 987DF7F731; Thu, 17 May 2018 13:27:12 +0000 (UTC) (envelope-from se@freebsd.org) Received: from fwd10.aul.t-online.de (fwd10.aul.t-online.de [172.20.26.152]) by mailout12.t-online.de (Postfix) with SMTP id 285D741E56CE; Thu, 17 May 2018 15:27:11 +0200 (CEST) Received: from Stefans-MacBook-Pro-10.local (TvTeReZYZhD2uyWFy+wIfvHPVVuWmhQV5k1sFuyzYDuq7LkCbcZx6Vct8FC0DBcwFG@[84.154.105.176]) by fwd10.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384 encrypted) esmtp id 1fJIvq-1yeMU40; Thu, 17 May 2018 15:26:58 +0200 Subject: Re: Should we Rust warnings suggesting adding work/stage/usr/local/bin to the PATH? To: Mateusz Piotrowski <0mp@FreeBSD.org>, FreeBSD Ports mailing list References: <20180517144251.17185e7e@oxy> From: Stefan Esser Openpgp: preference=signencrypt Autocrypt: addr=se@freebsd.org; prefer-encrypt=mutual; keydata= xsBNBFVxiRIBCADOLNOZBsqlplHUQ3tG782FNtVT33rQli9EjNt2fhFERHIo4NxHlWBpHLnU b0s4L/eItx7au0i7Gegv01A9LUMwOnAc9EFAm4EW3Wmoa6MYrcP7xDClohg/Y69f7SNpEs3x YATBy+L6NzWZbJjZXD4vqPgZSDuMcLU7BEdJf0f+6h1BJPnGuwHpsSdnnMrZeIM8xQ8PPUVQ L0GZkVojHgNUngJH6e21qDrud0BkdiBcij0M3TCP4GQrJ/YMdurfc8mhueLpwGR2U1W8TYB7 4UY+NLw0McThOCLCxXflIeF/Y7jSB0zxzvb/H3LWkodUTkV57yX9IbUAGA5RKRg9zsUtABEB AAHNKVN0ZWZhbiBFw59lciAoWWFob28hKSA8c3QuZXNzZXJAeWFob28uZGU+wsCWBBMBCgBA AhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AWIQSjceplnAvsyCtxUxNH67XvWv31RAUC WvLvqwUJCyUBEwAKCRBH67XvWv31REySCACc6vqcSFQCRyBRc2CV5ZBjbbnTy7VBoXbUS3/c 4Hn8I0YQ39q7//2z8vYsgLeM1mMXL4PUIU/0f0dBAFBLpxV7bntGzyCJls6SeGS/qcQKhqaI 6I7NcWg8OkIJIhUL6q238cS1ql9pU65fyHe0PP8JS08m81PDpX2/4wTE6h2jgYUy55eXRzoF MEjr1S8SSnidsBem27o7iWu9ltJsUtE86071iZlLzbuHv2nvucrjAV9cK9tHrxYT/YiY8QhT L48iWj2xIjLjg1ebmgIFZ2k881we/KTIoUugqOOR1gDSc4qwM8CA388cN3frjtl98CwhAT5T UV8tIDqri+/Z1AKwzsBNBFVxiRIBCACxI/aglzGVbnI6XHd0MTP05VK/fJub4hHdc+LQpz1M kVnCAhFbY9oecTB/togdKtfiloavjbFrb0nJhJnx57K+3SdSuu+znaQ4SlWiZOtXnkbpRWNU eMm+gtTDMSvloGAfr76RtFHskdDOLgXsHD70bKuMhlBxUCrSwGzHaD00q8iQPhJZ5itb3WPq z3B4IjiDAWTO2obD1wtAvSuHuUj/XJRsiKDKW3x13cfavkad81bZW4cpNwUv8XHLv/vaZPSA ly+hkY7NrDZydMMXVNQ7AJQufWuTJ0q7sImRcEZ5EIa98esJPey4O7C0vY405wjeyxpVZkpq ThDMurqtQFn1ABEBAAHCwHwEGAEKACYCGwwWIQSjceplnAvsyCtxUxNH67XvWv31RAUCWvLv qwUJCyUBGQAKCRBH67XvWv31RLnrB/9gzcRlpx71sDMosoZULWn7wysBJ/8AIEfIByRaHQe3 pn/KwE57pB+zFbbQqB7YzeZb7/UUgR4zU2ZbOcEfwDZcHUbj0B3fGRsS3t0uiLlAd8w0sBZb SxrqzjdpDjIbOZkxssqUmvrsN67UG1AFWH9aD24keBS7YjPBS8hLxPeYV+Xz6vUL8fRZje/Z JgiBMIwyj6g2lH/zkdnxBdC0iG1xxJOLTaghMMeQyCdH6ef8+VMyAlAJsMckbOTvx63tY8z7 DFcrnTJfbe1EziRilVsEaK8tTzJzhcTfos+f3eBYWEilxe5HzIhYKJeC7lmsSUcGwa6+9VRg a0ctmi9Z8OgX Message-ID: <104d377a-b10f-8815-451c-15efd341ab02@freebsd.org> Date: Thu, 17 May 2018 15:26:57 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20180517144251.17185e7e@oxy> Content-Type: text/plain; charset=windows-1252 Content-Language: en-US Content-Transfer-Encoding: 7bit X-ID: TvTeReZYZhD2uyWFy+wIfvHPVVuWmhQV5k1sFuyzYDuq7LkCbcZx6Vct8FC0DBcwFG X-TOI-MSGID: 79e39a42-4237-4b16-8361-810a93509bdf X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 13:27:13 -0000 Am 17.05.18 um 14:42 schrieb Mateusz Piotrowski: > Hello, > > When I build Rust packages I get warnings like this one: > >> warning: be sure to add `/usr/home/0mp/ports/games/genact/work/stage/usr/local/bin` to your PATH to be able to run the installed binaries > > It is not very helpful when building ports. Do you think that we should > try to mute it by default? I have seen such a message when building a Haskell based port, too. Seems there are more languages (or build systems) that perform such a check and emit a misleading warning ... Regards, STefan From owner-freebsd-ports@freebsd.org Thu May 17 15:30:22 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F15FEEACF97 for ; Thu, 17 May 2018 15:30:21 +0000 (UTC) (envelope-from rhurlin@gwdg.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 8CA4985241 for ; Thu, 17 May 2018 15:30:21 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: by mailman.ysv.freebsd.org (Postfix) id 4D5F6EACF96; Thu, 17 May 2018 15:30:21 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28881EACF95 for ; Thu, 17 May 2018 15:30:21 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from fmailer.gwdg.de (fmailer.gwdg.de [134.76.11.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B93208523F; Thu, 17 May 2018 15:30:20 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from excmbx-24.um.gwdg.de ([134.76.9.234] helo=email.gwdg.de) by mailer.gwdg.de with esmtp (Exim 4.90_1) (envelope-from ) id 1fJKrC-0007Vy-Mw; Thu, 17 May 2018 17:30:18 +0200 Received: from krabat.raven.hur (91.8.146.52) by EXCMBX-24.um.gwdg.de (2002:864c:9ea::864c:9ea) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1415.2; Thu, 17 May 2018 17:30:18 +0200 From: Rainer Hurling Subject: www/firefox-i18n: Install problems on 12.0-CURRENT To: Jan Beich CC: References: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> Message-ID: Date: Thu, 17 May 2018 17:30:13 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8" Content-Language: de-DE Content-Transfer-Encoding: 7bit X-ClientProxiedBy: EXCMBX-02.um.gwdg.de (2002:864c:9d9::864c:9d9) To EXCMBX-24.um.gwdg.de (2002:864c:9ea::864c:9ea) X-Virus-Scanned: (clean) by clamav X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 15:30:22 -0000 Hi Jan, Am 17.05.2018 um 13:21 schrieb Jan Beich: > Rainer Hurling writes: > >> For some time now (Firefox 60.x beta versions and on), I get the >> following error, if I try to install www/firefox-i18n on 12.0-CURRENT >> amd64: > > Can you reproduce with firefox binary built by FreeBSD package cluster? > > $ pkg delete -f firefox > $ pkg install firefox > $ make install -C/usr/ports/www/firefox-i18n Hmm, I usually install from sources via portmaster. Now, if I try via 'pkg install', I get: #pkg install firefox Updating FreeBSD repository catalogue... FreeBSD repository is up to date. All repositories are up to date. The following 87 package(s) will be affected (of 0 checked): Installed packages to be REMOVED: gdm-3.16.4_3 gnome-terminal-3.24.2 gnome-shell-3.18.5_7 libgnomekbd-3.6.0_2 gnome-keyring-3.18.3_4 pinentry-gnome3-1.1.0 seahorse-3.18.0_1 gstreamer1-plugins-all-1.12 telepathy-gabble-0.18.3_5 gnome-control-center-3.18.2_8 evolution-data-server-3.24.2_9 gnome-contacts-3.18.0_6 gnome-utils-3.18.0,1 evince-3.26.0 nautilus-3.18.5 gimp-app-2.8.22_1,1 py27-gimp-2.8.22_1 gnome-maps-3.24.3 evolution-3.24.2_5 telepathy-qt4-0.9.7_1 py27-game-1.9.1_7 einstein-2.0_10 jools-0.20_11 totem-3.18.1_3 grilo-plugins2-0.2.17_1 libgdata-0.17.8 eog-plugins-3.16.6 cheese-3.18.1_2 mdbtools-0.7.2.a krdc-kde4-4.14.3_6 kdenetwork-kde4-4.14.3_5 krfb-kde4-4.14.3_3 empathy-3.12.14_1 telepathy-farstream-0.6.2_2 folks-0.11.4 sushi-3.18.0_1 file-roller-3.26.1,1 gvfs-1.26.3_9 gnome-photos-3.24.2_2 libcryptui-3.12.2_1 gnome-online-miners-3.14.3_1 gnome-documents-3.24.2 kde-4.14.3_7 caribou-0.4.21_1 libgnomeui-2.24.5 eclipse-4.6_2 libgnomesu-1.0.0_13 py27-gnome-2.28.1_8 brasero-3.12.2 gimp-gmic-plugin-1.6.9_14 gimp-lqr-plugin-0.7.2 libpurple-2.13.0 telepathy-haze-0.8.0_2 epiphany-3.24.2_5 gimp-2.8.22,2 gimp-gutenprint-5.2.13 gnome-user-share-3.14.0_2 gimp-focusblur-plugin-3.2.6_6 gnome-shell-extensions-3.18.4 gnome-todo-3.18.1_8 gnome-calendar-3.18.2.1_7 gstreamer1-plugins-dv-1.12.3 autopano-sift-C-2.5.1_5 gstreamer1-plugins-aalib-1.12.3 New packages to be INSTALLED: firefox: 60.0_2,1 Installed packages to be REINSTALLED: libmpeg2-0.5.1_6 libproxy-0.4.12 geocode-glib-3.18.2 upower-0.99.4 gnome-power-manager-3.18.0 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') liboauth-1.0.3_3 libgnomeprint-2.18.8_4 libgnomecups-0.2.3_8,1 libijs-0.35_5 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') gsound-1.0.2 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') libcue-2.1.0 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') libao-1.2.0_3 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') libotr-4.1.1 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') libmms-0.6.4_1 libirman-0.4.6 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') qqwing-1.3.4_1 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') spandsp-0.0.6 gsm-1.0.13_2 phonon-gstreamer-4.9.0_1 (options changed) CoinMP-1.8.3 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') plotutils-2.6_7,1 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') cracklib-2.9.6 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') Number of packages to be removed: 64 Number of packages to be installed: 1 Number of packages to be reinstalled: 22 The operation will free 485 MiB. 48 MiB to be downloaded. I did not install via 'pkg install', because it is to destructive for my box. But, I did reinstall the 22 ports via portmaster, mentioned by 'pkg install'. > >> #make >> make: "/usr/ports/Mk/Uses/gecko.mk" line 48: warning: >> "/usr/local/bin/firefox --version 2>/dev/null" returned non-zero >> status > > Probably because "firefox --version" crashes. It would be surprising > if firefox works fine otherwise. Nope, it does not crash (built from sources): #firefox --version Mozilla Firefox 60.0.1 I think, I found the problem: It is the way, I am using portmaster and/or make install, always as root, not a normal user. If I do 'make' as a normal user, the error does not occur, only as root. This is, because 'firefox --version' is not possible as root any more. It breaks with: #firefox --version Running Firefox as root in a regular user's session is not supported. ($HOME is /home/rhurlin which is owned by rhurlin.) As far as I can say, this behaviour of www/firefox was not before version 60.x. Is there any chance, to get this back for 'make built' as root? > >> ===> firefox-i18n-60.0.1 cannot install: firefox versions mismatch: >> firefox- >> is installed and wanted version is firefox-60. >> *** Error code 1 >> Stop. >> make: stopped in /usr/ports/www/firefox-i18n >> >> >> This happens on three boxes. Any hints are really appreciated. >> Thanks in advance. > > Try to get a backtrace. If you didn't disable DTRACE or PROFILE the > package should have non-debug symbols. Alternatively, build firefox > itself and all its library dependencies with debug symbols e.g., > > $ env CFLAGS=-g make clean all install STRIP= WITHOUT=OPTIMIZED_CFLAGS -C /usr/ports/www/firefox > $ env CFLAGS=-g make clean all install STRIP= -C /usr/ports/devel/icu > ... > Did not tried this, because I think I found the problem within /usr/ports/Mk/Uses/gecko.mk:48, which uses 'firefox --version' as root in my case ... Many thanks, Jan, for the fast response and the suggestions, you made. Best wishes, Rainer From owner-freebsd-ports@freebsd.org Thu May 17 16:03:35 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 334A3EAF6A0 for ; Thu, 17 May 2018 16:03:35 +0000 (UTC) (envelope-from sikmir@gmail.com) Received: from mail-lf0-x230.google.com (mail-lf0-x230.google.com [IPv6:2a00:1450:4010:c07::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 92977682EA for ; Thu, 17 May 2018 16:03:34 +0000 (UTC) (envelope-from sikmir@gmail.com) Received: by mail-lf0-x230.google.com with SMTP id m17-v6so9552741lfj.8 for ; Thu, 17 May 2018 09:03:34 -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; bh=zw7aWkf57ztUkxTotr89Ok7gbNUdqme3q+NkKUHi54k=; b=fg3xk5L/bgl98ZPxq6IA5Bd6K/+z6150rlvGZPFoDsdVdImsNsCPc8PuRCv7FLDmtK 1j80PnsVc6sSf5QV7xTMwSL99n6oKqCsUrfxbc1p4LWx3mp8031ti7HO77EOLfjXaBse HeIm6HgsHNGyeV3kB7Jrhql+Epurs8e7AbQR9Lgd1nQKoe6ivpPfIMLCj3xC7IGwnHlj XVSNbi9NPMmzzB71Jk8785ptKU0M4aAIH4LP4MtUjRpHLIoE8aoPau/bNVRSHiSUt4YB t+JWnTKsVTSqdAMrnx0CpGziEFwXZzMMVLa3c0K546Sy+ey0SDFjJDGxsL7sYxfu71bM D5BA== 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=zw7aWkf57ztUkxTotr89Ok7gbNUdqme3q+NkKUHi54k=; b=RM36qyFYBVVIJp4GeeZ801Wxw4LyCynxenQjkqOg/DkJ21Hr8m7wA4LIc0LwCUpnRs SDh0yJ4mJYqmKzA7n5LZHCnesQSI38aWZRdhLyafXB9FwWTozeu3DKwRqut/94YpeaLn GYvAIbJjLrCIXTnINp6T9UffI4RwYtk2FBEdrRquxNEK10bNNqEk3LH91SP9gPG2SyUL zc/c968GblKq7YFZzRGUvGf3DO8Bj4tY0A48LGh4Zz36b8fj834Gq6d3DbWGy2iH08hs 6VpP/Vm70p2XPXIusrxjs4fmFULgWDspynFGH0lZUQHf9fkahmv4NNIm9R5bFFywTXzb oxPQ== X-Gm-Message-State: ALKqPwdyz0pToTHInrezKxQMlnQJQNAe8O2Ep1S8xwMsQdU9VVohxXl2 43IcD21PM2XToV15XyKd1hNbPSl4oqIRpyAI661oJhYl X-Google-Smtp-Source: AB8JxZolAd9TJbQQUS/2exhoxh8757X82n3fQDj58ywmjL+d/6e3iNE2DKcoWTufPNhMAHB0/OsEzpTriPoqfEe5DH0= X-Received: by 2002:a19:5d43:: with SMTP id p3-v6mr2221273lfj.142.1526573013026; Thu, 17 May 2018 09:03:33 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a19:2948:0:0:0:0:0 with HTTP; Thu, 17 May 2018 09:03:32 -0700 (PDT) From: Nikolay Korotkiy Date: Thu, 17 May 2018 19:03:32 +0300 Message-ID: Subject: PR looking for committer To: freebsd-ports@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 16:03:35 -0000 Hi All, Could someone committer please have a look at this? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227507 -- Best regards, Nikolay From owner-freebsd-ports@freebsd.org Thu May 17 16:15:11 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D39CEAFFC6 for ; Thu, 17 May 2018 16:15:11 +0000 (UTC) (envelope-from rhurlin@gwdg.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 E2E59689AC for ; Thu, 17 May 2018 16:15:10 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: by mailman.ysv.freebsd.org (Postfix) id A3E40EAFFBF; Thu, 17 May 2018 16:15:10 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81AD8EAFFBD for ; Thu, 17 May 2018 16:15:10 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from fmailer.gwdg.de (fmailer.gwdg.de [134.76.11.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43B9B689A6; Thu, 17 May 2018 16:15:09 +0000 (UTC) (envelope-from rhurlin@gwdg.de) Received: from excmbx-24.um.gwdg.de ([134.76.9.234] helo=email.gwdg.de) by mailer.gwdg.de with esmtp (Exim 4.90_1) (envelope-from ) id 1fJLYa-0008Er-L7; Thu, 17 May 2018 18:15:08 +0200 Received: from krabat.raven.hur (91.8.146.52) by EXCMBX-24.um.gwdg.de (2002:864c:9ea::864c:9ea) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1415.2; Thu, 17 May 2018 18:15:08 +0200 Subject: Re: www/firefox-i18n: Install problems on 12.0-CURRENT From: Rainer Hurling To: Jan Beich CC: References: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> Message-ID: <3e7ab4f2-67e7-6fd5-cde5-91a1df4ae3d4@gwdg.de> Date: Thu, 17 May 2018 18:15:07 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8" Content-Language: de-DE Content-Transfer-Encoding: 7bit X-ClientProxiedBy: EXCMBX-03.um.gwdg.de (2002:864c:9da::864c:9da) To EXCMBX-24.um.gwdg.de (2002:864c:9ea::864c:9ea) X-Virus-Scanned: (clean) by clamav X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 16:15:11 -0000 Sorry for answering myself. But I found the changes in Firefox 60.x, please see above. Am 17.05.2018 um 17:30 schrieb Rainer Hurling: > Hi Jan, > > Am 17.05.2018 um 13:21 schrieb Jan Beich: >> Rainer Hurling writes: >> >>> For some time now (Firefox 60.x beta versions and on), I get the >>> following error, if I try to install www/firefox-i18n on 12.0-CURRENT >>> amd64: >> >> Can you reproduce with firefox binary built by FreeBSD package cluster? >> >> $ pkg delete -f firefox >> $ pkg install firefox >> $ make install -C/usr/ports/www/firefox-i18n > > Hmm, I usually install from sources via portmaster. Now, if I try via > 'pkg install', I get: > > > #pkg install firefox > Updating FreeBSD repository catalogue... > FreeBSD repository is up to date. > All repositories are up to date. > The following 87 package(s) will be affected (of 0 checked): > > Installed packages to be REMOVED: > gdm-3.16.4_3 > gnome-terminal-3.24.2 > gnome-shell-3.18.5_7 > libgnomekbd-3.6.0_2 > gnome-keyring-3.18.3_4 > pinentry-gnome3-1.1.0 > seahorse-3.18.0_1 > gstreamer1-plugins-all-1.12 > telepathy-gabble-0.18.3_5 > gnome-control-center-3.18.2_8 > evolution-data-server-3.24.2_9 > gnome-contacts-3.18.0_6 > gnome-utils-3.18.0,1 > evince-3.26.0 > nautilus-3.18.5 > gimp-app-2.8.22_1,1 > py27-gimp-2.8.22_1 > gnome-maps-3.24.3 > evolution-3.24.2_5 > telepathy-qt4-0.9.7_1 > py27-game-1.9.1_7 > einstein-2.0_10 > jools-0.20_11 > totem-3.18.1_3 > grilo-plugins2-0.2.17_1 > libgdata-0.17.8 > eog-plugins-3.16.6 > cheese-3.18.1_2 > mdbtools-0.7.2.a > krdc-kde4-4.14.3_6 > kdenetwork-kde4-4.14.3_5 > krfb-kde4-4.14.3_3 > empathy-3.12.14_1 > telepathy-farstream-0.6.2_2 > folks-0.11.4 > sushi-3.18.0_1 > file-roller-3.26.1,1 > gvfs-1.26.3_9 > gnome-photos-3.24.2_2 > libcryptui-3.12.2_1 > gnome-online-miners-3.14.3_1 > gnome-documents-3.24.2 > kde-4.14.3_7 > caribou-0.4.21_1 > libgnomeui-2.24.5 > eclipse-4.6_2 > libgnomesu-1.0.0_13 > py27-gnome-2.28.1_8 > brasero-3.12.2 > gimp-gmic-plugin-1.6.9_14 > gimp-lqr-plugin-0.7.2 > libpurple-2.13.0 > telepathy-haze-0.8.0_2 > epiphany-3.24.2_5 > gimp-2.8.22,2 > gimp-gutenprint-5.2.13 > gnome-user-share-3.14.0_2 > gimp-focusblur-plugin-3.2.6_6 > gnome-shell-extensions-3.18.4 > gnome-todo-3.18.1_8 > gnome-calendar-3.18.2.1_7 > gstreamer1-plugins-dv-1.12.3 > autopano-sift-C-2.5.1_5 > gstreamer1-plugins-aalib-1.12.3 > > New packages to be INSTALLED: > firefox: 60.0_2,1 > > Installed packages to be REINSTALLED: > libmpeg2-0.5.1_6 > libproxy-0.4.12 > geocode-glib-3.18.2 > upower-0.99.4 > gnome-power-manager-3.18.0 (ABI changed: 'freebsd:11:x86:64' -> > 'freebsd:12:x86:64') > liboauth-1.0.3_3 > libgnomeprint-2.18.8_4 > libgnomecups-0.2.3_8,1 > libijs-0.35_5 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > gsound-1.0.2 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > libcue-2.1.0 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > libao-1.2.0_3 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > libotr-4.1.1 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > libmms-0.6.4_1 > libirman-0.4.6 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > qqwing-1.3.4_1 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > spandsp-0.0.6 > gsm-1.0.13_2 > phonon-gstreamer-4.9.0_1 (options changed) > CoinMP-1.8.3 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > plotutils-2.6_7,1 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > cracklib-2.9.6 (ABI changed: 'freebsd:11:x86:64' -> 'freebsd:12:x86:64') > > Number of packages to be removed: 64 > Number of packages to be installed: 1 > Number of packages to be reinstalled: 22 > > The operation will free 485 MiB. > 48 MiB to be downloaded. > > > I did not install via 'pkg install', because it is to destructive for my > box. But, I did reinstall the 22 ports via portmaster, mentioned by 'pkg > install'. > >> >>> #make >>> make: "/usr/ports/Mk/Uses/gecko.mk" line 48: warning: >>> "/usr/local/bin/firefox --version 2>/dev/null" returned non-zero >>> status >> >> Probably because "firefox --version" crashes. It would be surprising >> if firefox works fine otherwise. > > Nope, it does not crash (built from sources): > > #firefox --version > Mozilla Firefox 60.0.1 > > > I think, I found the problem: It is the way, I am using portmaster > and/or make install, always as root, not a normal user. > > If I do 'make' as a normal user, the error does not occur, only as root. > This is, because 'firefox --version' is not possible as root any more. This new behaviour of firefox 60.x is intended, see [1][2]. I think we have to find another way to do the version check in /usr/ports/Mk/Uses/gecko.mk:48 as root. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1323302 [2] https://hg.mozilla.org/integration/autoland/rev/90a06cdcb48f > It breaks with: > > #firefox --version > Running Firefox as root in a regular user's session is not supported. > ($HOME is /home/rhurlin which is owned by rhurlin.) > > > As far as I can say, this behaviour of www/firefox was not before > version 60.x. Is there any chance, to get this back for 'make built' as > root? > > >> >>> ===> firefox-i18n-60.0.1 cannot install: firefox versions mismatch: >>> firefox- >>> is installed and wanted version is firefox-60. >>> *** Error code 1 >>> Stop. >>> make: stopped in /usr/ports/www/firefox-i18n >>> >>> >>> This happens on three boxes. Any hints are really appreciated. >>> Thanks in advance. >> >> Try to get a backtrace. If you didn't disable DTRACE or PROFILE the >> package should have non-debug symbols. Alternatively, build firefox >> itself and all its library dependencies with debug symbols e.g., >> >> $ env CFLAGS=-g make clean all install STRIP= WITHOUT=OPTIMIZED_CFLAGS -C /usr/ports/www/firefox >> $ env CFLAGS=-g make clean all install STRIP= -C /usr/ports/devel/icu >> ... >> > > Did not tried this, because I think I found the problem within > /usr/ports/Mk/Uses/gecko.mk:48, which uses 'firefox --version' as root > in my case ... > > Many thanks, Jan, for the fast response and the suggestions, you made. > > Best wishes, > Rainer From owner-freebsd-ports@freebsd.org Thu May 17 20:02:31 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1AE1EDF3AD for ; Thu, 17 May 2018 20:02:31 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from home.opsec.eu (unknown [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 6A52D748DB for ; Thu, 17 May 2018 20:02:31 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fJP6g-0001Qg-25; Thu, 17 May 2018 22:02:34 +0200 Date: Thu, 17 May 2018 22:02:34 +0200 From: Kurt Jaeger To: Nikolay Korotkiy Cc: freebsd-ports@freebsd.org Subject: Re: PR looking for committer Message-ID: <20180517200233.GE37752@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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 20:02:32 -0000 Hi! > Could someone committer please have a look at this? > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227507 Done, thanks for the submission! -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Thu May 17 22:43:31 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FD30EE27AA for ; Thu, 17 May 2018 22:43:31 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [IPv6:2001:470:8d6f:1001::2]) (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 C53557A263; Thu, 17 May 2018 22:43:30 +0000 (UTC) (envelope-from john@saltant.com) Received: from statler.priv.n.saltant.net (unknown [IPv6:2001:470:8d6f:0:e846:d746:756a:3b9e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id C0CAD111E5; Thu, 17 May 2018 18:43:29 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526597009; bh=INzVj2LrmCD6ZTLyoJ5e2pbwxSmxzZtl0kTjKOdp7Tc=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=hW1ZvzBO4T4XMgXRho5ftLDAm6FwnUnSbKnsep8sxW0UPVZPcNphjDoNt4KOXGRuS VyZMAlQVv8mYNR4j/ctUudxaKMzJ8lzSarHFmUaoVRvr+sm6RqTWMvJ61W26+lTQam jjoQyOG1MHh7c4O0ICZtl+wEjk+lkQ85OZRTnnt/Eq8h07LxSGgfuQgAlOXXinelQ4 suycAMPLKw8QoRuI9SCYylXUxeTjsiX4lIyHPJd8fDg+SIYz9MmDUO+tbwrXbhccvv n91er92NgzZhJbWo3Lc6tdEb38oHh9kgf+x3lq4vRKmXe0VF/6kcRz7Yt8OSDtWyyv bLrokd+3IxnHg== Subject: Re: Practice of "Sponsored by" in commit messages To: Maxim Sobolev Cc: FreeBSD Ports References: From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> Date: Thu, 17 May 2018 18:43:25 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="XzZylNZFp0InfREf4gwAdQEerniP8HJgr" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 22:43:31 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --XzZylNZFp0InfREf4gwAdQEerniP8HJgr Content-Type: multipart/mixed; boundary="52Q63lRXW8gZSO3YM6fGEotGPUesvWJF4"; protected-headers="v1" From: "John W. O'Brien" To: Maxim Sobolev Cc: FreeBSD Ports Message-ID: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: In-Reply-To: --52Q63lRXW8gZSO3YM6fGEotGPUesvWJF4 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/14 20:14, Maxim Sobolev wrote: > What's wrong with a current practice. Why is it of any concern to you, > John? Just curious that is not very clear from your message. It is like= > someone trying to moderate what people in general or some group in > particular (e.g. freebsd committers) are allowed to put on their > t-shirts just because you find it offensive or inappropriate. I don't find crediting sponsors offensive nor inappropriate. Quite the contrary. What I find problematic is when multiple people do work, not all with sponsorship or the same sponsorship, and only one person's sponsor is mentioned in a way that seems to imply that all the work was sponsored. What I'm proposing is not to end or ban the practice, but to improve and refine it so that sponsors are credited for what they sponsor and not for what they don't sponsor. Is that clearer? > On Mon, May 14, 2018, 4:40 PM John W. O'Brien > wrote: >=20 > Hello FreeBSD Ports, >=20 > The Committer's Guide section on Commit Log Messages [0], doesn't c= over > the use of the "Sponsored by" key word. As a non-committer contribu= tor, > it only recently occurred to me to wonder what work that credit is > intended to represent, and whether some light definition would be > helpful to reduce ambiguity. >=20 > When a committer credits a sponsor of theirs, from which the contri= butor > received no sponsorship, the portrayal feels a little awkward. Does= this > strike the list as a problem, and if so, how ought it be solved? >=20 > To make this concrete, allow me to illustrate the situation. >=20 > Alice, working on her own time, prepares and contributes a patch. B= ob, > who works for Acme Corp, reviews and commits the patch on company t= ime. > The commit message includes "Sponsored by: Acme Corp". Alice eagerl= y > awaits her check from Acme Corp. Should the commit message have rea= d > "Sponsored by: Acme Corp (Bob)"? >=20 > This could be extensible to multiple sponsorships. If, instead, Ali= ce > prepares the patch having received a grant to do so from Best Sys D= ev, > the commit message could state "Sponsored by: Acme Corp (Bob), Best= Sys > Dev (Alice)". >=20 > [0] > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-gui= de/article.html#commit-log-message >=20 > PS: I realize that this issue transcends ports, but it's not clear = where > I should send this instead, and this list seems like it would have = a > reasonably high concentration of people with a stake in the discuss= ion. --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --52Q63lRXW8gZSO3YM6fGEotGPUesvWJF4-- --XzZylNZFp0InfREf4gwAdQEerniP8HJgr Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr+BY0ACgkQWPtK56pP /m4s3gf8CH5kAmx6Dy/eBgjZ37edsXFRoAfWe19dbuPnq1fU2V9dWrkW8uF7lhTJ tkRIXUjG6DgkJY9nOxDcBbOrp8noJh8eglERekAwzdfI20Y/QqqHj5MUYMwTRxfs O5BQGCHf1d3pk5JqrWJ7i9IamaPcRrGl3kwjPJpYhhiM0ZesDe7LbhiEBLViq+9P PJtQvBC/vpSxOprbsOO1gWEkiE5/iHRFxoSsAGM0tL5QsXbr347vi7oP/3dOzJ3W 56FA7PVY7d6I0K40Jl2EPUFNV7cGGHRnsFu5mB7EGqkniY/Y61zqpeEfVNEwOOul EKerY+HNSGigv0C00ileaFfKhi3YNg== =Syb7 -----END PGP SIGNATURE----- --XzZylNZFp0InfREf4gwAdQEerniP8HJgr-- From owner-freebsd-ports@freebsd.org Thu May 17 22:54:37 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB957EE2A90 for ; Thu, 17 May 2018 22:54:36 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [72.78.188.147]) (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 5D8C47A64D; Thu, 17 May 2018 22:54:36 +0000 (UTC) (envelope-from john@saltant.com) Received: from statler.priv.n.saltant.net (unknown [IPv6:2001:470:8d6f:0:e846:d746:756a:3b9e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id 24617111EC; Thu, 17 May 2018 18:54:30 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526597670; bh=Nx28v+CVxSxXFZR3DtUJfgBbuwxCJ9reXYoIL8/GEkw=; h=Subject:To:References:From:Date:In-Reply-To; b=rTyBOGASGRFPXX4aeA3pOobAFPpEisG5oN0GCcxXFtoEuPkYX/OI/uvjwhhNqzMTA dcs1lqwAUSarE6cB1s/OXEMU8oTYasuyN9BQ2zKHSkZUB7hzHMk7uMP89PAftGo7Td r77jAu9dnUlOZ7VX8Dgmgw5/6XA+dxRHPLn6lWZ7JSlNU6mOE9OoWB299JQRnrUSjr ZoXpANbHt5t58yqCdNj3miJBzevJDp0JFGx3NnR0owJv8FGVQJzvhQdvM8dKpEfuCE 3m/h9gFUsOvjv0FoVZKwzJCaIFw1idh1JwcOOSBVHlwwKU1XVdSdv8icZo1GBPl52B CAGQwoEHh3R1A== Subject: Re: Practice of "Sponsored by" in commit messages To: Julian Elischer , FreeBSD Ports References: <9260b48c-cdeb-e144-b4af-8ea43f730303@freebsd.org> From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: Date: Thu, 17 May 2018 18:54:29 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <9260b48c-cdeb-e144-b4af-8ea43f730303@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="fm7ZTi3jCSEAcaPD8qPEO9PHwXpo79EsQ" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 22:54:37 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --fm7ZTi3jCSEAcaPD8qPEO9PHwXpo79EsQ Content-Type: multipart/mixed; boundary="yKfu3Xblqz21O3ZWfffs3T02U3HIMNtzT"; protected-headers="v1" From: "John W. O'Brien" To: Julian Elischer , FreeBSD Ports Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages References: <9260b48c-cdeb-e144-b4af-8ea43f730303@freebsd.org> In-Reply-To: <9260b48c-cdeb-e144-b4af-8ea43f730303@freebsd.org> --yKfu3Xblqz21O3ZWfffs3T02U3HIMNtzT Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/14 20:25, Julian Elischer wrote: > On 15/5/18 7:40 am, John W. O'Brien wrote: >> Hello FreeBSD Ports, >> >> The Committer's Guide section on Commit Log Messages [0], doesn't cove= r >> the use of the "Sponsored by" key word. As a non-committer contributor= , >> it only recently occurred to me to wonder what work that credit is >> intended to represent, and whether some light definition would be >> helpful to reduce ambiguity. >> >> When a committer credits a sponsor of theirs, from which the contribut= or >> received no sponsorship, the portrayal feels a little awkward. Does th= is >> strike the list as a problem, and if so, how ought it be solved? >> >> To make this concrete, allow me to illustrate the situation. >> >> Alice, working on her own time, prepares and contributes a patch. Bob,= >> who works for Acme Corp, reviews and commits the patch on company time= =2E >> The commit message includes "Sponsored by: Acme Corp". Alice eagerly >> awaits her check from Acme Corp. Should the commit message have read >> "Sponsored by: Acme Corp (Bob)"? >=20 > Probably not for just a review, unless it was pretty in depth and took > many hours. It sounds like my example didn't make the point I intended. I was trying to highlight the fact that the unqualified credit in the example makes it seem like Alice's efforts were funded by the sponsor when they weren't. If Alice's efforts were trivial while Bob's were substantial, maybe that's no big deal. If the reverse is true, then I think there is a problem, which is why I propose qualifying the credit. Ambiguous: Sponsored by: Acme Corp Qualified: Sponsored by: Acme Corp (Bob) To be clear, a committer who "just" reviews and commits a contributed patch should definitely be able to credit their employer at their discretion. > However we want to give some sort of acknowledgement > to companies that do allow their work to be incorporated, and who allow= > their employees to do some FreeBSD work as part of their duties. > It also makes their name familiar to the readers of the commit emails > and often results in others seeking work there etc. > =C2=A0"Sponsored by:"=C2=A0 generally means "some (maybe small) part of= this work > was developed > by someone being paid". It does not specify how much, and it is > generally left to the committer > to decide if it was meaningful.=C2=A0=C2=A0 In some cases it is deliber= ately NOT > entered despite > the developer being paid. (e.g. when a company is in stealth mode, or > when some political > issue is relevant and people don't want to draw attention). I agree that the practice should not aim to quantify the relative contributions, and that the decision to credit a sponsor should be left to each participant. >> This could be extensible to multiple sponsorships. If, instead, Alice >> prepares the patch having received a grant to do so from Best Sys Dev,= >> the commit message could state "Sponsored by: Acme Corp (Bob), Best Sy= s >> Dev (Alice)". >> >> [0] >> https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/= article.html#commit-log-message >> >> >> PS: I realize that this issue transcends ports, but it's not clear whe= re >> I should send this instead, and this list seems like it would have a >> reasonably high concentration of people with a stake in the discussion= =2E >> >=20 --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --yKfu3Xblqz21O3ZWfffs3T02U3HIMNtzT-- --fm7ZTi3jCSEAcaPD8qPEO9PHwXpo79EsQ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr+CCUACgkQWPtK56pP /m7W1Qf/cg+u6omZX6MhT+ctQHUiTL0FAmPrjWE888+hsHvx0IEClyVw54gY0MHE cSK9q4NKiR5CYTf8PbIb/PfzTxxi1woKyw7UeamEKocgu1HxGemliRUCDGisBVeX kwhoYjmnmrG4QBZOrPKDQO8t5Gs/lcr1gAU5D0dLznHRmiyUOwKwW//zh4i7zmgX mUBMoJ7Lic1siOi1Y7hpMYT9xoG7A5tEdP/V0L2cvks+Nt7eNVpDyohfWBhIv1oy LDZ0xMoMvY6QauLTrHBdfDCU+WZdS4yWJF0+e5vt1uJ5vPi5on0soVd/Xy52uUtf X+tb2dm2pvK4rfAzyw4pyi8lK8g8JA== =fC0Y -----END PGP SIGNATURE----- --fm7ZTi3jCSEAcaPD8qPEO9PHwXpo79EsQ-- From owner-freebsd-ports@freebsd.org Thu May 17 23:18:47 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BF70EE2FC7 for ; Thu, 17 May 2018 23:18:47 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: from mail-ot0-x235.google.com (mail-ot0-x235.google.com [IPv6:2607:f8b0:4003:c0f::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B3F567AF7C for ; Thu, 17 May 2018 23:18:46 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: by mail-ot0-x235.google.com with SMTP id l12-v6so7003994oth.6 for ; Thu, 17 May 2018 16:18:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sippysoft-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=S/PD9MWZ/8kncYDmXpsJOoRJqU6J2qN+icvYEJQ08rA=; b=yFSipXS5wqrjynlYYC0jO0bLD7i1HubbMOaEaZKbei2qwRlnV3w5PIqcXinf4Yi3zr rjlezrvdj6XJFLpUqkf4Nq0GJjvrXXXe/78B7BbLP5J79F5GptiDohDhMzA8ZHDpw+K1 VtjQYHLPpOZFon5GjJxt1ZhynCHrUWlgV1weAbt6c4DrFAC9pD0vy9VL4pitQzVkR3be qdl9rMiYNP+ZUcHcPSBxfhjcwe8RATxB8OiHo3kiw9nYQX5cFfqEVoEIYL5RfaOXImEY EJa/g97LDRMMEfei7MQLzATP+WOnjikgyd0dQnH/7jrBAdRl5gYZdgl25Gapt0m0fKCy Kbdw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=S/PD9MWZ/8kncYDmXpsJOoRJqU6J2qN+icvYEJQ08rA=; b=jOy+eFLYPOOr3ntbdnQ0oJ1VOQ2kMdxrAx+mVF5zhteRnHUybaGJGWEZV76EY5B6XR onbRgv/0W885LO3J1zGHPDvLCLnsvTbETDVVOgDlq96WhrwK3/UwYr1zOJF1DRnpGP4A AjkO2K7euFU+5ozn5kfu4VZDQr30Wd46MJwA23bUGJnIST/CorFL7ToT3duEvUlRzZy6 KtGBb9P8TlQX7r6s3M2Yh8TGZBZ6h//a+3DKFVvOuhB6pw7/IXgYHaZK7nZtENA7CRv4 +T26taOTqsGUSoQJ9HFDENP5A3qNNpDeN9ULBojFljA8b2d5lU8oScCnNtep9YHII5hd 0/Mw== X-Gm-Message-State: ALKqPweSZUpTz+LrHvK0szlA1IV0Kkwoqe7LkRAya4bvnfkLO06MfV4x Js47RFgRN7JV+a9l5fGtfyNlDZ1YES3EA4S72tgHpQ== X-Google-Smtp-Source: AB8JxZri9YXA51Rs/9F3TFJerKk340u5l5lA9AKSqHaFDv9BqLhLdx2b8EbfIhqfFTb/bEX0Q+p/91/+NhipiDaazXg= X-Received: by 2002:a9d:48f1:: with SMTP id a46-v6mr4775293otj.94.1526599122670; Thu, 17 May 2018 16:18:42 -0700 (PDT) MIME-Version: 1.0 Sender: sobomax@sippysoft.com Received: by 10.201.93.67 with HTTP; Thu, 17 May 2018 16:18:42 -0700 (PDT) In-Reply-To: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> From: Maxim Sobolev Date: Thu, 17 May 2018 16:18:42 -0700 X-Google-Sender-Auth: rNVACRIx_xxHJxD0E1X7IVrJkc0 Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: "John W. O'Brien" Cc: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 23:18:47 -0000 John, no, not really, sorry. Work is done, credit is given. The form and amount of this credit is between whoever does the work and whoever is being credited. I don't see why is there any third-party to be involved in governing whether or not this credit is "appropriate", "sufficient" or "all encompassing" for the work in question. This is just a credit, it does not affect the quality of work, nor the license (which is 2-clause BSD) nor the copyright holder. Three things that really matter long-time. So "Sponsored by" it's just the message on the t-shirt, having only meaning to whoever produces the piece and whoever wears it, but nothing in particular to the outside world. IMHO. -Max On Thu, May 17, 2018 at 3:43 PM, John W. O'Brien wrote: > On 2018/05/14 20:14, Maxim Sobolev wrote: > > What's wrong with a current practice. Why is it of any concern to you, > > John? Just curious that is not very clear from your message. It is like > > someone trying to moderate what people in general or some group in > > particular (e.g. freebsd committers) are allowed to put on their > > t-shirts just because you find it offensive or inappropriate. > > I don't find crediting sponsors offensive nor inappropriate. Quite the > contrary. What I find problematic is when multiple people do work, not > all with sponsorship or the same sponsorship, and only one person's > sponsor is mentioned in a way that seems to imply that all the work was > sponsored. > > What I'm proposing is not to end or ban the practice, but to improve and > refine it so that sponsors are credited for what they sponsor and not > for what they don't sponsor. > > Is that clearer? > > > On Mon, May 14, 2018, 4:40 PM John W. O'Brien > > wrote: > > > > Hello FreeBSD Ports, > > > > The Committer's Guide section on Commit Log Messages [0], doesn't > cover > > the use of the "Sponsored by" key word. As a non-committer > contributor, > > it only recently occurred to me to wonder what work that credit is > > intended to represent, and whether some light definition would be > > helpful to reduce ambiguity. > > > > When a committer credits a sponsor of theirs, from which the > contributor > > received no sponsorship, the portrayal feels a little awkward. Does > this > > strike the list as a problem, and if so, how ought it be solved? > > > > To make this concrete, allow me to illustrate the situation. > > > > Alice, working on her own time, prepares and contributes a patch. > Bob, > > who works for Acme Corp, reviews and commits the patch on company > time. > > The commit message includes "Sponsored by: Acme Corp". Alice eagerly > > awaits her check from Acme Corp. Should the commit message have read > > "Sponsored by: Acme Corp (Bob)"? > > > > This could be extensible to multiple sponsorships. If, instead, Alice > > prepares the patch having received a grant to do so from Best Sys > Dev, > > the commit message could state "Sponsored by: Acme Corp (Bob), Best > Sys > > Dev (Alice)". > > > > [0] > > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/ > committers-guide/article.html#commit-log-message > > > > PS: I realize that this issue transcends ports, but it's not clear > where > > I should send this instead, and this list seems like it would have a > > reasonably high concentration of people with a stake in the > discussion. > > > -- > John W. O'Brien > OpenPGP keys: > 0x33C4D64B895DBF3B > > From owner-freebsd-ports@freebsd.org Thu May 17 23:29:38 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15A4CEE327C for ; Thu, 17 May 2018 23:29:38 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [IPv6:2001:470:8d6f:1001::2]) (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 9BB0C7B38D; Thu, 17 May 2018 23:29:37 +0000 (UTC) (envelope-from john@saltant.com) Received: from dither.saltant.net (dither.saltant.net [IPv6:2001:470:8d6f:1001::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id F014311202; Thu, 17 May 2018 19:29:36 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526599777; bh=PbNMmtL/z950h0/M2f8n/jBhBIdayowyNi9osAlGLis=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=Gw+JhMVngvR1o5isEaD6pIt3lwfMK3k9G23xToHAKod0Rk0fP4HxhQA6iv/B9RWKB 0V3ap3ysKwwqQ2NM/8XSNqqBwBPgNaWJYOZcaCsogWmOBQN4tL5k3qz7WJrdB8fptW 6Se291oBFrZw15vHO5noeftOvEL9QgfDlEqY+FNoR7e1oaiC5ToxNvD3rNx6q4ze7Z V5gPTC2b9PACtmFGj/uT2HUMU+iTvexig4lY75VtOMOWW3FshtRXKJwyZdTCwCXZiC cRAUYRVNzlwf/ZKZfoHQF479YwUHTqQ1XWiVEYLQNQpnvJuNzRRrkkesbBLEI3386h bnS6CR2ldRDWQ== Subject: Re: Practice of "Sponsored by" in commit messages To: Maxim Sobolev Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> Date: Thu, 17 May 2018 19:29:28 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ipxY3PvvdIpwXsh7e05OaHurAqQLPHb0W" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 23:29:38 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --ipxY3PvvdIpwXsh7e05OaHurAqQLPHb0W Content-Type: multipart/mixed; boundary="zOfGIU9lqhpobE3sN38iax2hPQuUXcDdu"; protected-headers="v1" From: "John W. O'Brien" To: Maxim Sobolev Cc: FreeBSD Ports Message-ID: <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> In-Reply-To: --zOfGIU9lqhpobE3sN38iax2hPQuUXcDdu Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/17 19:18, Maxim Sobolev wrote: > John, no, not really, sorry. Work is done, credit is given. The form an= d > amount of this credit is between whoever does the work and whoever is > being credited. I don't see why is there any third-party to be involved= > in governing whether or not this credit is "appropriate", "sufficient" > or "all encompassing" for the work in question. This is just a credit, > it does not affect the quality of work, nor the license (which is > 2-clause BSD) nor the copyright holder. Three things that really matter= > long-time. So "Sponsored by" it's just the message on the t-shirt, > having only meaning to whoever produces the piece and whoever wears it,= > but nothing in particular to the outside world. IMHO. I fear that you and I are still not on the same page. The difference between a t-shirt and a commit message is that two or three or four people can all do work on the same commit, but only one person can wear a t-shirt. Taking the analogy further, if you hang a t-shirt with your employer's logo on a piece of work that you and I collaborated to produce, don't you think my employer might feel slighted? What if I had done 80% of the work? > On Thu, May 17, 2018 at 3:43 PM, John W. O'Brien > wrote: >=20 > On 2018/05/14 20:14, Maxim Sobolev wrote: > > What's wrong with a current practice. Why is it of any concern to= you, > > John? Just curious that is not very clear from your message. It i= s like > > someone trying to moderate what people in general or some group i= n > > particular (e.g. freebsd committers) are allowed to put on their > > t-shirts just because you find it offensive or inappropriate. >=20 > I don't find crediting sponsors offensive nor inappropriate. Quite = the > contrary. What I find problematic is when multiple people do work, = not > all with sponsorship or the same sponsorship, and only one person's= > sponsor is mentioned in a way that seems to imply that all the work= was > sponsored. >=20 > What I'm proposing is not to end or ban the practice, but to improv= e and > refine it so that sponsors are credited for what they sponsor and n= ot > for what they don't sponsor. >=20 > Is that clearer? >=20 > > On Mon, May 14, 2018, 4:40 PM John W. O'Brien > > >> wrote: > > > >=C2=A0 =C2=A0 =C2=A0Hello FreeBSD Ports, > > > >=C2=A0 =C2=A0 =C2=A0The Committer's Guide section on Commit Log Me= ssages [0], > doesn't cover > >=C2=A0 =C2=A0 =C2=A0the use of the "Sponsored by" key word. As a n= on-committer > contributor, > >=C2=A0 =C2=A0 =C2=A0it only recently occurred to me to wonder what= work that credit is > >=C2=A0 =C2=A0 =C2=A0intended to represent, and whether some light = definition would be > >=C2=A0 =C2=A0 =C2=A0helpful to reduce ambiguity. > > > >=C2=A0 =C2=A0 =C2=A0When a committer credits a sponsor of theirs, = from which the > contributor > >=C2=A0 =C2=A0 =C2=A0received no sponsorship, the portrayal feels a= little awkward. > Does this > >=C2=A0 =C2=A0 =C2=A0strike the list as a problem, and if so, how o= ught it be solved? > > > >=C2=A0 =C2=A0 =C2=A0To make this concrete, allow me to illustrate = the situation. > > > >=C2=A0 =C2=A0 =C2=A0Alice, working on her own time, prepares and c= ontributes a > patch. Bob, > >=C2=A0 =C2=A0 =C2=A0who works for Acme Corp, reviews and commits t= he patch on > company time. > >=C2=A0 =C2=A0 =C2=A0The commit message includes "Sponsored by: Acm= e Corp". Alice > eagerly > >=C2=A0 =C2=A0 =C2=A0awaits her check from Acme Corp. Should the co= mmit message > have read > >=C2=A0 =C2=A0 =C2=A0"Sponsored by: Acme Corp (Bob)"? > > > >=C2=A0 =C2=A0 =C2=A0This could be extensible to multiple sponsorsh= ips. If, > instead, Alice > >=C2=A0 =C2=A0 =C2=A0prepares the patch having received a grant to = do so from Best > Sys Dev, > >=C2=A0 =C2=A0 =C2=A0the commit message could state "Sponsored by: = Acme Corp (Bob), > Best Sys > >=C2=A0 =C2=A0 =C2=A0Dev (Alice)". > > > >=C2=A0 =C2=A0 =C2=A0[0] > >=C2=A0 =C2=A0 > =C2=A0https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committe= rs-guide/article.html#commit-log-message > > > > >=C2=A0 =C2=A0 =C2=A0PS: I realize that this issue transcends ports= , but it's not > clear where > >=C2=A0 =C2=A0 =C2=A0I should send this instead, and this list seem= s like it would > have a > >=C2=A0 =C2=A0 =C2=A0reasonably high concentration of people with a= stake in the > discussion. --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --zOfGIU9lqhpobE3sN38iax2hPQuUXcDdu-- --ipxY3PvvdIpwXsh7e05OaHurAqQLPHb0W Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr+EFkACgkQWPtK56pP /m4LQQgAhjViefg1gNeusXV7QGV7vgDHVNWG0FRVQRvxhxy1dQtuf6R7GzqGPEcD MuCjOJzn/WwZIA4htRzpS+JyLoJGc+Ad8FhCcLKM2rCDP+L4RtQrxC3x6WDwd8Ga SExhRbWSq54+pZ0EwEZNlNq1ekGa880rU7k9XMobnjFBBZQR/uya50vxQeiYGQSo J+X86KuWMD+KFpthYXUw9faaVIwfpHY5Da5YeueCael6ViYpVhqsY70XuhGcPzhE KkLpHxW6G/h4qhWn3/XnWXEpfiZ25V/Kbclc1Q2Rdyzw8CbiZuXg/1WChlax8zVm YbEUmYTiCz9wCWVbwdyqj4SIuQqtdQ== =Hkn5 -----END PGP SIGNATURE----- --ipxY3PvvdIpwXsh7e05OaHurAqQLPHb0W-- From owner-freebsd-ports@freebsd.org Thu May 17 23:36:32 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDA17EE3573 for ; Thu, 17 May 2018 23:36:32 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: from mail-ot0-x22c.google.com (mail-ot0-x22c.google.com [IPv6:2607:f8b0:4003:c0f::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 2FFD17B8E1 for ; Thu, 17 May 2018 23:36:32 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: by mail-ot0-x22c.google.com with SMTP id t1-v6so7019454ott.13 for ; Thu, 17 May 2018 16:36:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sippysoft-com.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=Mjh3ECjshzxHCZaNBOtBDOcIv3fzOJ07iaJDag+ONcY=; b=F2AuKHNW8WnmO2Mb36DSHV6jw+YvZ4sCrPXghll6xYgnSDZBOJ3iM35319bU++LwCc mamNk1eg1ezGipGvfyTv1457KiTC81ywXP4r6z1BaoaZXYHPhNkOCRbQs/jQKHn189JA q3mqIrs9Td3Fx0DDPn1hSG/j7g2ftyCXZMXJ8KamQU9X4nQt8w/zTXPOvAo6wnqTSDyS KLKGqgTLuHwwLNEzswioFSru+FWmrViFVAO6UpR1gVQm9C2qwLN4tK3m3eEg/x+/8xN4 yCIxvp5t7D6G1AIy6zd9//HReGCheBeCf5fh3R8/1ChAlmEKZfA8nAhezUlEZyCJ3+30 bDYw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=Mjh3ECjshzxHCZaNBOtBDOcIv3fzOJ07iaJDag+ONcY=; b=Ymg7BoqZvCCmZXinZPiRmGQqb741FqW/aH4mgjG3AnkG1+TNUJjp1HPWP+QetLSsq7 jlpMktoLfdlHoj5dr65jEIw05RUKR9r5jY/Ik6F2+ykhM/nm5y6GOF1lY0JMyvMCGFcj 1235yvOZULkW2dU/yrXIegDyGhsPCocIWzyjSHTnHh9D5nbCmYit3QYlxfnQe9nUp3di O682ihsnhxZYJvgcZPqbZIb+jeL4/7FgRckHwlsaD2vQRNGwYT8WV1KJBJvtCF1xvGsf oiTH6D8aT666ja/zqkKABSz4Lgf+2YDzlD2iayDiIP6bmUMgUV/RoDiiRlash012S12v nyGw== X-Gm-Message-State: ALKqPwf92Wu8Rv+73sEBo8UIrgrqvf04cz6BUF8R7rwFhhVM5JG2xhSB JC8QA8BsSS6mcpZpWNeZ2OuEIyaRI118BI+4mg0OxA== X-Google-Smtp-Source: AB8JxZrXsxa/2ptpV2dHabJSLgsdY4TGYXn/PH+LeZ9V8u37ZVMKLrkQ4kKVzCjHRkyn+Bi7wvrR6lSWeXd3thuGqSY= X-Received: by 2002:a9d:40ad:: with SMTP id n42-v6mr4700293ote.389.1526600191447; Thu, 17 May 2018 16:36:31 -0700 (PDT) MIME-Version: 1.0 Sender: sobomax@sippysoft.com Received: by 10.201.93.67 with HTTP; Thu, 17 May 2018 16:36:30 -0700 (PDT) In-Reply-To: <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> From: Maxim Sobolev Date: Thu, 17 May 2018 16:36:30 -0700 X-Google-Sender-Auth: Bay5gEdLcDxdn9EazGPozthQ50I Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: "John W. O'Brien" Cc: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 23:36:33 -0000 Well, if your employer feels slighted it's for him to bring it up with you (see my previous rant on the amount and scope of the credit and who parties involved). And then for you to bring it up with me if you feel brave enough. :) I don't see how and why FreeBSD project can help in this highly hypothetical scenario by putting some rules around. Do we have any real-world examples of this happening, bring me at least one out of probably tents of thousands of times people used "Sponsored by" in their commit messages. Just a single one, please! ) -Max On Thu, May 17, 2018 at 4:29 PM, John W. O'Brien wrote: > On 2018/05/17 19:18, Maxim Sobolev wrote: > > John, no, not really, sorry. Work is done, credit is given. The form and > > amount of this credit is between whoever does the work and whoever is > > being credited. I don't see why is there any third-party to be involved > > in governing whether or not this credit is "appropriate", "sufficient" > > or "all encompassing" for the work in question. This is just a credit, > > it does not affect the quality of work, nor the license (which is > > 2-clause BSD) nor the copyright holder. Three things that really matter > > long-time. So "Sponsored by" it's just the message on the t-shirt, > > having only meaning to whoever produces the piece and whoever wears it, > > but nothing in particular to the outside world. IMHO. > > I fear that you and I are still not on the same page. The difference > between a t-shirt and a commit message is that two or three or four > people can all do work on the same commit, but only one person can wear > a t-shirt. > > Taking the analogy further, if you hang a t-shirt with your employer's > logo on a piece of work that you and I collaborated to produce, don't > you think my employer might feel slighted? What if I had done 80% of the > work? > > > On Thu, May 17, 2018 at 3:43 PM, John W. O'Brien > > wrote: > > > > On 2018/05/14 20:14, Maxim Sobolev wrote: > > > What's wrong with a current practice. Why is it of any concern to > you, > > > John? Just curious that is not very clear from your message. It is > like > > > someone trying to moderate what people in general or some group in > > > particular (e.g. freebsd committers) are allowed to put on their > > > t-shirts just because you find it offensive or inappropriate. > > > > I don't find crediting sponsors offensive nor inappropriate. Quite > the > > contrary. What I find problematic is when multiple people do work, > not > > all with sponsorship or the same sponsorship, and only one person's > > sponsor is mentioned in a way that seems to imply that all the work > was > > sponsored. > > > > What I'm proposing is not to end or ban the practice, but to improve > and > > refine it so that sponsors are credited for what they sponsor and not > > for what they don't sponsor. > > > > Is that clearer? > > > > > On Mon, May 14, 2018, 4:40 PM John W. O'Brien > > > >> wrote: > > > > > > Hello FreeBSD Ports, > > > > > > The Committer's Guide section on Commit Log Messages [0], > > doesn't cover > > > the use of the "Sponsored by" key word. As a non-committer > > contributor, > > > it only recently occurred to me to wonder what work that > credit is > > > intended to represent, and whether some light definition would > be > > > helpful to reduce ambiguity. > > > > > > When a committer credits a sponsor of theirs, from which the > > contributor > > > received no sponsorship, the portrayal feels a little awkward. > > Does this > > > strike the list as a problem, and if so, how ought it be > solved? > > > > > > To make this concrete, allow me to illustrate the situation. > > > > > > Alice, working on her own time, prepares and contributes a > > patch. Bob, > > > who works for Acme Corp, reviews and commits the patch on > > company time. > > > The commit message includes "Sponsored by: Acme Corp". Alice > > eagerly > > > awaits her check from Acme Corp. Should the commit message > > have read > > > "Sponsored by: Acme Corp (Bob)"? > > > > > > This could be extensible to multiple sponsorships. If, > > instead, Alice > > > prepares the patch having received a grant to do so from Best > > Sys Dev, > > > the commit message could state "Sponsored by: Acme Corp (Bob), > > Best Sys > > > Dev (Alice)". > > > > > > [0] > > > > > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/ > committers-guide/article.html#commit-log-message > > committers-guide/article.html#commit-log-message> > > > > > > PS: I realize that this issue transcends ports, but it's not > > clear where > > > I should send this instead, and this list seems like it would > > have a > > > reasonably high concentration of people with a stake in the > > discussion. > > > -- > John W. O'Brien > OpenPGP keys: > 0x33C4D64B895DBF3B > > From owner-freebsd-ports@freebsd.org Fri May 18 00:20:22 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64FAAEE43FF for ; Fri, 18 May 2018 00:20:22 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [72.78.188.147]) (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 E48D87CAEE; Fri, 18 May 2018 00:20:21 +0000 (UTC) (envelope-from john@saltant.com) Received: from dither.saltant.net (dither.saltant.net [IPv6:2001:470:8d6f:1001::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id 0174F1121C; Thu, 17 May 2018 20:20:20 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526602821; bh=jgQ6twVQl1AcjaK1/D+dSzLHpzJklLkKgolUbMw8uqE=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=iLZEnco9NpplRe3D4coqt30pbopsnYoYo4gZBVsR0+xO7U20Xs4eH7FqO8TCHy8U5 kybIDKIhl3WeUghOLpvs6fLcqYHi8/5mx9uNlrkU++zTR14b0LrBMtd4HWon0+ON2T 8SYsiPhLuswEhAtd8xA3i/YEr1CX7WMgUDJS1ANFpJARgP44DxYIg6hoJjm6ClmnyW IQnTLm+tLDJ8g+zlngBoKRa8ua8aVLsDwGqrq2SAhXjhTT2F1reAZ4M6wReTqnr6LV Kvom8BNCsdi9l3zQjqOoboUqFBeFIcR1KCwMsctBRS3n96z3bds1quTSN3iTAACwo5 a15CUp+TTs9gQ== Subject: Re: Practice of "Sponsored by" in commit messages To: Maxim Sobolev Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> Date: Thu, 17 May 2018 20:20:15 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="1CQLsHzuPyQgyL3eKHLDX02hCVUheRdqO" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 00:20:22 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --1CQLsHzuPyQgyL3eKHLDX02hCVUheRdqO Content-Type: multipart/mixed; boundary="HJuvQcnkyzvQp2onCCxenCFmIDdSb4ZTl"; protected-headers="v1" From: "John W. O'Brien" To: Maxim Sobolev Cc: FreeBSD Ports Message-ID: <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> In-Reply-To: --HJuvQcnkyzvQp2onCCxenCFmIDdSb4ZTl Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/17 19:36, Maxim Sobolev wrote: > Well, if your=C2=A0 employer feels=C2=A0 slighted it's for him to bring= it up with > you (see my previous rant on the amount and scope of the credit and who= > parties involved). And then for you to bring it up with me if you feel > brave enough. :) I don't see how and why FreeBSD project can help in > this highly hypothetical scenario by putting some rules around. Do we > have any real-world examples of this happening, bring me at least one > out of probably tents of thousands of times people used "Sponsored by" > in their commit messages. Just a single one, please! ) The FreeBSD project could help by asking committers to qualify "Sponsored by" lines to indicate which participant(s) is(are) sponsored, in way that is equivalent to the way that the actual work itself is customarily attributed. Examples showing this idea in action: r470149 | krion PR: 228292 [1], 227223 [2] Submitted by: maintainer [1], 0mp@ [2] [Interpretation: The maintainer did some work to prepare a patch, 0mp did some work to prepare a patch, and krion combined the patches and performed the commit.] r470018 | kan Reviewed by: jhb, bapt [Interpretation: kan prepared a patch, jhb and bapt reviewed it, kan committed it.] Examples where I perceive no problem: r470130 | truckman PR: 228172 Approved by: Leo Vandewoestijne (maintainer) Sponsored by: Farsight Security, Inc. [Interpretation: truckman did the work on Farsight company time; Leo signed-off, but did little or no work, and either doesn't have a sponsor or chose not to credit the sponsor.] r469997 | mat PR: 228149 Reported by: Niels Bakker Sponsored by: Absolight [Interpretation: Niels called attention to a problem, but did little or no work on producing a patch, and either doesn't have a sponsor or chose not to credit the sponsor; mat did the work to produce a patch on Absolight company time.] Examples showing where improvement is needed: r469984 | dteske Reviewed by: mat (mentor; earlier version), imp (mentor), dbaio Approved by: imp (mentor) Sponsored by: Smule, Inc. Differential Revision: https://reviews.freebsd.org/D15415 [Uncertainty: Was the review by mat, imp, and dbaio all done on Smule company time? Doesn't mat work for Absolight? Maybe he was working on his own time for this one. Maybe acting as a mentor takes hardly any time. Possible improvements include "Sponsored by: Smule, Inc. (dteske)", or "Sponsored by: Smule, Inc. (dteske), Absolight (mat)", or..= =2E] r469709 | miwi PR: 228117 Submitted by: maintainer Sponsored by: iXsystems Inc. [Uncertainty: Does the maintainer work for iXsystems too? Did the sponsorship cover preparation of the patch or just the work to commit it? Possible improvements include "Sponsored by: iXsystems Inc. (miwi)", or "Sponsored by: iXsystems Inc. (miwi, maintainer)", or...] Are non-committer contributors entitled to specify sponsorship credits? Should I start requesting sponsorship credit under the name of my small, one-man consulting operation? If I do, would that discourage committers from taking my bugs who want to be able to credit their own employers for the commit? > On Thu, May 17, 2018 at 4:29 PM, John W. O'Brien > wrote: >=20 > On 2018/05/17 19:18, Maxim Sobolev wrote: > > John, no, not really, sorry. Work is done, credit is given. The f= orm and > > amount of this credit is between whoever does the work and whoeve= r is > > being credited. I don't see why is there any third-party to be in= volved > > in governing whether or not this credit is "appropriate", "suffic= ient" > > or "all encompassing" for the work in question. This is just a cr= edit, > > it does not affect the quality of work, nor the license (which is= > > 2-clause BSD) nor the copyright holder. Three things that really = matter > > long-time. So "Sponsored by" it's just the message on the t-shirt= , > > having only meaning to whoever produces the piece and whoever wea= rs it, > > but nothing in particular to the outside world. IMHO. >=20 > I fear that you and I are still not on the same page. The differenc= e > between a t-shirt and a commit message is that two or three or four= > people can all do work on the same commit, but only one person can = wear > a t-shirt. >=20 > Taking the analogy further, if you hang a t-shirt with your employe= r's > logo on a piece of work that you and I collaborated to produce, don= 't > you think my employer might feel slighted? What if I had done 80% o= f the > work? >=20 > > On Thu, May 17, 2018 at 3:43 PM, John W. O'Brien > > >> wrote: > >=20 > >=C2=A0 =C2=A0 =C2=A0On 2018/05/14 20:14, Maxim Sobolev wrote: > >=C2=A0 =C2=A0 =C2=A0> What's wrong with a current practice. Why is= it of any concern to you, > >=C2=A0 =C2=A0 =C2=A0> John? Just curious that is not very clear fr= om your message. It is like > >=C2=A0 =C2=A0 =C2=A0> someone trying to moderate what people in ge= neral or some group in > >=C2=A0 =C2=A0 =C2=A0> particular (e.g. freebsd committers) are all= owed to put on their > >=C2=A0 =C2=A0 =C2=A0> t-shirts just because you find it offensive = or inappropriate. > >=20 > >=C2=A0 =C2=A0 =C2=A0I don't find crediting sponsors offensive nor = inappropriate. Quite the > >=C2=A0 =C2=A0 =C2=A0contrary. What I find problematic is when mult= iple people do work, not > >=C2=A0 =C2=A0 =C2=A0all with sponsorship or the same sponsorship, = and only one person's > >=C2=A0 =C2=A0 =C2=A0sponsor is mentioned in a way that seems to im= ply that all the work was > >=C2=A0 =C2=A0 =C2=A0sponsored. > >=20 > >=C2=A0 =C2=A0 =C2=A0What I'm proposing is not to end or ban the pr= actice, but to improve and > >=C2=A0 =C2=A0 =C2=A0refine it so that sponsors are credited for wh= at they sponsor and not > >=C2=A0 =C2=A0 =C2=A0for what they don't sponsor. > >=20 > >=C2=A0 =C2=A0 =C2=A0Is that clearer? > >=20 > >=C2=A0 =C2=A0 =C2=A0> On Mon, May 14, 2018, 4:40 PM John W. O'Brie= n > > >=C2=A0 =C2=A0 =C2=A0> > >>> wrote: > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0Hello FreeBSD Ports, > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0The Committer's Guide sec= tion on Commit Log Messages [0], > >=C2=A0 =C2=A0 =C2=A0doesn't cover > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0the use of the "Sponsored= by" key word. As a non-committer > >=C2=A0 =C2=A0 =C2=A0contributor, > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0it only recently occurred= to me to wonder what work that > credit is > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0intended to represent, an= d whether some light definition > would be > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0helpful to reduce ambigui= ty. > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0When a committer credits = a sponsor of theirs, from which the > >=C2=A0 =C2=A0 =C2=A0contributor > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0received no sponsorship, = the portrayal feels a little > awkward. > >=C2=A0 =C2=A0 =C2=A0Does this > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0strike the list as a prob= lem, and if so, how ought it be > solved? > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0To make this concrete, al= low me to illustrate the situation. > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0Alice, working on her own= time, prepares and contributes a > >=C2=A0 =C2=A0 =C2=A0patch. Bob, > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0who works for Acme Corp, = reviews and commits the patch on > >=C2=A0 =C2=A0 =C2=A0company time. > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0The commit message includ= es "Sponsored by: Acme Corp". Alice > >=C2=A0 =C2=A0 =C2=A0eagerly > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0awaits her check from Acm= e Corp. Should the commit message > >=C2=A0 =C2=A0 =C2=A0have read > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0"Sponsored by: Acme Corp = (Bob)"? > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0This could be extensible = to multiple sponsorships. If, > >=C2=A0 =C2=A0 =C2=A0instead, Alice > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0prepares the patch having= received a grant to do so from > Best > >=C2=A0 =C2=A0 =C2=A0Sys Dev, > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0the commit message could = state "Sponsored by: Acme Corp > (Bob), > >=C2=A0 =C2=A0 =C2=A0Best Sys > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0Dev (Alice)". > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0[0] > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 > >=C2=A0 =C2=A0 > =C2=A0=C2=A0https://www.freebsd.org/doc/en_US.ISO8859-1/articles/co= mmitters-guide/article.html#commit-log-message > > >=C2=A0 =C2=A0 > =C2=A0 > > >=C2=A0 =C2=A0 =C2=A0> > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0PS: I realize that this i= ssue transcends ports, but it's not > >=C2=A0 =C2=A0 =C2=A0clear where > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0I should send this instea= d, and this list seems like it > would > >=C2=A0 =C2=A0 =C2=A0have a > >=C2=A0 =C2=A0 =C2=A0>=C2=A0 =C2=A0 =C2=A0reasonably high concentra= tion of people with a stake in the > >=C2=A0 =C2=A0 =C2=A0discussion. --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --HJuvQcnkyzvQp2onCCxenCFmIDdSb4ZTl-- --1CQLsHzuPyQgyL3eKHLDX02hCVUheRdqO Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr+HD8ACgkQWPtK56pP /m6J6AgArxVqEitFkhKN23kesufMmaBbyTjqH/cm0vaFNc6azbai03B18w9cQPxZ m6xa6lQPEYh+kfqIMPmvGFp80KfXPVRZSaaGtYSfbLZw1IiEhrDlPyjdrtkLJPm6 j6ApRWGZ5jYs8tCHcBWAHS36ST9ah7VldhpEVN/iQx93VM+Rtl+AoDflT1pMuKHs ovGWZTy7meW+67/zhyQbavStL6VdlTw2IxLaQshnqb+4l4WIcpEQMB1iDbWi5ax5 mPUJ7S2ICTnBgJHuB52tUBe00Y/PnHUkwrTtNyskEIiVv4VkoTGfRtq4SsaUTGaW f1K5/79l2qUW8V+HPpDIaJ8Ocqmv9A== =UtGT -----END PGP SIGNATURE----- --1CQLsHzuPyQgyL3eKHLDX02hCVUheRdqO-- From owner-freebsd-ports@freebsd.org Fri May 18 04:15:05 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14696EE8FE0 for ; Fri, 18 May 2018 04:15:05 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from home.opsec.eu (unknown [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 9C38A84D31; Fri, 18 May 2018 04:15:04 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fJWnF-0002QG-OD; Fri, 18 May 2018 06:15:01 +0200 Date: Fri, 18 May 2018 06:15:01 +0200 From: Kurt Jaeger To: "John W. O'Brien" Cc: Maxim Sobolev , FreeBSD Ports Subject: Re: Practice of "Sponsored by" in commit messages Message-ID: <20180518041501.GF37752@home.opsec.eu> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 04:15:05 -0000 Hi! > The FreeBSD project could help by asking committers to qualify > "Sponsored by" lines to indicate which participant(s) is(are) sponsored, > in way that is equivalent to the way that the actual work itself is > customarily attributed. This sounds reasonable, so I suggest that you submit a patch to the ports handbook that describes it for maintainers and committers. -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Fri May 18 04:41:12 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 479DEEE989F for ; Fri, 18 May 2018 04:41:12 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: from mail-oi0-f49.google.com (mail-oi0-f49.google.com [209.85.218.49]) (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 D8EC78598A for ; Fri, 18 May 2018 04:41:11 +0000 (UTC) (envelope-from sobomax@sippysoft.com) Received: by mail-oi0-f49.google.com with SMTP id t27-v6so6016255oij.9 for ; Thu, 17 May 2018 21:41:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=yIo+lHzfUTtEqc/7TF8CwpwR3poTwh/NY53JIKeoPj8=; b=afKiaJOReIdokAkfiZ8Itl/iXIF5thottZkr5E6r+KFAKZLxEXP7SH3U44rzDWZd98 QAODLGGyMhlp8+QRqSDXQ4NsxGEd4kqEOA4/gfYPg2nSe3Rku+YIzl7/I8RLfN1CTaHv l+qsdbV8UzydJyhteuGJ2tSAzv6yTS1Y4dWagI2LCsoX3Ywe3JdHOC+Dx4u2hiSQl006 VjhVsCG/0sTX5oqa3v5nPWGyxLZ9gFd9gv7Z93XKOkdj13GWi2DzuGWaWcYvupgx/b7X uAww2/BMUPdvUiR9fVB/+bgNNO90pcb5XAiuohDpM5Vnd46g8xsk/Uq9d63p0ZxrI47F KZEw== X-Gm-Message-State: ALKqPwdtmoTnQnvklmfd8VxtKOyycyFCGAW5QNPG+S54fOLOL9LfJ8kV AVl0pkiiDTfjjfGN+oP1kbjveLzRcRlqMMqHHZiOWA== X-Google-Smtp-Source: AB8JxZq1sOmtAZo4OYX19P70e7CnezhRmBF5EUEn/bTv81sK/A4FWBQwLfm5OohnjB9dHxKkK/zePGV08iKKUPyOIXA= X-Received: by 2002:aca:cdd2:: with SMTP id d201-v6mr4983299oig.230.1526618004907; Thu, 17 May 2018 21:33:24 -0700 (PDT) MIME-Version: 1.0 References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> In-Reply-To: <20180518041501.GF37752@home.opsec.eu> From: Maxim Sobolev Date: Thu, 17 May 2018 21:33:12 -0700 Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: Kurt Jaeger Cc: "John W. O'Brien" , FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 04:41:12 -0000 You guys are still trying to read and interpret labels on the t-shirts I think. "Sponsored by: XYZ" in the commit message only means that some undefined portion of the work has been in some form supported or encouraged by XYZ. It does not mean or imply all work, it does not mean any particular form of compensation or encouragement. In many cases it does not even indicate any monetary exchange between committer doing work and XYZ. There were no cases that I am aware of in the past 15 years when XYZ would have any grudge against FreeBSD or a particular committer about the form of that credit or lack of thereof . So the whole issue seems like perfect example of trying to make improvement to a well working system just for the sake of improvement. Never a good idea! -Max On Thu, May 17, 2018, 9:15 PM Kurt Jaeger wrote: > Hi! > > > The FreeBSD project could help by asking committers to qualify > > "Sponsored by" lines to indicate which participant(s) is(are) sponsored, > > in way that is equivalent to the way that the actual work itself is > > customarily attributed. > > This sounds reasonable, so I suggest that you submit a > patch to the ports handbook that describes it for maintainers > and committers. > > -- > pi@opsec.eu +49 171 3101372 2 years to go ! > > From owner-freebsd-ports@freebsd.org Fri May 18 04:43:40 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0ED2EE9935 for ; Fri, 18 May 2018 04:43:39 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-yw0-x22c.google.com (mail-yw0-x22c.google.com [IPv6:2607:f8b0:4002:c05::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6DCCF85B3F for ; Fri, 18 May 2018 04:43:39 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: by mail-yw0-x22c.google.com with SMTP id r202-v6so2032966ywg.10 for ; Thu, 17 May 2018 21:43:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=LEOupSLZIxiW+TkpfsRedXTM0+yPw90//qyRGpJN9x8=; b=IbHVPL1RCkxZrPAbSZPMLBBUOUBaM6OGk+1hiwfXvo3IrPTjWqDw5ou+11iG9xfUS8 4jU6OQGj4eCa932glUpKILAS9sXbE81km6jtsV7jTXVJXzBI7JwVvKay8t1upcolXbUM z4YbG/C/ujx2IFzOPb+wBf1yMZSsh+2KQtjEM= 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=LEOupSLZIxiW+TkpfsRedXTM0+yPw90//qyRGpJN9x8=; b=i3ilCDkWUFG3mqI7QZvsSL4QuZhZc4/+xpTPo/EntBG/IXMXnAMh49zGe/hC66g/fa YNVS9GFVxNCurPinpV+TqsPPdvQIsY7lCQjKGwiIb4+Tr70s4bw+VYuMg+SzfRi5n1zK WYH7LMvr551m757wcoeMCkwaBw1Pky4qVRNSLw72o++ImcT98jXboCIdeqb0jnA9QLGU +vT3MsEkpvXAGX2Yh2Dfo2TzBMR+o31MpFtNNUaNPUJeB+4OrT/B/X7K3uirkqSlyFYy +n42bSN0N6QcNEy7/iAY4/4s1em8KE67s5U9vYbN3XvI6TC04CIW9RXym+u03g5GH4JK NFqQ== X-Gm-Message-State: ALKqPwcI5BbohKBemBMykwn/dXyY/91XfI7C65PzbgiXtH45fAQ4J9U8 13x27XkSx+o+Sdj86hyjNNPC/R6o+GSz86jKizjDmUiJ X-Google-Smtp-Source: AB8JxZpmL2XusXbeEgl3iRupjmPECqbaJeSXGH47YbxQ5FlYnjk6MjDrzaKYx4xY/T664CSsCCw0XXiKQIcw0cpOw4s= X-Received: by 2002:a81:6dd0:: with SMTP id i199-v6mr3897426ywc.141.1526618618516; Thu, 17 May 2018 21:43:38 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a25:c709:0:0:0:0:0 with HTTP; Thu, 17 May 2018 21:43:08 -0700 (PDT) In-Reply-To: <20180518041501.GF37752@home.opsec.eu> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> From: Eitan Adler Date: Thu, 17 May 2018 21:43:08 -0700 Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: Kurt Jaeger Cc: "John W. O'Brien" , FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 04:43:40 -0000 On 17 May 2018 at 21:15, Kurt Jaeger wrote: > Hi! > >> The FreeBSD project could help by asking committers to qualify >> "Sponsored by" lines to indicate which participant(s) is(are) sponsored, >> in way that is equivalent to the way that the actual work itself is >> customarily attributed. > > This sounds reasonable, so I suggest that you submit a > patch to the ports handbook that describes it for maintainers > and committers. One thing to note: FreeBSD has a custom patch to subversion to detect "ORGANIZATION_NAME" and automatically append it to the default template. This is likely why its getting added in unexpected places. -- Eitan Adler From owner-freebsd-ports@freebsd.org Fri May 18 11:34:49 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D6CFEF2499 for ; Fri, 18 May 2018 11:34:49 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from mail-wm0-x230.google.com (mail-wm0-x230.google.com [IPv6:2a00:1450:400c: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 7FFE8721FD for ; Fri, 18 May 2018 11:34:47 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by mail-wm0-x230.google.com with SMTP id x12-v6so3147200wmc.0 for ; Fri, 18 May 2018 04:34:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chen-org-nz.20150623.gappssmtp.com; s=20150623; h=mime-version:from:date:message-id:subject:to; bh=HB5AV4stjm0h0jtussfuaEZab/+0cBD+b2dmn/32GiM=; b=gNUGEdc7kAHvwckLOy9sorQ4xEXnl+UuGyoXbjXbGOeWqHNz2nVvtapW0mxzqUXPDe UDAPuZRYVh7QyTosYdL8hBCEBeORchCE3dr0g10HA44rJXyt2s6pEj4Bu54+EGArK5SE d3FFy7292a+6rA8Dc3uJsFptnVuH0KtjvRMxxUgx9+F0LMS0RcY2vBiRpWm9ktbMHKWP evul7UyNl29ojInEgYDUTVUU8Dw+Gft+Y3a6QGB17hRzdsr2qpZfIfJl1aai/Ig9NB7V YtH0pqJ6PFtnk3mZL1Kji4RQA38fz24bqYtbLVuvhVd0CpeHtyOFil3xzZmu2MFnEtbi xL0g== 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=HB5AV4stjm0h0jtussfuaEZab/+0cBD+b2dmn/32GiM=; b=tQWXc80/q3cbdKCO4ZjaIH6Q6rWvesc33P6klB/YCTNcgn/42sX8rw45+o7rcNOQLR SZ+501LCCpt+ZRHJVTFq1PIk4v4zyYX4Dch2TwkjxUKyPOIwW2nvvSP3vsHtwScQ7x5n 4sT6/utwECYJhnvRI3QDt2pSo8nQbG5dH/urR4aiU9uVj6SLzDigraXoGCT1iDss/vXJ KXGpLurm1RrCqmytqPvB9MULkFjA/F66duAWe3njHfobGH3f3x3/HYyA9+/oZZIEhUuH 0w+7lKL2XfHce3OxS3v9WyFBXgwb5LoDWqrKufb2Yyice8+VvzhDs9RDrqXOIyfB3heh sBMg== X-Gm-Message-State: ALKqPwf2VXRZkHhlilsBzkRuYNfcCnZER2khiJWUa8htmuCkULOUG3Nb IrJvugZA7tiDVBy7CRtHjBzOo0nO8qPvKL3u26yFK7DZ X-Google-Smtp-Source: AB8JxZrCN2sarDHdrYvaTWAIMG7pGURrflcECxPrS3uvw66B0Flgd8xvTtA2xMlvVqUh6DHrzif7maJ66zQ9atM+8ys= X-Received: by 2002:a50:cb8a:: with SMTP id k10-v6mr11328356edi.205.1526643286033; Fri, 18 May 2018 04:34:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.80.216.9 with HTTP; Fri, 18 May 2018 04:34:45 -0700 (PDT) X-Originating-IP: [150.107.174.246] From: Jonathan Chen Date: Fri, 18 May 2018 23:34:45 +1200 Message-ID: Subject: Packaging failures with devel/gvfs, devel/gnome-vfs To: freebsd-ports@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 11:34:49 -0000 Hi, On STABLE-11/amd64, with the ports tree at r470283, I am seeing packaging errors for gvfs and gnome-vfs when running synth: ===> Building package for gvfs-1.26.3_9 pkg-static: Unable to access file /construction/xports/devel/gvfs/work/stage/usr/local/libexec/gvfsd-smb:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gvfs/work/stage/usr/local/libexec/gvfsd-smb-browse:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gvfs/work/stage/usr/local/share/GConf/gsettings/gvfs-smb.convert:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gvfs/work/stage/usr/local/share/gvfs/mounts/smb-browse.mount:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gvfs/work/stage/usr/local/share/gvfs/mounts/smb.mount:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gvfs/work/stage/usr/local/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml:No such file or d irectory *** Error code 1 ===> Building package for gnome-vfs-2.24.4_8 pkg-static: Unable to access file /construction/xports/devel/gnome-vfs/work/stage/usr/local/etc/gnome-vfs-2.0/modules/smb-module.conf:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gnome-vfs/work/stage/usr/local/lib/gnome-vfs-2.0/modules/libsmb.a:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gnome-vfs/work/stage/usr/local/lib/gnome-vfs-2.0/modules/libsmb.la:No such file or directory pkg-static: Unable to access file /construction/xports/devel/gnome-vfs/work/stage/usr/local/lib/gnome-vfs-2.0/modules/libsmb.so:No such file or directory *** Error code 1 Anyone else seeing this? -- Jonathan Chen From owner-freebsd-ports@freebsd.org Fri May 18 11:38:19 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83D01EF25BB for ; Fri, 18 May 2018 11:38:19 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [72.78.188.147]) (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 E36BC7231F for ; Fri, 18 May 2018 11:38:18 +0000 (UTC) (envelope-from john@saltant.com) Received: from dither.saltant.net (dither.saltant.net [IPv6:2001:470:8d6f:1001::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id 77B56113B6; Fri, 18 May 2018 07:38:17 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526643497; bh=3f54485EwkTN+bVzDdEuK54juJnHyuUHXse1ddMT9Ys=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=fJYq9bkVSTQwEDFt8sdMWhGrWb/qtAK7KzSm4McJ+4y5MKQPXtf1TCvJKWb5OPR+V yUV3HcNPpe+dGn6KtPj9bOjY+rOQDNalKH2j+iiCNLMCQsO0nduhDK+S82xBJ5sxo+ WCnBloeVWTUPI9CCsDx3uNmZJUD8jXWhttA7DSuYMVhvWmQUQZd3wGUUpTyllecLHZ EfFFaAp4t9864Ll+SZ9FM1dT0xux1WPdDOMuNgqyIbi84f/sTxdwAzsX4Os+IBDaRJ 5Fx2dKCjQWoM3oKVaMSbIby6xJFRaBKisme4PBC3K7jUleLXSnDl4E1awrnyODKRqy w5sdSiFuxMbRQ== Subject: Re: Practice of "Sponsored by" in commit messages To: Kurt Jaeger Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: Date: Fri, 18 May 2018 07:38:12 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20180518041501.GF37752@home.opsec.eu> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="fH6CMhhBxXixkxyxYbBaRTrpBQtngjxSO" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 11:38:19 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --fH6CMhhBxXixkxyxYbBaRTrpBQtngjxSO Content-Type: multipart/mixed; boundary="4yX0VfOtctbqRFiY9Ak6aPjoqau8UYAfw"; protected-headers="v1" From: "John W. O'Brien" To: Kurt Jaeger Cc: FreeBSD Ports Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> In-Reply-To: <20180518041501.GF37752@home.opsec.eu> --4yX0VfOtctbqRFiY9Ak6aPjoqau8UYAfw Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/18 00:15, Kurt Jaeger wrote: > Hi! >=20 >> The FreeBSD project could help by asking committers to qualify >> "Sponsored by" lines to indicate which participant(s) is(are) sponsore= d, >> in way that is equivalent to the way that the actual work itself is >> customarily attributed. >=20 > This sounds reasonable, so I suggest that you submit a > patch to the ports handbook that describes it for maintainers > and committers.=20 >=20 Thank you. I will prepare a patch. It seems like it should be against the Committers' Guide [0], though. Also, since this would apply to trees besides ports, is there a venue besides this list where I should solicit feedback? [0] https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/art= icle.html#commit-log-message --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --4yX0VfOtctbqRFiY9Ak6aPjoqau8UYAfw-- --fH6CMhhBxXixkxyxYbBaRTrpBQtngjxSO Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr+uyUACgkQWPtK56pP /m7w0Qf6AuMcCQS/XS9THwVDitnucvgZ3kPaYXKAQkhYNa8ObnLH0AxFCOiVUC9o FN3XsSM+vZF5JoLXvk+nxzeCuxzSrAmQCy2UGAUJ69ljoW0Y0m7ntjJ6F+t0Azqt HQm0h6oveirVW3xUMW9meru7+gsvk8EZejpLzy9R895IgzB43Tljvvv5cNxrPnwY dM08uYEFf2kkPeb99lxfjC8eABXsZ4PI6xZy+bWZa8D6guqMi8otRF6Zvq/BrSHV Y4jkG8KWN1k7h7ZQIBDVOs63E63HUwUo9qiKd6utwMxxXAIDpODCmOsAhpiKu16h xMpwY9GAMCecIDsfLEa2E8RcfyMGlQ== =1Gwp -----END PGP SIGNATURE----- --fH6CMhhBxXixkxyxYbBaRTrpBQtngjxSO-- From owner-freebsd-ports@freebsd.org Fri May 18 11:40:23 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25C18EF26BD for ; Fri, 18 May 2018 11:40:23 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [IPv6:2001:470:8d6f:1001::2]) (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 9938772455 for ; Fri, 18 May 2018 11:40:22 +0000 (UTC) (envelope-from john@saltant.com) Received: from dither.saltant.net (dither.saltant.net [IPv6:2001:470:8d6f:1001::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id 2954A113B9; Fri, 18 May 2018 07:40:22 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526643622; bh=Fo4WAHQ6vAIykfvSgDve6vVmGQ6/wURL0YwgWxRY4oQ=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=i+syUl6LJrdb10uLsJf6wMAsiaPBA8J50nMalCwAKRUWM9+tMCQDwPBmHwWOe2Nb+ UWPkL9ujKx0KQXviX3OLHrtTKXE+1pXffnMsIyZAsCIMibErFwXD9pShN3t1d8lqmy vDvyI7tz/dSz0ioObZVpNvAZpNHlMJ0hSVwCnajRsqsXkLK4dOdPdUhUPBa61FQZLo pmmrxN8ZB9oQ5j8Jn6U+vbazecFhDi3bYaaLFcQQh2xHwMWqe8OqmQBNSP9U9hiPDj Kybip8aDONsuk2xx0WuH7VZfRiUzfVR5Nb5k7WesdLDlO8yNxRFl5Sms6Snw4sKVmK sQIk8FmWIoMDQ== Subject: Re: Practice of "Sponsored by" in commit messages To: Eitan Adler , Kurt Jaeger Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> Date: Fri, 18 May 2018 07:40:22 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="RYKAoc5FFjKBfxlxRMOiNirkM7kwWQDy0" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 11:40:23 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --RYKAoc5FFjKBfxlxRMOiNirkM7kwWQDy0 Content-Type: multipart/mixed; boundary="vxaE2K92m03GVSOYLyanyd6oxwRmi1xoB"; protected-headers="v1" From: "John W. O'Brien" To: Eitan Adler , Kurt Jaeger Cc: FreeBSD Ports Message-ID: <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> In-Reply-To: --vxaE2K92m03GVSOYLyanyd6oxwRmi1xoB Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/18 00:43, Eitan Adler wrote: > On 17 May 2018 at 21:15, Kurt Jaeger wrote: >> Hi! >> >>> The FreeBSD project could help by asking committers to qualify >>> "Sponsored by" lines to indicate which participant(s) is(are) sponsor= ed, >>> in way that is equivalent to the way that the actual work itself is >>> customarily attributed. >> >> This sounds reasonable, so I suggest that you submit a >> patch to the ports handbook that describes it for maintainers >> and committers. >=20 > One thing to note: FreeBSD has a custom patch to subversion to detect > "ORGANIZATION_NAME" and automatically append it to the default > template. This is likely why its getting added in unexpected places. >=20 How do you think I should handle that in my forthcoming doc patch? Is there a related bug I should file against services? --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --vxaE2K92m03GVSOYLyanyd6oxwRmi1xoB-- --RYKAoc5FFjKBfxlxRMOiNirkM7kwWQDy0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr+u6YACgkQWPtK56pP /m7oeAf8DDeqOEUFaZuul4sJxzbMOlAwXwMTsfM/eKz1Cd9Sj/TnwkpdASWNYC2L QwiUbAjnTatWk8s1063pBlvQHNUgDvllx0koN1A6eS6aK1Hy1ScIKjf00MND3VRT rcjsef8et/9HjU+yW7NDixfUGXTwB8+fQA+zyWXLUINaFYaFqVGml/llA/NAnAox +iRd4LdBbE/V1txRF2jcP92fcKinqBPs2M6/3pkBMyd52ec7/f86zrGx1Sx9MV3B JsmH34Jk4Go16YdJ7XQ2qf3ZQBF9/NZtjNT1ylogetl3b8k4c/eJSW3q0JPUK2tG nY+sYqcK9/8boJu+5Uh7yOT6EXJf5g== =Nz0k -----END PGP SIGNATURE----- --RYKAoc5FFjKBfxlxRMOiNirkM7kwWQDy0-- From owner-freebsd-ports@freebsd.org Fri May 18 14:13:02 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C50E3EA96C7 for ; Fri, 18 May 2018 14:13:02 +0000 (UTC) (envelope-from lars@gustik.eu) Received: from madarka.gustik.eu (madarka.gustik.eu [IPv6:2a01:4f8:150:80b1:fe57:f772:524c:99d0]) (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 54D9577BA5 for ; Fri, 18 May 2018 14:13:02 +0000 (UTC) (envelope-from lars@gustik.eu) Received: from romy.j20.helspy.pw (unknown [IPv6:2a01:c844:1020:b820:df6:c68f:9962:5852]) by madarka.gustik.eu (Postfix) with ESMTPSA id EF2B414064 for ; Fri, 18 May 2018 16:12:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gustik.eu; s=mail; t=1526652774; bh=+ZarvVqztKbxM4vyTgWT4hzZLBaVLwtZHr6Eo6j3sO0=; h=Date:From:To:Subject; b=svZIkQBmFu569gSUAnBobrt+OibY//Og5rtEfsSe9yp30ytdbcPVsSKR8JO8FojLJ dvgRPEheCVIv8f7tt5N89k1sZFonlqgfkSyxPh1tX6Y1WYPdZ657ZbdsYUK0Pf/aps xT4mv1aCfbhY5W27VREoS2NX3RFG5qoht5WGc+6I= Date: Fri, 18 May 2018 16:12:52 +0200 From: Lars Schotte To: freebsd-ports@freebsd.org Subject: help2man fails to build saying p5-Locale-gettext>=0 - not found Message-ID: <20180518161252.710eaa50@romy.j20.helspy.pw> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.31; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 14:13:02 -0000 Hi, I am trying to build /usr/ports/mail/opensmtpd and it fails on: /usr/ports/mail/opensmtpd # make BATCH=yes install ===> opensmtpd-5.9.2p1_6,1 depends on file: /usr/local/lib/libcrypto.so.43 - found ===> opensmtpd-5.9.2p1_6,1 depends on shared library: libevent.so - not found ===> libevent-2.1.8_1 depends on executable: autoconf-2.69 - not found ===> autoconf-2.69_1 depends on executable: gm4 - not found ===> m4-1.4.18,1 depends on executable: makeinfo - not found ===> texinfo-6.5,1 depends on executable: help2man - not found ===> help2man-1.47.6 depends on package: p5-Locale-gettext>=0 - not found ===> help2man-1.47.6 depends on package: p5-Locale-gettext>=0 - not found *** Error code 1 Stop. make[5]: stopped in /usr/ports/misc/help2man *** Error code 1 Stop. make[4]: stopped in /usr/ports/print/texinfo *** Error code 1 Stop. make[3]: stopped in /usr/ports/devel/m4 *** Error code 1 Stop. make[2]: stopped in /usr/ports/devel/autoconf *** Error code 1 Stop. make[1]: stopped in /usr/ports/devel/libevent *** Error code 1 Stop. make: stopped in /usr/ports/mail/opensmtpd and help2man itself also: /usr/ports/misc/help2man # make BATCH=yes install ===> help2man-1.47.6 depends on package: p5-Locale-gettext>=0 - not found ===> help2man-1.47.6 depends on package: p5-Locale-gettext>=0 - not found *** Error code 1 Stop. make: stopped in /usr/ports/misc/help2man Lately I am getting strange results, like when I do make install somewhere it stops with $? == 0. And does nothing. Is it possible that my ports tree got somehow corrupted or sth? I am using portsnap to keep it in sync. Thanks. -- Lars Schotte Mudroňova 13 92101 Piešťany From owner-freebsd-ports@freebsd.org Fri May 18 14:49:01 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8D01EAA83D for ; Fri, 18 May 2018 14:49:00 +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 78A9E792AC for ; Fri, 18 May 2018 14:49:00 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=vbEMndzsZo0JJ2yUuOWngfrWV9uFOmPawxqlSBKn7Ak=; b=VK/KBS7VrvyNYXck8bLODyUHGLiKXEBSwpT3gAdifCk6K+3UUztBitcvKst8o+Yl1oBPHYf9LNrFDdNfB9AuxpPnRz7GrNWnIXAwAgLuEGvdz/n9P8BkjpcuxK+rlDSarbakFbhFgNN7+c+rP4ppM07OpF5HfXsGd7H1DdmYZlg=; Received: from pam.xoc.tele2net.at ([213.90.36.6]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1fJggl-0004H9-1A for freebsd-ports@freebsd.org; Fri, 18 May 2018 16:48:59 +0200 Received: from 188-22-151-53.adsl.highway.telekom.at ([188.22.151.53] helo=[10.0.0.93]) by pam.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1fJggk-0003hS-UN for freebsd-ports@freebsd.org; Fri, 18 May 2018 16:48:59 +0200 To: freebsd-ports@freebsd.org References: <20180518161252.710eaa50@romy.j20.helspy.pw> Subject: Re: help2man fails to build saying p5-Locale-gettext>=0 - not found From: Walter Schwarzenfeld Message-ID: <8dfceb46-96b3-cdbe-ac3c-7f645f6e156a@utanet.at> Date: Fri, 18 May 2018 16:48:52 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20180518161252.710eaa50@romy.j20.helspy.pw> Content-Language: en-US X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 14:49:01 -0000 Sometimes the depends are not proper cleaned and "make clean depends" helps. From owner-freebsd-ports@freebsd.org Fri May 18 15:13:19 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B462EAB386 for ; Fri, 18 May 2018 15:13:19 +0000 (UTC) (envelope-from 0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 377B07A439 for ; Fri, 18 May 2018 15:13:19 +0000 (UTC) (envelope-from 0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com) Received: by mailman.ysv.freebsd.org (Postfix) id EEF9AEAB385; Fri, 18 May 2018 15:13:18 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC798EAB384 for ; Fri, 18 May 2018 15:13:18 +0000 (UTC) (envelope-from 0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com) Received: from a27-116.smtp-out.us-west-2.amazonses.com (a27-116.smtp-out.us-west-2.amazonses.com [54.240.27.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 499507A437; Fri, 18 May 2018 15:13:17 +0000 (UTC) (envelope-from 0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1526656391; h=MIME-Version:Content-Type:Content-Transfer-Encoding:Date:From:To:Subject:Message-ID:Feedback-ID; bh=Jk2dkTIfd8z+DlEscPMldthOTcBdVdrULez/VeM8Gg4=; b=APwLS1Me0aIMBUVnuvFne9u9ua34q3AtAqTMyjFPzLwL6tDKJ35RKtkjtFs0pHzv Q2omANNCHB7WlHopE861LCwbuaulGJlS8ooO1LEYG7SicRcVHPtfjsrCXV43wE2+43T 9AVcNhVXFopE9XrBWQ5uU0bQDYz6HJYg7tgA7Xw4= X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on glory.vmeta.jp X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 18 May 2018 15:13:11 +0000 From: Koichiro Iwao To: ports@freebsd.org Subject: Why portmaster uses g++ not g++6 nor clang++? Message-ID: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> X-Sender: meta@freebsd.org User-Agent: Roundcube Webmail/1.3.6 X-SES-Outgoing: 2018.05.18-54.240.27.116 Feedback-ID: 1.us-west-2.ngRt4x2U/cWqug8pbfjwMxB6pcDw1fmN73bGmMLYyRI=:AmazonSES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 15:13:19 -0000 Hi, I'm building devel/qt5-make by portmaster. Somehow portmaster incorrectly detects gcc6 and uses g++ despite it is actually installed as g++6. If I build it without portmaster, clang++ is used and build finishes successfully. $ pkg info | grep gcc gcc-ecj-4.5 Eclipse Java Compiler used to build GCC Java gcc6-6.4.0_7 GNU Compiler Collection 6 gcc6-aux-20170802_1 Version of GCC 6 with full Ada support gccmakedep-1.0.3 Create dependencies in makefiles using 'gcc -M' # portmaster devel/qt5-qmake (snip) ===> License LGPL21 accepted by the user ===> qt5-qmake-5.10.1 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by qt5-qmake-5.10.1 for building ===> Extracting for qt5-qmake-5.10.1 => SHA256 Checksum OK for KDE/Qt/5.10.1/qtbase-everywhere-src-5.10.1.tar.xz. ===> Patching for qt5-qmake-5.10.1 ===> Applying extra patch /usr/ports/devel/qt5/files/extrapatch-configure ===> Applying extra patch /usr/ports/devel/qt5/files/extrapatch-mkspecs_features_create__cmake.prf ===> Applying extra patch /usr/ports/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf ===> Applying extra patch /usr/ports/devel/qt5/files/extrapatch-mkspecs_common_bsd_bsd.conf ===> Applying FreeBSD patches for qt5-qmake-5.10.1 /usr/bin/sed -i "" -e "/DEFAULT_LIBDIRS=/ s,\\\\\"\\\\n,\\\\n/usr/local/lib&," /ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/configure ===> qt5-qmake-5.10.1 depends on executable: gmake - found ===> qt5-qmake-5.10.1 depends on package: pkgconf>=1.3.0_1 - found ===> qt5-qmake-5.10.1 depends on file: /usr/local/bin/python2.7 - found ===> qt5-qmake-5.10.1 depends on executable: gcc6 - found ===> qt5-qmake-5.10.1 depends on file: /usr/local/bin/as - found ===> Configuring for qt5-qmake-5.10.1 /bin/mkdir -p /ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1 echo 'CMAKE_MODULE_TESTS = -' > /ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/.qmake.cache echo 'QMAKE_LIBDIR_FLAGS = -L/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/lib' >> /ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/.qmake.cache Creating qmake... ===> Building for qt5-qmake-5.10.1 gmake[1]: Entering directory '/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake' g++ -c -o main.o -std=c++11 -ffunction-sections -g -g -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake/library -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake/generators -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake/generators/unix -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake/generators/win32 -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake/generators/mac -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/include -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/include/QtCore -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/include/QtCore/5.10.1 -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/include/QtCore/5.10.1/QtCore -I../src/corelib/global -I/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/mkspecs/freebsd-g++ -DQT_VERSION_STR=\"5.10.1\" -DQT_VERSION_MAJOR=5 -DQT_VERSION_MINOR=10 -DQT_VERSION_PATCH=1 -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DPROEVALUATOR_FULL -DQT_NO_FOREACH /ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake/main.cpp gmake[1]: Leaving directory '/ssd/tmp/ports/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/qmake' ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 # make -C /usr/ports/devel/qt5-make -> builds successfully using clang++ -- meta From owner-freebsd-ports@freebsd.org Fri May 18 15:35:11 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82C10EABAE7 for ; Fri, 18 May 2018 15:35:11 +0000 (UTC) (envelope-from lars@gustik.eu) Received: from madarka.gustik.eu (madarka.gustik.eu [176.9.62.177]) (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 155B27B05C for ; Fri, 18 May 2018 15:35:10 +0000 (UTC) (envelope-from lars@gustik.eu) Received: from romy.j20.helspy.pw (unknown [IPv6:2a01:c844:1020:b820:df6:c68f:9962:5852]) by madarka.gustik.eu (Postfix) with ESMTPSA id 2D7B91406E; Fri, 18 May 2018 17:35:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gustik.eu; s=mail; t=1526657708; bh=oz7VGr+vhf7EtcgM1p83S5phW1bQKNuQiQWGagycXNU=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=REr2FLpMt/Iz2AZWRgdlBIJbMJRtGKxyFbbg186ZL0mg+cJ8LPecYlOQH27XabgAN srQnODkUjPwDAgVmk8Gjsnb4RluT88K1ZU4mgbYFwc9YHgfjqax+plsK7N3ER4yMeO jCTQrojBTDBdchO00Qq+Joklb52hOItwn+4Epwss= Date: Fri, 18 May 2018 17:35:07 +0200 From: Lars Schotte To: Walter Schwarzenfeld Cc: freebsd-ports@freebsd.org Subject: Re: help2man fails to build saying p5-Locale-gettext>=0 - not found Message-ID: <20180518173507.3f6e995d@romy.j20.helspy.pw> In-Reply-To: <8dfceb46-96b3-cdbe-ac3c-7f645f6e156a@utanet.at> References: <20180518161252.710eaa50@romy.j20.helspy.pw> <8dfceb46-96b3-cdbe-ac3c-7f645f6e156a@utanet.at> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.31; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 15:35:11 -0000 Yes, I ll try that, but first I did extract the ports tree again, because this looks suspiciously, I noticed that on a jail it had built, so it may have something to do with my ports tree that I updated maybe too often. On Fri, 18 May 2018 16:48:52 +0200 Walter Schwarzenfeld wrote: > Sometimes the depends are not proper cleaned and "make clean depends" > helps. > > _______________________________________________ > 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" -- Lars Schotte Mudroňova 13 92101 Piešťany From owner-freebsd-ports@freebsd.org Fri May 18 15:45:39 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28FDCEAC283 for ; Fri, 18 May 2018 15:45:39 +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 968127B932 for ; Fri, 18 May 2018 15:45:38 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=6NWu1k6rsz/srulFWihta/KR5P5lm1zkUVUQ5bI1jew=; b=kjaId1TSTgobcYyhASncqjBhbxpz0aRTATYr4yPRWeoBJoS0rm/p226RENqwkJ/B4JrsbzwF9T1KHUh0Ei6MyzKHPuv7ys5Fgo/Oc71dcpDSaNj6wz2fta4Y2D0qpLaeX1DTzJuOXb8Cj8v2oMHf9Wybmrwp527VfrhLnspQIt4=; Received: from pam.xoc.tele2net.at ([213.90.36.6]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1fJhZZ-00068e-5K for freebsd-ports@freebsd.org; Fri, 18 May 2018 17:45:37 +0200 Received: from 188-22-151-53.adsl.highway.telekom.at ([188.22.151.53] helo=[10.0.0.93]) by pam.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1fJhZZ-0000Iz-1X for freebsd-ports@freebsd.org; Fri, 18 May 2018 17:45:37 +0200 To: freebsd-ports@freebsd.org References: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> Subject: Re: Why portmaster uses g++ not g++6 nor clang++? From: Walter Schwarzenfeld Message-ID: Date: Fri, 18 May 2018 17:45:35 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> Content-Language: en-US X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 15:45:39 -0000 I got another error with portmaster and qt5-qmake: qt5-qmake /usr/local/lib/compat/libstdc++.so.6: version CXXABI_1.3.8 required by /ram/usr/ports/devel/qt5-qmake/work/qtbase-everywhere-src-5.10.1/bin/qmake not found but works in the port. From owner-freebsd-ports@freebsd.org Fri May 18 17:00:38 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB708EAE378 for ; Fri, 18 May 2018 17:00:38 +0000 (UTC) (envelope-from lars@gustik.eu) Received: from madarka.gustik.eu (madarka.gustik.eu [IPv6:2a01:4f8:150:80b1:fe57:f772:524c:99d0]) (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 55FCA7EE68 for ; Fri, 18 May 2018 17:00:38 +0000 (UTC) (envelope-from lars@gustik.eu) Received: from romy.j20.helspy.pw (unknown [IPv6:2a01:c844:1020:b820:df6:c68f:9962:5852]) by madarka.gustik.eu (Postfix) with ESMTPSA id 2EB1514083; Fri, 18 May 2018 19:00:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gustik.eu; s=mail; t=1526662837; bh=RWPczfAKdNXhsb/TUSITe8KPuwsRMkjmuyHpzylY8JM=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=Vt3Lqt+lpHBYVpPzC/668XhRiH8wHR2AYrQ8BmafJ8ZEADWjzSTDG7q9T/ddsrCRK pxrlraZW2xKtp9ISyKO+BNLCwlbWq6Bqojsn1y8PnaCqfxMMjG0RqVv8zabdbefPm0 T0tw8YMeq9sscz22k9LXKygSw+xpeKhAzfKbEQf0= Date: Fri, 18 May 2018 19:00:36 +0200 From: Lars Schotte To: Walter Schwarzenfeld Cc: freebsd-ports@freebsd.org Subject: Re: help2man fails to build saying p5-Locale-gettext>=0 - not found Message-ID: <20180518190036.34e0d066@romy.j20.helspy.pw> In-Reply-To: <20180518173507.3f6e995d@romy.j20.helspy.pw> References: <20180518161252.710eaa50@romy.j20.helspy.pw> <8dfceb46-96b3-cdbe-ac3c-7f645f6e156a@utanet.at> <20180518173507.3f6e995d@romy.j20.helspy.pw> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.31; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 17:00:38 -0000 OK, reextraction of the ports tree with "portsnap extract" helped. Looks like my suspicion was right and ===> Registering installation for help2man-1.47.6 the port got trough. I havent done any clean operations, like you suggested. Maybe that would have helped too, but I think that in that case the problem would manifestate itself somehow differently. On Fri, 18 May 2018 17:35:07 +0200 Lars Schotte wrote: > Yes, I ll try that, but first I did extract the ports tree again, > because this looks suspiciously, I noticed that on a jail it had > built, so it may have something to do with my ports tree that I > updated maybe too often. > > On Fri, 18 May 2018 16:48:52 +0200 > Walter Schwarzenfeld wrote: > > > Sometimes the depends are not proper cleaned and "make clean > > depends" helps. > > > > _______________________________________________ > > 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" > > > -- Lars Schotte Mudroňova 13 92101 Piešťany From owner-freebsd-ports@freebsd.org Fri May 18 17:55:13 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9ABAFEB02D2 for ; Fri, 18 May 2018 17:55:13 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-yb0-x230.google.com (mail-yb0-x230.google.com [IPv6:2607:f8b0:4002: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 3A9C481EAC for ; Fri, 18 May 2018 17:55:13 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: by mail-yb0-x230.google.com with SMTP id g140-v6so2983480ybf.6 for ; Fri, 18 May 2018 10:55:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=01cG5232AKlfW20siVJiMjjDtZ5UiyfXFi527vFIRS0=; b=b3YbQd6Ebo9dDC6oW6KoSjn4gbuszUMZOZ2BCKk7enkPCkc3Vru8kC1+NSKwnCnQsB a3NaduIOxsIzW4Wz+e+tDs9ql+K9oWDHfbwfiLO8v2YQzA2Yf04V4SI8wWqhU9wyXxTh rySDXR9Iq7dm1iZSE0hOT3c3g9t8fLVeb7XIA= 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=01cG5232AKlfW20siVJiMjjDtZ5UiyfXFi527vFIRS0=; b=kpq3rcZi5VMiBeT949LZnvZj+Ig0YbWRHvSFH+jR1E/7XxEFUhcCPYMH3Dnoqrq0xe sWQukYshQh5vIBsWyWF1nqvTBgKHB67Nl0T3aZx0Zy7A0oBpUEFPN6/e9jgPU1vdGGYR Zygv36q4JEPd3vKgbNFxDGOlofv9ojm/D/Flq77c0/3h9IfQ8AXL7s6iNdQLspQHa+eU ki6jWcNSFTU07kR+de6wH81J2ieuu+y8GVp6UFwG4NcNslpex6joaFQhJ7ExAbIIPEfW mWfTrwPsnXWqPAuEDj4qPJV5k2D7Pq0zBMMt9SZ91m7mwxgJNHI7wz8IdEyVbuVfWgZ1 YUxw== X-Gm-Message-State: ALKqPwckI0phyo4P4TUA/dyH0j5ZjN6LlsXCzqJTtgw1GOTlOu5NHpnS fR4SbZLvfQntZIEvRe/md+2WZeLddDnKYGgEk8dZ1Q== X-Google-Smtp-Source: AB8JxZqiX5zL69TjdC18Zyv/oNI5wGQgvMAx/lgtuuHtVHQ9b+XlIAbMnTveAVezdCZaMkHL7ZZGDeZ3ek+ptt6o7ww= X-Received: by 2002:a5b:391:: with SMTP id k17-v6mr3315518ybp.69.1526666112462; Fri, 18 May 2018 10:55:12 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a25:c709:0:0:0:0:0 with HTTP; Fri, 18 May 2018 10:54:41 -0700 (PDT) In-Reply-To: <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> From: Eitan Adler Date: Fri, 18 May 2018 10:54:41 -0700 Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: "John W. O'Brien" Cc: Kurt Jaeger , FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 17:55:13 -0000 On 18 May 2018 at 04:40, John W. O'Brien wrote: > On 2018/05/18 00:43, Eitan Adler wrote: >> On 17 May 2018 at 21:15, Kurt Jaeger wrote: >>> Hi! >>> >>>> The FreeBSD project could help by asking committers to qualify >>>> "Sponsored by" lines to indicate which participant(s) is(are) sponsored, >>>> in way that is equivalent to the way that the actual work itself is >>>> customarily attributed. >>> >>> This sounds reasonable, so I suggest that you submit a >>> patch to the ports handbook that describes it for maintainers >>> and committers. >> >> One thing to note: FreeBSD has a custom patch to subversion to detect >> "ORGANIZATION_NAME" and automatically append it to the default >> template. This is likely why its getting added in unexpected places. >> > > How do you think I should handle that in my forthcoming doc patch? Is > there a related bug I should file against services? Its a client side patch of the subversion binary. I'm not sure the best way to handle it beyond perhaps changing the template a bit? -- Eitan Adler From owner-freebsd-ports@freebsd.org Fri May 18 18:20:05 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2172EB0DF7 for ; Fri, 18 May 2018 18:20:04 +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 740A482D42 for ; Fri, 18 May 2018 18:20:04 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fJjz3-0003nC-Kr; Fri, 18 May 2018 20:20:05 +0200 Date: Fri, 18 May 2018 20:20:05 +0200 From: Kurt Jaeger To: Eitan Adler Cc: "John W. O'Brien" , FreeBSD Ports Subject: Re: Practice of "Sponsored by" in commit messages Message-ID: <20180518182005.GG37752@home.opsec.eu> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> 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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 18:20:05 -0000 Hi! > >>>> The FreeBSD project could help by asking committers to qualify > >>>> "Sponsored by" lines to indicate which participant(s) is(are) sponsored, > >>>> in way that is equivalent to the way that the actual work itself is > >>>> customarily attributed. > >>> This sounds reasonable, so I suggest that you submit a > >>> patch to the ports handbook that describes it for maintainers > >>> and committers. > >> One thing to note: FreeBSD has a custom patch to subversion to detect > >> "ORGANIZATION_NAME" and automatically append it to the default > >> template. This is likely why its getting added in unexpected places. > > How do you think I should handle that in my forthcoming doc patch? Is > > there a related bug I should file against services? > Its a client side patch of the subversion binary. I'm not sure the > best way to handle it beyond perhaps changing the template a bit? What change would be needed ? There's already a Sponsored by field ? The custom patch is here: https://svnweb.freebsd.org/ports/head/devel/subversion/files/extra-patch-fbsd-template?revision=411397&view=markup -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Fri May 18 18:30:54 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DD41EB1191 for ; Fri, 18 May 2018 18:30:54 +0000 (UTC) (envelope-from se@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 AD64D8346B for ; Fri, 18 May 2018 18:30:53 +0000 (UTC) (envelope-from se@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 69082EB118F; Fri, 18 May 2018 18:30:53 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41B63EB118E for ; Fri, 18 May 2018 18:30:53 +0000 (UTC) (envelope-from se@freebsd.org) Received: from mailout11.t-online.de (mailout11.t-online.de [194.25.134.85]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCE6F83465; Fri, 18 May 2018 18:30:52 +0000 (UTC) (envelope-from se@freebsd.org) Received: from fwd17.aul.t-online.de (fwd17.aul.t-online.de [172.20.27.64]) by mailout11.t-online.de (Postfix) with SMTP id 0CC4F421EA26; Fri, 18 May 2018 20:30:45 +0200 (CEST) Received: from Stefans-MacBook-Pro-10.local (ZZ5lgsZaohXmuWSExfdG8Fw-qmP9sjmcjlt0UjZPUo8Ygoqx7UK0GaYSjVC-38EQ5x@[84.154.105.176]) by fwd17.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384 encrypted) esmtp id 1fJk9J-1ulkgq0; Fri, 18 May 2018 20:30:41 +0200 Subject: Re: Why portmaster uses g++ not g++6 nor clang++? To: Koichiro Iwao , ports@freebsd.org References: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> From: Stefan Esser Openpgp: preference=signencrypt Autocrypt: addr=se@freebsd.org; prefer-encrypt=mutual; keydata= xsBNBFVxiRIBCADOLNOZBsqlplHUQ3tG782FNtVT33rQli9EjNt2fhFERHIo4NxHlWBpHLnU b0s4L/eItx7au0i7Gegv01A9LUMwOnAc9EFAm4EW3Wmoa6MYrcP7xDClohg/Y69f7SNpEs3x YATBy+L6NzWZbJjZXD4vqPgZSDuMcLU7BEdJf0f+6h1BJPnGuwHpsSdnnMrZeIM8xQ8PPUVQ L0GZkVojHgNUngJH6e21qDrud0BkdiBcij0M3TCP4GQrJ/YMdurfc8mhueLpwGR2U1W8TYB7 4UY+NLw0McThOCLCxXflIeF/Y7jSB0zxzvb/H3LWkodUTkV57yX9IbUAGA5RKRg9zsUtABEB AAHNKVN0ZWZhbiBFw59lciAoWWFob28hKSA8c3QuZXNzZXJAeWFob28uZGU+wsCWBBMBCgBA AhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AWIQSjceplnAvsyCtxUxNH67XvWv31RAUC WvLvqwUJCyUBEwAKCRBH67XvWv31REySCACc6vqcSFQCRyBRc2CV5ZBjbbnTy7VBoXbUS3/c 4Hn8I0YQ39q7//2z8vYsgLeM1mMXL4PUIU/0f0dBAFBLpxV7bntGzyCJls6SeGS/qcQKhqaI 6I7NcWg8OkIJIhUL6q238cS1ql9pU65fyHe0PP8JS08m81PDpX2/4wTE6h2jgYUy55eXRzoF MEjr1S8SSnidsBem27o7iWu9ltJsUtE86071iZlLzbuHv2nvucrjAV9cK9tHrxYT/YiY8QhT L48iWj2xIjLjg1ebmgIFZ2k881we/KTIoUugqOOR1gDSc4qwM8CA388cN3frjtl98CwhAT5T UV8tIDqri+/Z1AKwzsBNBFVxiRIBCACxI/aglzGVbnI6XHd0MTP05VK/fJub4hHdc+LQpz1M kVnCAhFbY9oecTB/togdKtfiloavjbFrb0nJhJnx57K+3SdSuu+znaQ4SlWiZOtXnkbpRWNU eMm+gtTDMSvloGAfr76RtFHskdDOLgXsHD70bKuMhlBxUCrSwGzHaD00q8iQPhJZ5itb3WPq z3B4IjiDAWTO2obD1wtAvSuHuUj/XJRsiKDKW3x13cfavkad81bZW4cpNwUv8XHLv/vaZPSA ly+hkY7NrDZydMMXVNQ7AJQufWuTJ0q7sImRcEZ5EIa98esJPey4O7C0vY405wjeyxpVZkpq ThDMurqtQFn1ABEBAAHCwHwEGAEKACYCGwwWIQSjceplnAvsyCtxUxNH67XvWv31RAUCWvLv qwUJCyUBGQAKCRBH67XvWv31RLnrB/9gzcRlpx71sDMosoZULWn7wysBJ/8AIEfIByRaHQe3 pn/KwE57pB+zFbbQqB7YzeZb7/UUgR4zU2ZbOcEfwDZcHUbj0B3fGRsS3t0uiLlAd8w0sBZb SxrqzjdpDjIbOZkxssqUmvrsN67UG1AFWH9aD24keBS7YjPBS8hLxPeYV+Xz6vUL8fRZje/Z JgiBMIwyj6g2lH/zkdnxBdC0iG1xxJOLTaghMMeQyCdH6ef8+VMyAlAJsMckbOTvx63tY8z7 DFcrnTJfbe1EziRilVsEaK8tTzJzhcTfos+f3eBYWEilxe5HzIhYKJeC7lmsSUcGwa6+9VRg a0ctmi9Z8OgX Message-ID: <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> Date: Fri, 18 May 2018 20:30:38 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> Content-Type: text/plain; charset=windows-1252 Content-Language: en-US Content-Transfer-Encoding: 7bit X-ID: ZZ5lgsZaohXmuWSExfdG8Fw-qmP9sjmcjlt0UjZPUo8Ygoqx7UK0GaYSjVC-38EQ5x X-TOI-MSGID: c98796ca-3f69-4244-9389-9fdf1e1166c8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 18:30:54 -0000 Am 18.05.18 um 17:13 schrieb Koichiro Iwao: > Hi, > > I'm building devel/qt5-make by portmaster. Somehow portmaster incorrectly > detects gcc6 and uses g++ despite it is actually installed as g++6. If I > build it without portmaster, clang++ is used and build finishes successfully. Sorry, this was my fault and I hope it is fixed with the follow-up commit to portmaster version 3.19-10. I had received a proposed patch to significantly speed-up portmaster by caching of a few parameters in environment variables. My commit was meant to work around a side effect of the proposed patch (sourcing of a script imported several unused subroutines into portmaster and I wanted to just use the result of execution of the one relevant subroutine, but missed the fact that the quoting came out wrong ...). (If you are interested: The environment variable _CXXINTERNAL_acaad9ca should contain the literal character sequence "-lc++" including the double quotes, when I use eval as in the defective version, I either get no quotes around -lc++ or I get extra double-quotes around the whole variable, if I eval the script output piped through sed s:":\\:" ...) Since I did not manage to get the correct result without sourcing the script, I gave in and accept the fact, that these subroutines are now imported into portmaster. Anyway, I hope my latest commit has fixed the problem ... Regards, STefan From owner-freebsd-ports@freebsd.org Fri May 18 19:38:41 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 726D3ED92B7 for ; Fri, 18 May 2018 19:38:41 +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 0C1118607B for ; Fri, 18 May 2018 19:38:41 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=OYXiYjQ7hqDoY9tIv2k8LQ6ArJFYeLJn7wkN+YNba5U=; b=rtDK1xOrICWHwDNBramiygoEyz2B71VsH7VKWhFidREpCkFIikp0MWoF1JmmUibe/MmQ1i+0LirAk4J9IIi0PvFgUkceHxYAre7P4WgepAwkKhpBUaFrRj7T3qDgpGKz66cJdlJkulU8EmzfUIWURI1YVz4siqf1Ha5E/kpqrz8=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1fJlD5-0004kv-MZ for freebsd-ports@freebsd.org; Fri, 18 May 2018 21:38:39 +0200 Received: from 188-22-151-53.adsl.highway.telekom.at ([188.22.151.53] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1fJlD5-000209-Kc for freebsd-ports@freebsd.org; Fri, 18 May 2018 21:38:39 +0200 To: freebsd-ports@freebsd.org References: <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> Subject: Re: Why portmaster uses g++ not g++6 nor clang++? From: Walter Schwarzenfeld Message-ID: <56e4847f-b0f5-8c07-7cd9-41277198f554@utanet.at> Date: Fri, 18 May 2018 21:38:37 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> Content-Language: en-US X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 19:38:41 -0000 Thanks, fixes problem for me. From owner-freebsd-ports@freebsd.org Fri May 18 20:17:42 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B995EDA546 for ; Fri, 18 May 2018 20:17:42 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BF6D887D1A for ; Fri, 18 May 2018 20:17:41 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 836A5EDA545; Fri, 18 May 2018 20:17:41 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70D45EDA542 for ; Fri, 18 May 2018 20:17:41 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: from mail-lf0-x242.google.com (mail-lf0-x242.google.com [IPv6:2a00:1450:4010:c07::242]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CA6CD87D17; Fri, 18 May 2018 20:17:40 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: by mail-lf0-x242.google.com with SMTP id 16-v6so15691042lfs.13; Fri, 18 May 2018 13:17:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:date:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ml+yQXT4tXr8Phkw6bAHuDqKo9mr84jhLnNkgz9oofQ=; b=Lg0cqIXdeA+GiUAy2hHg+fkMyLXE5rVMqFDUlXSH78MUCBenr3odPhUTjsbCYKV9dY tkvJAUTZHgMGRhBJzaLHTHFJISWvHJDaCUNCW3O8LTRHVkLubosoxT0xZRYgivr9ttAl tXTkOaA1t39h/ymeWgdHOf1ziVs20oa/2Blf02/WLabbL0HPwxh5KuFSKIFHh2I0JuNL 4su1+ZGoEF4mRUgJCJq16TlX4Wu6nvQF88Q/FEonPtFqDDyfIw//EUFIlUu7PMGUp5v2 H6EdDMcwVIFMGlXW6gQIVfOKS6x/+F0LfrT761DOcL+3ltiQwIGJ3X6YomvG7MOMJGgl I6Vw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:date:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=ml+yQXT4tXr8Phkw6bAHuDqKo9mr84jhLnNkgz9oofQ=; b=M5ECS3cXMdXDhBjSMbqYo+wYA9bH23CNxV/3mtkQzaXTdsaB4d+p2mC3V6zFR8CCXG S+CPw3JM3rTc9oqW2pDXasK5iNkhSPuz69yRmNoPjRfDO2vqLaaBJdnDQ8s+I1gV/ru+ 2ToJM4LUg0jZP1e5FiQ43yd0vv8ajfCEYc3EYxo8R+xtmX89XnGXfs/pxbuw3sSupcdX fBT9bZ6sw1XUR8K8z2PuiKVBynb3HSEorUmoaDd12DiZm+QYQce1ftSY3O3/j/cArmb0 LKlXMe0eVujl8HiJUjhLbkYk0EWUUnkqpzDqVBLdfp08rpDP3wlY+GaEaNupoUXARKp+ oYsA== X-Gm-Message-State: ALKqPwebpOGXlNsG9/L9onnIjpXdq7K50ykb0xz5FW5VakhvFdeFn26R W4aLhtw6g0mD/x59OeB0QhbILg== X-Google-Smtp-Source: AB8JxZqQWT3/OwuM8oX0jcMYTg6JZLgv0MGhfIPUzdJP5vayzQh89tZYfPTFn1zZ6hg08Xdo9DT9vA== X-Received: by 2002:a2e:7113:: with SMTP id m19-v6mr6925246ljc.44.1526674659308; Fri, 18 May 2018 13:17:39 -0700 (PDT) Received: from localhost ([2001:470:1f15:3d8:7285:c2ff:fe37:5722]) by smtp.gmail.com with ESMTPSA id b65-v6sm2037234lff.5.2018.05.18.13.17.37 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 18 May 2018 13:17:38 -0700 (PDT) From: Rozhuk Ivan X-Google-Original-From: Rozhuk Ivan Date: Fri, 18 May 2018 23:17:36 +0300 To: Stefan Esser Cc: Koichiro Iwao , ports@freebsd.org Subject: Re: Why portmaster uses g++ not g++6 nor clang++? Message-ID: <20180518231736.73f3b61d@gmail.com> In-Reply-To: <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> References: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; amd64-portbld-freebsd11.1) 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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 20:17:42 -0000 On Fri, 18 May 2018 20:30:38 +0200 Stefan Esser wrote: > Sorry, this was my fault and I hope it is fixed with the follow-up > commit to portmaster version 3.19-10. > Sorry for offtopic, but if portmaster install some build dep or run dep if does not mark it as autoinstalled, and: pkg query -e '%a = 0' %o show autotools, help2man and other build only crap as user install it, pkg autoremove does not remove this. Also --delete-build-only broken. portmaster -BgvDa -y --delete-build-only --local-packagedir=/usr/ports/packages --packages-local if found some package - install it, and after install create package and overwrite original. pkg create -n will prevent this, or additional checks, or just keep remember that pkg allready exist because port just installed from it. From owner-freebsd-ports@freebsd.org Fri May 18 20:32:52 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2B0BEDB6CB for ; Fri, 18 May 2018 20:32:51 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [IPv6:2001:470:8d6f:1001::2]) (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 4D1BC6901D for ; Fri, 18 May 2018 20:32:51 +0000 (UTC) (envelope-from john@saltant.com) Received: from huntsman-ve507-0388.apn.wlan.upenn.edu (unknown [IPv6:2607:f470:6:4008:21e8:1fcd:32f:5ce0]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id 5A7BC114E3; Fri, 18 May 2018 16:32:50 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526675570; bh=vbbXuNKdPySUu0UB7nDFVOIRwmIySlXICsgew8hHWTg=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=AV04SlinzLhaG+6cqlQH2RZfnphJhs601RoghLRzekNsFrjmIOHhbVrUON6PhtzHd 1UVOSDZlsUsrDwPHbRHqm2B80qttMXtCKlHzTHIGLneHMmGuTuH8Svzk7uGtqK3wop TYPku101N9cRWKY8T9x+umnjwLObetZmPAx4spiogSFj38TMNoKRC1fBi7TOcvpSqm uYgwH34TfoDflmSKtIhQpUp7Z+vru+5fwf4ITvmMIS0QZaWh1gxoDnHI0r0LfHnmQT Bh9idETv42JHOm6dOROnWFOmcrSCaQOdisBW62Tkn3tq+efT8I8EaYIcOKP0W+krzq NSaGnERUFO0OQ== Subject: Re: Practice of "Sponsored by" in commit messages To: Kurt Jaeger , Eitan Adler Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> <20180518182005.GG37752@home.opsec.eu> From: "John W. O'Brien" Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <01f89a53-c53a-45fa-1bd4-9a4c07909ebe@saltant.com> Date: Fri, 18 May 2018 16:32:49 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20180518182005.GG37752@home.opsec.eu> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ONRxiO96xwUPxLysWXljDLRhAtK1WtSzI" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 20:32:52 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --ONRxiO96xwUPxLysWXljDLRhAtK1WtSzI Content-Type: multipart/mixed; boundary="i6APNLE9JMBQmdxNWlj0vQGVRFLsNTLeq"; protected-headers="v1" From: "John W. O'Brien" To: Kurt Jaeger , Eitan Adler Cc: FreeBSD Ports Message-ID: <01f89a53-c53a-45fa-1bd4-9a4c07909ebe@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> <20180518182005.GG37752@home.opsec.eu> In-Reply-To: <20180518182005.GG37752@home.opsec.eu> --i6APNLE9JMBQmdxNWlj0vQGVRFLsNTLeq Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 5/18/18 14:20, Kurt Jaeger wrote: > Hi! >=20 >>>>>> The FreeBSD project could help by asking committers to qualify >>>>>> "Sponsored by" lines to indicate which participant(s) is(are) spon= sored, >>>>>> in way that is equivalent to the way that the actual work itself i= s >>>>>> customarily attributed. >=20 >>>>> This sounds reasonable, so I suggest that you submit a >>>>> patch to the ports handbook that describes it for maintainers >>>>> and committers. >=20 >>>> One thing to note: FreeBSD has a custom patch to subversion to detec= t >>>> "ORGANIZATION_NAME" and automatically append it to the default >>>> template. This is likely why its getting added in unexpected places.= >=20 >>> How do you think I should handle that in my forthcoming doc patch? Is= >>> there a related bug I should file against services? >=20 >> Its a client side patch of the subversion binary. I'm not sure the >> best way to handle it beyond perhaps changing the template a bit? >=20 > What change would be needed ? There's already a Sponsored by field ? >=20 > The custom patch is here: >=20 > https://svnweb.freebsd.org/ports/head/devel/subversion/files/extra-patc= h-fbsd-template?revision=3D411397&view=3Dmarkup I agree that this won't necessarily need to change. If anything, a very small reminder to committers, or suggestive wording change, to fix-up the the sponsorship line when applicable. I will submit a separate bug with a candidate change that depends on the doc bug. I won't mind if the doc bug is accepted and the subversion portbug is closed WONTFIX upon review. --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --i6APNLE9JMBQmdxNWlj0vQGVRFLsNTLeq-- --ONRxiO96xwUPxLysWXljDLRhAtK1WtSzI Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr/OHIACgkQWPtK56pP /m66dAgAqCNu8iq7kDix5hULrY6tgdKEVLINKUXvUu9n2EGiK4qXWe2xczHYQhHs sWH6VOCyleWgLPC8+hZD878rQ1goa9G93Pa7fn8tnZWogHQR/wBelrLhbMsXvzqd oaurrcnnD/tO9YKQgQhIpfuv03vhlnC+CiqSg7piB0/f83ZmgtIQtm4CncrWDhoS JFnTLntkDaW9ycbuS1kOnn8A/bMIOSVL60QxIqFoPyCn9OrscLfzw8/gWrcJJjCk qVNh6qiqUdbX1PVwLEiPqD1eIiRC0igNiR2Cmmy+j8NTZYJiOWJn++3o9wI/nEN9 NrMVGp9TmxIfv/fC33CL/lbhdk4bgA== =QO6w -----END PGP SIGNATURE----- --ONRxiO96xwUPxLysWXljDLRhAtK1WtSzI-- From owner-freebsd-ports@freebsd.org Fri May 18 20:46:29 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6593AEDBD0B for ; Fri, 18 May 2018 20:46:29 +0000 (UTC) (envelope-from se@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 D6202697A7 for ; Fri, 18 May 2018 20:46:28 +0000 (UTC) (envelope-from se@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 91B24EDBD0A; Fri, 18 May 2018 20:46:28 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CC9FEDBD09 for ; Fri, 18 May 2018 20:46:28 +0000 (UTC) (envelope-from se@freebsd.org) Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E86E3697A5; Fri, 18 May 2018 20:46:27 +0000 (UTC) (envelope-from se@freebsd.org) Received: from fwd32.aul.t-online.de (fwd32.aul.t-online.de [172.20.26.144]) by mailout01.t-online.de (Postfix) with SMTP id 1C2FE4318D68; Fri, 18 May 2018 22:46:20 +0200 (CEST) Received: from Stefans-MacBook-Pro-10.local (ZesPNUZYYhX53jtSKja4g7RoEsuZtp6WNqpV4CEXBu0m6lvZXYQd9gVbUzxhGemwXG@[84.154.105.176]) by fwd32.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384 encrypted) esmtp id 1fJmGW-01ZLJQ0; Fri, 18 May 2018 22:46:16 +0200 Subject: Re: Why portmaster uses g++ not g++6 nor clang++? To: Rozhuk Ivan Cc: Koichiro Iwao , ports@freebsd.org References: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> <20180518231736.73f3b61d@gmail.com> From: Stefan Esser Openpgp: preference=signencrypt Autocrypt: addr=se@freebsd.org; prefer-encrypt=mutual; keydata= xsBNBFVxiRIBCADOLNOZBsqlplHUQ3tG782FNtVT33rQli9EjNt2fhFERHIo4NxHlWBpHLnU b0s4L/eItx7au0i7Gegv01A9LUMwOnAc9EFAm4EW3Wmoa6MYrcP7xDClohg/Y69f7SNpEs3x YATBy+L6NzWZbJjZXD4vqPgZSDuMcLU7BEdJf0f+6h1BJPnGuwHpsSdnnMrZeIM8xQ8PPUVQ L0GZkVojHgNUngJH6e21qDrud0BkdiBcij0M3TCP4GQrJ/YMdurfc8mhueLpwGR2U1W8TYB7 4UY+NLw0McThOCLCxXflIeF/Y7jSB0zxzvb/H3LWkodUTkV57yX9IbUAGA5RKRg9zsUtABEB AAHNKVN0ZWZhbiBFw59lciAoWWFob28hKSA8c3QuZXNzZXJAeWFob28uZGU+wsCWBBMBCgBA AhsDBwsJCAcDAgEGFQgCCQoLBBYCAwECHgECF4AWIQSjceplnAvsyCtxUxNH67XvWv31RAUC WvLvqwUJCyUBEwAKCRBH67XvWv31REySCACc6vqcSFQCRyBRc2CV5ZBjbbnTy7VBoXbUS3/c 4Hn8I0YQ39q7//2z8vYsgLeM1mMXL4PUIU/0f0dBAFBLpxV7bntGzyCJls6SeGS/qcQKhqaI 6I7NcWg8OkIJIhUL6q238cS1ql9pU65fyHe0PP8JS08m81PDpX2/4wTE6h2jgYUy55eXRzoF MEjr1S8SSnidsBem27o7iWu9ltJsUtE86071iZlLzbuHv2nvucrjAV9cK9tHrxYT/YiY8QhT L48iWj2xIjLjg1ebmgIFZ2k881we/KTIoUugqOOR1gDSc4qwM8CA388cN3frjtl98CwhAT5T UV8tIDqri+/Z1AKwzsBNBFVxiRIBCACxI/aglzGVbnI6XHd0MTP05VK/fJub4hHdc+LQpz1M kVnCAhFbY9oecTB/togdKtfiloavjbFrb0nJhJnx57K+3SdSuu+znaQ4SlWiZOtXnkbpRWNU eMm+gtTDMSvloGAfr76RtFHskdDOLgXsHD70bKuMhlBxUCrSwGzHaD00q8iQPhJZ5itb3WPq z3B4IjiDAWTO2obD1wtAvSuHuUj/XJRsiKDKW3x13cfavkad81bZW4cpNwUv8XHLv/vaZPSA ly+hkY7NrDZydMMXVNQ7AJQufWuTJ0q7sImRcEZ5EIa98esJPey4O7C0vY405wjeyxpVZkpq ThDMurqtQFn1ABEBAAHCwHwEGAEKACYCGwwWIQSjceplnAvsyCtxUxNH67XvWv31RAUCWvLv qwUJCyUBGQAKCRBH67XvWv31RLnrB/9gzcRlpx71sDMosoZULWn7wysBJ/8AIEfIByRaHQe3 pn/KwE57pB+zFbbQqB7YzeZb7/UUgR4zU2ZbOcEfwDZcHUbj0B3fGRsS3t0uiLlAd8w0sBZb SxrqzjdpDjIbOZkxssqUmvrsN67UG1AFWH9aD24keBS7YjPBS8hLxPeYV+Xz6vUL8fRZje/Z JgiBMIwyj6g2lH/zkdnxBdC0iG1xxJOLTaghMMeQyCdH6ef8+VMyAlAJsMckbOTvx63tY8z7 DFcrnTJfbe1EziRilVsEaK8tTzJzhcTfos+f3eBYWEilxe5HzIhYKJeC7lmsSUcGwa6+9VRg a0ctmi9Z8OgX Message-ID: <379c8c25-1198-1e91-2f5b-511459a3362b@freebsd.org> Date: Fri, 18 May 2018 22:46:15 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <20180518231736.73f3b61d@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Language: en-US Content-Transfer-Encoding: 7bit X-ID: ZesPNUZYYhX53jtSKja4g7RoEsuZtp6WNqpV4CEXBu0m6lvZXYQd9gVbUzxhGemwXG X-TOI-MSGID: ade2be39-d9ac-4b85-880e-0f054c34c976 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 20:46:29 -0000 Am 18.05.18 um 22:17 schrieb Rozhuk Ivan: > On Fri, 18 May 2018 20:30:38 +0200 > Stefan Esser wrote: > >> Sorry, this was my fault and I hope it is fixed with the follow-up >> commit to portmaster version 3.19-10. >> > > Sorry for offtopic, but if portmaster install some build dep or run dep > if does not mark it as autoinstalled, and: > pkg query -e '%a = 0' %o > show autotools, help2man and other build only crap as user install it, > pkg autoremove > does not remove this. > > Also --delete-build-only broken. > > portmaster -BgvDa -y --delete-build-only --local-packagedir=/usr/ports/packages --packages-local > if found some package - install it, and after install create package and overwrite original. > pkg create -n will prevent this, or additional checks, or just keep remember that pkg allready > exist because port just installed from it. I'm working on a completely new re-implementation of portmaster and the new version will get these points right. Fixing the current port version is too hard and wasted effort, since only the features and command line options are carried over, but none of the code of the current version. The current port master port was written at the time of the "old" package management tools (pre PKG-NG). It took me quite some time and effort to implement flavors support in that version, and I found that it is much harder to maintain that version than to rewrite it with the current package tools in mind. The new version is already able to upgrade ports, but it lacks some of the features of the old version (e.g. installation from local packages). But it is already better at tracking changes, e.g. as in the recent KDE4 port and package renaming (where both port directory and package name were changed at the same time and the current portmaster in ports has no way to track this change and to upgrade the affected ports). But I'm not going to implement all features of the current portmaster. E.g. I have no plan to implement dependency tracking via the INDEX file or the installation of packages from a remote repository (since mixing locally compiled and official packages is not well supported). But I plan to offer the installation of build dependencies from locally cached packages (and the deinstallation after they are no longer required). But the use case you described in your mail will be covered. I hope to have the new version ready for testing as a portmaster-devel port before the end of June. Regards, STefan From owner-freebsd-ports@freebsd.org Fri May 18 21:06:20 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26A25EDC3E3 for ; Fri, 18 May 2018 21:06:20 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id B00846A1AE for ; Fri, 18 May 2018 21:06:19 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 6CED2EDC3E2; Fri, 18 May 2018 21:06:19 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47E36EDC3E1 for ; Fri, 18 May 2018 21:06:19 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: from mail-wm0-x22b.google.com (mail-wm0-x22b.google.com [IPv6:2a00:1450:400c:c09::22b]) (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 9F2FE6A1AA; Fri, 18 May 2018 21:06:18 +0000 (UTC) (envelope-from rozhuk.im@gmail.com) Received: by mail-wm0-x22b.google.com with SMTP id m129-v6so17345324wmb.3; Fri, 18 May 2018 14:06:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:date:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=HW5aBKpzBejJbInNKJnhQ3d40CaahIyhj7tQcUMhPLo=; b=WvIMiistgOCelba53Ksol2kMpC1XbHmI/EGUYP/qIYDOf9FKYd7soKTPs4aF6K2s5I PcN9PnAR+S1L0vAKA5c8RPKfZHeY9bRlblt/kz60YFJIl1suzfgQVeRW0EP6ih7glTcu Mwo/6cnrtIrkRjnSSl3OXmI0dL6evapXT7JVpv1rke8hUE7SVDATxxDjtI2IQkL5eNU1 MqMxdtDxukJOCy97HLJ/gFYPpmqbpkftwgD6z8YWr0/7nUA9vpGRN5NLc6LsyQHFsHdY 5S6Su/28yzDE0saSXbcCrGDpx6kExQ75K3DKCBRAMF3itRGKTfMsBgTsCHhEoG2PKF0S BYcw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:date:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=HW5aBKpzBejJbInNKJnhQ3d40CaahIyhj7tQcUMhPLo=; b=dfcB1rfOWo+cUijVHko2kPIObcWwpjQ6r7ZK+NxRtOwHQJ6/ED9ScnAM0AYOf9pZyS 4ZkiHTCU6ENla7VvExLUHo6cTnTunboPwRRbyWSOW/Il0D5lFwmZOCbGTLJyLBKIGznD NQ6QmHddQLQdeazJdyfd4ISUNqPKMvI4AHOYaVx6S1gD5EkJqW7hVICC2Gp8CDKSt5Sy xNO+t194xEHRGmiakGkexhX1TTOAOdBvNJ4U80wVkpivdyClZOBzssbIi7RZdAWMfjsi 8QMqI5DpXafFRqhHC5GWju65mOmDsR3CC9ie9o30+XPGV1vIxJrnx0vsTMy8DT8a6sSf p1HA== X-Gm-Message-State: ALKqPwdCJY7oHfwrMip3MPqbPQ6FDHjUu4aKOiUhwP9L+foegX1JsXs1 sic8JOwtQsg7Ac5CfVpxvpzzFQ== X-Google-Smtp-Source: AB8JxZqvKzowJjAoT0MDQExVP8gtLIMIQSQ27hXv2gjgyp58sApMMcPBfxOckZvXcte0CDUpJyrDJg== X-Received: by 2002:aa7:d6c2:: with SMTP id x2-v6mr13860479edr.219.1526677576629; Fri, 18 May 2018 14:06:16 -0700 (PDT) Received: from localhost ([2001:470:1f15:3d8:7285:c2ff:fe37:5722]) by smtp.gmail.com with ESMTPSA id p57-v6sm4136443edc.21.2018.05.18.14.06.15 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 18 May 2018 14:06:16 -0700 (PDT) From: Rozhuk Ivan X-Google-Original-From: Rozhuk Ivan Date: Sat, 19 May 2018 00:06:14 +0300 To: Stefan Esser Cc: Koichiro Iwao , ports@freebsd.org Subject: Re: Why portmaster uses g++ not g++6 nor clang++? Message-ID: <20180519000614.0c05c5da@gmail.com> In-Reply-To: <379c8c25-1198-1e91-2f5b-511459a3362b@freebsd.org> References: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> <20180518231736.73f3b61d@gmail.com> <379c8c25-1198-1e91-2f5b-511459a3362b@freebsd.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; amd64-portbld-freebsd11.1) 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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 21:06:20 -0000 On Fri, 18 May 2018 22:46:15 +0200 Stefan Esser wrote: > I'm working on a completely new re-implementation of portmaster and > the new version will get these points right. Fixing the current port > version is too hard and wasted effort, since only the features and > command line options are carried over, but none of the code of the > current version. Thanks! I see code, take parts frome there for my work purposes and old portmaster have bad design. As one more future request. Current pkg create use only one thread to compress. I do small set of benchmarks on Ryzen 2700x: ======================================================================== root@rimwks# /usr/bin/time -h pkg create --format tar -o /tmp/ llvm60 7.01s real 6.11s user 0.72s sys 796,5 MB root@rimwks# /usr/bin/time -h pkg create --format tbz -o /tmp/ llvm60 1m3.56s real 1m1.48s user 0.38s sys 209,9 MB root@rimwks# /usr/bin/time -h pkg create --format tgz -o /tmp/ llvm60 36.54s real 35.10s user 0.48s sys 244,8 MB root@rimwks# /usr/bin/time -h pkg create --format txz -o /tmp/ llvm60 5m42.69s real 5m33.15s user 0.53s sys 154,7 MB root@rimwks# /usr/bin/time -h pbzip2 -k -p16 /tmp/llvm60-6.0.0_3.tar 7.47s real 1m40.36s user 5.34s sys 210,7 MB root@rimwks# /usr/bin/time -h tar --use-compress-program=pigz -cf /tmp/llvm60-6.0.0_3.tar.gz /tmp/llvm60-6.0.0_3.tar 2.85s real 40.44s user 0.75s sys 244,6 MB root@rimwks# /usr/bin/time -h xz -T 0 --compress /tmp/llvm60-6.0.0_3.tar 49.96s real 9m30.88s user 33.84s sys 156,9 MB ======================================================================== 5m42.69s - for compress, compile time ~ 15 minutes. Terrable!!! 49.96s - is mutch better. Can you try to implement option to chose at least tar/txz, and probably for txz use "xz -T 0 --compress" ? From owner-freebsd-ports@freebsd.org Fri May 18 23:35:03 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2170CEE0561 for ; Fri, 18 May 2018 23:35:03 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [IPv6:2001:470:8d6f:1001::2]) (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 A1D976FA43 for ; Fri, 18 May 2018 23:35:02 +0000 (UTC) (envelope-from john@saltant.com) Received: from statler.priv.n.saltant.net (unknown [IPv6:2001:470:8d6f:0:3d13:9841:e55:cb43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id B4FED11538; Fri, 18 May 2018 19:35:01 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526686501; bh=DqGVqVfweded1Zq/3t2hvAZxGgB9t+8/1axB6UzA1RE=; h=Subject:From:To:Cc:References:Date:In-Reply-To; b=KaTlOkqWUsQZnk9CowZtIrfH6wwhmJufpqawqvtOzQsXjGpmH1i3CjVatYDbxJ4Kg JX8YeUIACVucPDUIBHpT8ILzqfIa5gfw8y4ac5VwFxY8kedep9piE4Z20CNjD1Z1dA p2RKfrVsWLBZApIv81l/+ozfjR/RbLuUmsK6wrkUtdR5WGnKoHkpDb7hyfQpwdQA12 5kefU3q/SMljS9Uj+oOU3NUulzbkOWDmmxp39zoCfdKPuWRjndrRGaTeq43h2SEAPh GIGrqcvU1MDFY+Ehx0bk7Ny7KNMYmp7cGjUcHEbxXEBZapGZnfyilVdTkLLEAn42sC N70q5TAN8Icug== Subject: Re: Practice of "Sponsored by" in commit messages From: "John W. O'Brien" To: Kurt Jaeger Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <9c3e0a1f-c2a4-9d94-a843-51f648d62a01@saltant.com> Date: Fri, 18 May 2018 19:34:54 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="M2afsCh0ByLLSqYjTeVYZPhTQ3wqgSgpd" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 23:35:03 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --M2afsCh0ByLLSqYjTeVYZPhTQ3wqgSgpd Content-Type: multipart/mixed; boundary="sYL0khLSbNaS79ubgQ8qHdOe9YJuj00Zo"; protected-headers="v1" From: "John W. O'Brien" To: Kurt Jaeger Cc: FreeBSD Ports Message-ID: <9c3e0a1f-c2a4-9d94-a843-51f648d62a01@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> In-Reply-To: --sYL0khLSbNaS79ubgQ8qHdOe9YJuj00Zo Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/18 07:38, John W. O'Brien wrote: > On 2018/05/18 00:15, Kurt Jaeger wrote: >> Hi! >> >>> The FreeBSD project could help by asking committers to qualify >>> "Sponsored by" lines to indicate which participant(s) is(are) sponsor= ed, >>> in way that is equivalent to the way that the actual work itself is >>> customarily attributed. >> >> This sounds reasonable, so I suggest that you submit a >> patch to the ports handbook that describes it for maintainers >> and committers.=20 >> >=20 > Thank you. I will prepare a patch. It seems like it should be against > the Committers' Guide [0], though. Also, since this would apply to tree= s > besides ports, is there a venue besides this list where I should solici= t > feedback? >=20 > [0] > https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/a= rticle.html#commit-log-message >=20 Patch away [0]! [0] https://bugs.freebsd.org/228353 --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --sYL0khLSbNaS79ubgQ8qHdOe9YJuj00Zo-- --M2afsCh0ByLLSqYjTeVYZPhTQ3wqgSgpd Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlr/YyUACgkQWPtK56pP /m7vhwf+OGzu0KmejgN6sjxedwQqUWjIvfNP9oWuDWh/cds42w9nFz0qsArgLFsj MsB/yai7cD+daDhe/XFVlJzZmFMjPQNyFOYVto9Vhq/f5iiKIHugMu/Fo32IImoT GWzFWBAcZXtfONDyxZWvwl+JtxpaeDsKJOPdAFXVch3uEhx/5U6wFNU/xdO8UniJ 12HFLWrYsC+MI+bWJCgR3z22GzeliR/+fxnROiadkuzeWAN64WgCskNcEgio6Ft4 OrD5vW+Ho4FnSBPqWk2xNGD6S5492gewDs3yuRuEQEKTzuInFeOP60R4kyUFi1cl /69fkt3em9J5lMyVrPKOagfl9foNpw== =vsEY -----END PGP SIGNATURE----- --M2afsCh0ByLLSqYjTeVYZPhTQ3wqgSgpd-- From owner-freebsd-ports@freebsd.org Sat May 19 00:20:43 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DF38EE1BCB for ; Sat, 19 May 2018 00:20:43 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-yb0-x230.google.com (mail-yb0-x230.google.com [IPv6:2607:f8b0:4002: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 BDBCA7157F for ; Sat, 19 May 2018 00:20:42 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: by mail-yb0-x230.google.com with SMTP id 140-v6so3299046ybc.9 for ; Fri, 18 May 2018 17:20:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=Mde08GZGVBLIfjf/LX1SRAcvvLCdeXH5T8Mw0T5tT7w=; b=rGMXqJ7X2ojDPtHuhn7/2IGdMItJdHfDk2iIhz3cKUytgbqdBdgwoEKi/BuejSKLgZ KOEXO5vMS5K7ZK7+/3MXNGssTxaZbOOBpRYbrdhHINgtcKQh3xUiBTGFOa5nwb9OYVC8 3zFlMxR/6sKv4hToEcVu4gC7uE6IYJTr5iVSE= 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=Mde08GZGVBLIfjf/LX1SRAcvvLCdeXH5T8Mw0T5tT7w=; b=BF/+pSI9WyUM++S3Qr8NruOmdZyqyAANTrjYoOze3KKyVdBokQfV1WpCfgBCEq9J+n eMOVrmNBZMi7YHfHKtVJ/vXasUk+xbbPe42/DMnMBSWiS+iq3ioehBuvuAR0hDp0d4zf Ju1d96yXbyiS8O1eojaRJLT6WCZ7NPHDIsYKKHo77VuXD2Ozj9kosiLNcCz8Z0M1ZNd3 bvcj0hYjIdb468LovS/cl4dtQhwbL/qeVUXetZhSaQEGl1v01QmtwRPTwByygy1chRW5 9xddzybPvzpEoe99SpBwOl5nCnvzBv1rvS4NkOkqPrdJlNa7TeGVBYeF8kfPypBhWtlk 9sIQ== X-Gm-Message-State: ALKqPwdX9rtWLlTJeJYocAJri1QizFQ+jWMDBBmwZXgwVjNU9zuW77FC CHnmQTr9qdH0l+Nrw7xIAJYMVGIF0H1Ha2yqjISMbA== X-Google-Smtp-Source: AB8JxZodH0KrzDNvXetj1O0cRAmlXLF4vt92fb7HAAUVyHMCBNw9QvHHPtxLBHrltNPk4NVtP3wPEdjqFsbraeET6uE= X-Received: by 2002:a25:2605:: with SMTP id m5-v6mr2396771ybm.89.1526689239819; Fri, 18 May 2018 17:20:39 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a25:c709:0:0:0:0:0 with HTTP; Fri, 18 May 2018 17:20:09 -0700 (PDT) In-Reply-To: <20180518182005.GG37752@home.opsec.eu> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> <20180518182005.GG37752@home.opsec.eu> From: Eitan Adler Date: Fri, 18 May 2018 17:20:09 -0700 Message-ID: Subject: Re: Practice of "Sponsored by" in commit messages To: Kurt Jaeger Cc: "John W. O'Brien" , FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 00:20:43 -0000 On 18 May 2018 at 11:20, Kurt Jaeger wrote: > Hi! > >> >>>> The FreeBSD project could help by asking committers to qualify >> >>>> "Sponsored by" lines to indicate which participant(s) is(are) sponsored, >> >>>> in way that is equivalent to the way that the actual work itself is >> >>>> customarily attributed. > >> >>> This sounds reasonable, so I suggest that you submit a >> >>> patch to the ports handbook that describes it for maintainers >> >>> and committers. > >> >> One thing to note: FreeBSD has a custom patch to subversion to detect >> >> "ORGANIZATION_NAME" and automatically append it to the default >> >> template. This is likely why its getting added in unexpected places. > >> > How do you think I should handle that in my forthcoming doc patch? Is >> > there a related bug I should file against services? > >> Its a client side patch of the subversion binary. I'm not sure the >> best way to handle it beyond perhaps changing the template a bit? > > What change would be needed ? There's already a Sponsored by field ? My point is that the custom patch pre-fills the field, which is why submitters often see it filled when they don't expect it: the committer doesn't do it by hand. -- Eitan Adler From owner-freebsd-ports@freebsd.org Sat May 19 02:42:04 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4927EE7ABD for ; Sat, 19 May 2018 02:42:04 +0000 (UTC) (envelope-from 010101637641beb8-a443af1d-cbf0-4407-a862-2f51360fb62e-000000@us-west-2.amazonses.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6F9FA7650C for ; Sat, 19 May 2018 02:42:04 +0000 (UTC) (envelope-from 010101637641beb8-a443af1d-cbf0-4407-a862-2f51360fb62e-000000@us-west-2.amazonses.com) Received: by mailman.ysv.freebsd.org (Postfix) id 30165EE7ABC; Sat, 19 May 2018 02:42:04 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C30FEE7ABB for ; Sat, 19 May 2018 02:42:04 +0000 (UTC) (envelope-from 010101637641beb8-a443af1d-cbf0-4407-a862-2f51360fb62e-000000@us-west-2.amazonses.com) Received: from a27-115.smtp-out.us-west-2.amazonses.com (a27-115.smtp-out.us-west-2.amazonses.com [54.240.27.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3093E76505; Sat, 19 May 2018 02:42:03 +0000 (UTC) (envelope-from 010101637641beb8-a443af1d-cbf0-4407-a862-2f51360fb62e-000000@us-west-2.amazonses.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; s=7v7vs6w47njt4pimodk5mmttbegzsi6n; d=amazonses.com; t=1526697410; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:Content-Type:In-Reply-To:Feedback-ID; bh=6p9QezyILAGNZMoqYVIpU0afLij9XeBrdTZx4LNPDrY=; b=mgTjNlmWeKhdeeDP9Pumve2r4Jt+sgYMggqMFiKnz3aoQY7fmzgu+sTFhsPnp25u uWkGVhkgvEYyVyBBs8FCPI+z1RfVUs+pQQNbQig9GjxlJm3/x2oBYqbbqLm8vZ9z7eM OrkwXoqa/9T8czTCNoZhDg6r6YaBVCP/W2stfEFc= Date: Sat, 19 May 2018 02:36:50 +0000 From: Koichiro Iwao To: Stefan Esser Cc: ports@freebsd.org Subject: Re: Why portmaster uses g++ not g++6 nor clang++? Message-ID: <010101637641beb8-a443af1d-cbf0-4407-a862-2f51360fb62e-000000@us-west-2.amazonses.com> References: <0101016373cfd7a2-a231a144-9162-4315-82b5-93d3823e99b5-000000@us-west-2.amazonses.com> <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <7c7d5ebc-e8e4-6a2c-92fc-879663cf5926@freebsd.org> X-Operating-System: FreeBSD 11.2-BETA1 amd64 User-Agent: NeoMutt/20180512 X-SES-Outgoing: 2018.05.19-54.240.27.115 Feedback-ID: 1.us-west-2.ngRt4x2U/cWqug8pbfjwMxB6pcDw1fmN73bGmMLYyRI=:AmazonSES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 02:42:05 -0000 On Fri, May 18, 2018 at 08:30:38PM +0200, Stefan Esser wrote: > Sorry, this was my fault and I hope it is fixed with the follow-up commit > to portmaster version 3.19-10. Thanks! Works for me now. -- meta From owner-freebsd-ports@freebsd.org Sat May 19 03:20:19 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81306EE95CA for ; Sat, 19 May 2018 03:20:19 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from mail-wm0-x232.google.com (mail-wm0-x232.google.com [IPv6:2a00:1450:400c:c09::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F077277E0E for ; Sat, 19 May 2018 03:20:17 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by mail-wm0-x232.google.com with SMTP id a137-v6so5458649wme.1 for ; Fri, 18 May 2018 20:20:17 -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; bh=6701bax+2xefOfu+5fbl5sg6l5t4Px3TIbIdcEtjxcA=; b=hUtm8VgubAjDMtxVtMyFAEeYhwTfM4CIiz+63+LGJN+m2zICFMhNCUlzHkDEAQbAaH RDCgukaAwRoz0LJfHTDYQzqltMV+3Nym2H9/lppMs+pagfPpOfPVwbxKC3XNfdwSXd/q cVFGM4JGPV++XAYImsNkwdmnYjY3h9vVLvqGk/9D7bbded3yXnWCaNFIBx61ePha4g+8 q9oFnVVPQkaHqUZoVIlJQvXBjx2NtsilvFwtmQ3XvMlvEugM09JSgKL/KVFosenuGmWO 55+RectgeXbjp+7CdaK9XcVUqEbMLWdu2c0ATLCVQ30jWbXL/mkdJRfFAhIZ2FWThZW8 Fc6g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=6701bax+2xefOfu+5fbl5sg6l5t4Px3TIbIdcEtjxcA=; b=rkmzVSEtOu9yRtz09gav/PUVxyaHR1b9qMQ9s/4TBKTmUK17kRZNkETHIgeMF4/HAw hYCnGj4Sr66ZAf2N+5mHjzL8LYSCzzxgQLmW3f08tKDLIPP3aHrd7RiZ76Dn0kB6hAfK ijQvxJa+xWCvtd3RzYTCSncoyOXd1qYaDFqd8boY7ak8HjG8QjVmqHZnq4yWtxTpvFdn rWu3wzKVBz8UKpNQkiVPcBR+2VJd56Emcmiu8x4ssN0uoBMTI/7c9T8UUMElpnr8lIJl vWvyBn61ZeCLEsv4Is1LuMEtiEocTO4JQjQAq6n2KxQ+CBZzGnndy6iLeoBSuHqazA6x EgBA== X-Gm-Message-State: ALKqPwfquVTQHrCK8BR2EGvdjWrruGU62VbpIQX+gNC3IHv6ulwiPwJC Sx3YUs1XDWgfzA4EEaGimQGpaGkXcL87YF9Xn6lbn3qo X-Google-Smtp-Source: AB8JxZq2fZwj+0JzNnQEbhOqD8oeVowSVTDo336l5BMoWxssONT/pIVI1FV9pqzuJhnnmaPzT2MXmgzlnD6WoZMTlWQ= X-Received: by 2002:a50:ed92:: with SMTP id h18-v6mr14808233edr.102.1526700015890; Fri, 18 May 2018 20:20:15 -0700 (PDT) MIME-Version: 1.0 Received: by 10.80.216.9 with HTTP; Fri, 18 May 2018 20:20:15 -0700 (PDT) X-Originating-IP: [150.107.174.246] In-Reply-To: References: From: Jonathan Chen Date: Sat, 19 May 2018 15:20:15 +1200 Message-ID: Subject: Re: Packaging failures with devel/gvfs, devel/gnome-vfs To: freebsd-ports@freebsd.org, gnome@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 03:20:19 -0000 On 18 May 2018 at 23:34, Jonathan Chen wrote: > Hi, > > On STABLE-11/amd64, with the ports tree at r470283, I am seeing > packaging errors for gvfs and gnome-vfs when running synth: [...] With the latest update to samba46, the configure phase for devel/gvfs and devel/gnome-vfs does *NOT* pick up Samba support, even when --enable-samba is set. For gvfs, the logs indicate: gvfs configuration summary: gio module directory : ${exec_prefix}/lib/gio/modules hotplug backend: hal Blu-ray metadata support: no Google support: yes HTTP/WebDAV support: yes Samba support: no ... -- Jonathan Chen From owner-freebsd-ports@freebsd.org Sat May 19 03:19:49 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41FD2EE9592 for ; Sat, 19 May 2018 03:19:49 +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 A631377E00 for ; Sat, 19 May 2018 03:19:48 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Type:MIME-Version:Date:Message-ID:Subject:From:To; bh=qZ6ox8OiXy0+d/fwnyJpnBKmTjynyz9E1B7M+g8PLmc=; b=L17hpdanXhVj7wKgNpf6AQMLPkK4B4zJCqEfqfRFVh7Yuf7FBQ5CKGKiSXrr2Bl3puNlI6gtSvQbFjFPmFJxZmqtuK1hQxpTQk+6r35dUo1XceF0zIkAyGG/enUey+aVjrRrcY7hz14XjgrTMGgRHDH4jbdTqOt6SVnmE1Pih5I=; Received: from patricia.xoc.tele2net.at ([213.90.36.9]) by tatiana.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1fJsPK-0005oz-G1 for freebsd-ports@freebsd.org; Sat, 19 May 2018 05:19:46 +0200 Received: from 194-96-176-5.adsl.highway.telekom.at ([194.96.176.5] helo=[10.0.0.93]) by patricia.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1fJsPK-00015s-Bn for freebsd-ports@freebsd.org; Sat, 19 May 2018 05:19:46 +0200 To: freebsd-ports@freebsd.org From: Walter Schwarzenfeld Subject: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "" Message-ID: Date: Sat, 19 May 2018 05:19:44 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Content-Language: en-US X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 03:19:49 -0000 The recent update of the qt5* ports puzzled some things, could not update cause of qt5-networking is broken with__libressl. I reverted the partial update. After this I got this error: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "". Problem withvlc and xpdf (maybe, with some more).  Vlc and xpdf core-dumps on start. Does anybody know how to fix this? From owner-freebsd-ports@freebsd.org Sat May 19 04:29:54 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AF9BEED0E8 for ; Sat, 19 May 2018 04:29:54 +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 BF6337C79F for ; Sat, 19 May 2018 04:29:53 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=Px01R1lS5g1S+TDqmLN0p/ktYI/9WgknL3ngTimNq4M=; b=EzpOsytlQeDgP3GGuqd+uT+qkU6w6HHmKW799nPWNTTMN0h72nAiSDmdKp8l5xFJnFHQMDikRokRcv8BhauHYOCBZQ//k81+mgqiHtDLcGLJFefWvIB8C+CPHfsiPIR+ho+78lJ+/DKBHGTbyyvAQoIPP8qStL2/CykzlddPPzQ=; Received: from paris.xoc.tele2net.at ([213.90.36.7]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1fJtVA-0001w2-2W for freebsd-ports@freebsd.org; Sat, 19 May 2018 06:29:52 +0200 Received: from 194-96-176-5.adsl.highway.telekom.at ([194.96.176.5] helo=[10.0.0.93]) by paris.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1fJtV9-0001XU-W4 for freebsd-ports@freebsd.org; Sat, 19 May 2018 06:29:52 +0200 To: freebsd-ports@freebsd.org References: Subject: Re: This application failed to start because it could not find or load the Qt platform plugin "xcb" in "" From: Walter Schwarzenfeld Message-ID: <3440849e-ff74-0972-b3f9-f2cf1fbfde57@utanet.at> Date: Sat, 19 May 2018 06:29:49 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-TELE2-Authenticated-As: cf62768e218b4d81d95cc5390f1bd9dfc8b05683 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 04:29:54 -0000 Solved: Overlooked to downgrade two qt5 packages. From owner-freebsd-ports@freebsd.org Sat May 19 06:53:10 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83B10EF128C for ; Sat, 19 May 2018 06:53:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 428EC8261E for ; Sat, 19 May 2018 06:53:10 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id F1565EF1285; Sat, 19 May 2018 06:53:09 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEAC7EF1284 for ; Sat, 19 May 2018 06:53:09 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7F79782611 for ; Sat, 19 May 2018 06:53:09 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6BBC6278A8 for ; Sat, 19 May 2018 06:53:08 +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 w4J6r8Ql048622 for ; Sat, 19 May 2018 06:53:08 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id w4J6r8J2048621; Sat, 19 May 2018 06:53:08 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201805190653.w4J6r8J2048621@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, 19 May 2018 06:53:08 +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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 06:53:10 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ archivers/zopfli | 1.0.1 | zopfli-1.0.2 ------------------------------------------------+-----------------+------------ net-im/py-matrix-synapse | 0.27.4 | v0.29.1 ------------------------------------------------+-----------------+------------ science/psychopy | 1.90.1 | 1.90.2 ------------------------------------------------+-----------------+------------ www/cppcms | 1.2.0 | 1.2.1 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Sat May 19 11:37:40 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC4D4EAA9E9 for ; Sat, 19 May 2018 11:37:39 +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 7F7796C3AF; Sat, 19 May 2018 11:37:39 +0000 (UTC) (envelope-from lists@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1fK0B8-000686-Bc; Sat, 19 May 2018 13:37:38 +0200 Date: Sat, 19 May 2018 13:37:38 +0200 From: Kurt Jaeger To: Maxim Sobolev Cc: "John W. O'Brien" , FreeBSD Ports Subject: Re: Practice of "Sponsored by" in commit messages Message-ID: <20180519113738.GH37752@home.opsec.eu> References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> 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.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 11:37:40 -0000 Hi! > You guys are still trying to read and interpret labels on the t-shirts I > think. "Sponsored by: XYZ" in the commit message only means that some > undefined portion of the work has been in some form supported or encouraged > by XYZ. John suggests a way to improve the precision of that "Sponsored by". Do you think his patch for the handbook helps ? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228353 -- pi@opsec.eu +49 171 3101372 2 years to go ! From owner-freebsd-ports@freebsd.org Sat May 19 14:29:16 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 563A3EAF7A1 for ; Sat, 19 May 2018 14:29:16 +0000 (UTC) (envelope-from john@saltant.com) Received: from twaddle.saltant.net (twaddle.saltant.net [72.78.188.147]) (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 D07C971716 for ; Sat, 19 May 2018 14:29:15 +0000 (UTC) (envelope-from john@saltant.com) Received: from statler.priv.n.saltant.net (unknown [IPv6:2001:470:8d6f:0:c145:e326:28af:1330]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by twaddle.saltant.net (Postfix) with ESMTPSA id 36DD6116DC; Sat, 19 May 2018 10:29:09 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=saltant.com; s=twaddle; t=1526740149; bh=fyS83W3qY4XdTyBFbbrAGyn7i9wgdVCUmFGmy/yImmM=; h=Subject:From:To:Cc:References:Date:In-Reply-To; b=PcF76bSHegQgRjaWG3prKZ8MyHGjDliq9+VINRmgFC85ogrTWBVQVzt7AwNiT15hm 0mtjelOueZNQHTHnWu0fp3HkQxDibKUwKNV2H8ZJ8C6oNKxkQX5PE3IXfjkirBYZu0 cV0SEHa8RY6uv9UAkWHCMVLkIwN39/D0F5y4OJTCku79aTExsj/GHXA/TQvx8DZ3yP +xkGYwDV4Xg0T3n7cAnbHmFjbcD2hCCTy1Z6yj2ol5U6LkpOLckcFFKocZjVOCpSKk vMlBDcHclXIEbeZPuscMlfSvjPb0VH5BZ7vKw/x58CAnhcLojFF+vchw6un4CLzy2H ooajWLCxlvJaQ== Subject: Re: Practice of "Sponsored by" in commit messages From: "John W. O'Brien" To: Kurt Jaeger , Eitan Adler Cc: FreeBSD Ports References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> <20180518182005.GG37752@home.opsec.eu> <01f89a53-c53a-45fa-1bd4-9a4c07909ebe@saltant.com> Autocrypt: addr=john@saltant.com; prefer-encrypt=mutual; keydata= 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 Organization: Saltant Solutions Message-ID: <3e8ffd67-aea2-c65c-5b3d-ddc529661769@saltant.com> Date: Sat, 19 May 2018 10:28:53 -0400 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <01f89a53-c53a-45fa-1bd4-9a4c07909ebe@saltant.com> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="zxVu7grRQlg6lR4UpnKPZhGC4aVeoXBDm" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 14:29:16 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --zxVu7grRQlg6lR4UpnKPZhGC4aVeoXBDm Content-Type: multipart/mixed; boundary="rNdA2oJrzy2GFpSKOIyJ6mzb3JXsMM1yj"; protected-headers="v1" From: "John W. O'Brien" To: Kurt Jaeger , Eitan Adler Cc: FreeBSD Ports Message-ID: <3e8ffd67-aea2-c65c-5b3d-ddc529661769@saltant.com> Subject: Re: Practice of "Sponsored by" in commit messages References: <3cc77471-4200-1f45-e83d-2ae4d636f4fa@saltant.com> <732c3f40-1765-6883-dbec-f5c77db8e30c@saltant.com> <7b14a5c4-7320-8f5e-b8c3-f49809caf9e5@saltant.com> <20180518041501.GF37752@home.opsec.eu> <31190803-e6ba-428b-0954-341dad2f1916@saltant.com> <20180518182005.GG37752@home.opsec.eu> <01f89a53-c53a-45fa-1bd4-9a4c07909ebe@saltant.com> In-Reply-To: <01f89a53-c53a-45fa-1bd4-9a4c07909ebe@saltant.com> --rNdA2oJrzy2GFpSKOIyJ6mzb3JXsMM1yj Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 2018/05/18 16:32, John W. O'Brien wrote: > On 5/18/18 14:20, Kurt Jaeger wrote: >> Hi! >> >>>>>>> The FreeBSD project could help by asking committers to qualify >>>>>>> "Sponsored by" lines to indicate which participant(s) is(are) spo= nsored, >>>>>>> in way that is equivalent to the way that the actual work itself = is >>>>>>> customarily attributed. >> >>>>>> This sounds reasonable, so I suggest that you submit a >>>>>> patch to the ports handbook that describes it for maintainers >>>>>> and committers. >> >>>>> One thing to note: FreeBSD has a custom patch to subversion to dete= ct >>>>> "ORGANIZATION_NAME" and automatically append it to the default >>>>> template. This is likely why its getting added in unexpected places= =2E >> >>>> How do you think I should handle that in my forthcoming doc patch? I= s >>>> there a related bug I should file against services? >> >>> Its a client side patch of the subversion binary. I'm not sure the >>> best way to handle it beyond perhaps changing the template a bit? >> >> What change would be needed ? There's already a Sponsored by field ? >> >> The custom patch is here: >> >> https://svnweb.freebsd.org/ports/head/devel/subversion/files/extra-pat= ch-fbsd-template?revision=3D411397&view=3Dmarkup >=20 > I agree that this won't necessarily need to change. If anything, a very= > small reminder to committers, or suggestive wording change, to fix-up > the the sponsorship line when applicable. I will submit a separate bug > with a candidate change that depends on the doc bug. I won't mind if th= e > doc bug is accepted and the subversion portbug is closed WONTFIX upon > review. >=20 Patch away [1]! [1] devel/subversion: Update "Sponsored by" microcopy in FBSD extra patch= https://bugs.freebsd.org/228362 --=20 John W. O'Brien OpenPGP keys: 0x33C4D64B895DBF3B --rNdA2oJrzy2GFpSKOIyJ6mzb3JXsMM1yj-- --zxVu7grRQlg6lR4UpnKPZhGC4aVeoXBDm Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEKpEHkkRoSDiIJkQOWPtK56pP/m4FAlsANKUACgkQWPtK56pP /m6hvgf/egHAaVHnGurC4BC72esdRNVM1v+Pfy0Z1Fn7jeIfeGaAt5NKrVzznBey p2D1K2p+7CKOp3fsbjrt1fO2NRy5QrU38Vo6E8o5qfwQZPbnTfSdbnikLWABqqAO pgV8SrJSSj2SB1991CQoBThLCMIGYT0oE432s4kMELi+JNqhuaOIxH2LASibxHxJ XuJz+JNKmP5qFPd98HSdEI8AKKe6GQtyAXb7NP4N0ky8+G1a7mqdRVU/HTV56rjJ mgptXReQd3AiocmMoKaAfZ+9AJtQSnYpII/YjjbnBOAUqlrCRu9Q3G1xZxUV10ys vDj10pALiwQGA3a9/Qi3xfitaUsVbQ== =1Ixv -----END PGP SIGNATURE----- --zxVu7grRQlg6lR4UpnKPZhGC4aVeoXBDm-- From owner-freebsd-ports@freebsd.org Sat May 19 21:01:21 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8793EEE3FBC for ; Sat, 19 May 2018 21:01:21 +0000 (UTC) (envelope-from alfred@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 27FAF7FF70 for ; Sat, 19 May 2018 21:01:21 +0000 (UTC) (envelope-from alfred@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DB546EE3FBB; Sat, 19 May 2018 21:01:20 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8AC7EE3FBA for ; Sat, 19 May 2018 21:01:20 +0000 (UTC) (envelope-from alfred@freebsd.org) Received: from elvis.mu.org (smtp.mu.org [IPv6:2001:559:9c:200::ffff]) by mx1.freebsd.org (Postfix) with ESMTP id 6E6BD7FF6E for ; Sat, 19 May 2018 21:01:20 +0000 (UTC) (envelope-from alfred@freebsd.org) Received: from Alfreds-MBP-2.lan (c-67-169-71-186.hsd1.ca.comcast.net [67.169.71.186]) by elvis.mu.org (Postfix) with ESMTPSA id C1E31114C305 for ; Sat, 19 May 2018 14:01:19 -0700 (PDT) To: ports@FreeBSD.org From: Alfred Perlstein Subject: is there a "make submit" target for ports? Organization: FreeBSD Message-ID: <303968a9-b381-f425-f439-d4fffe19b646@freebsd.org> Date: Sat, 19 May 2018 14:01:19 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 21:01:21 -0000 Hello, looking through the guidebook I didn't see a target to make a PR submission with a port update. Does one exist? Example: I bump the version number for some trivial python port. Want to go through the PR process to get review. Type "make submit"?  To submit this. Is there some target or userland tool for this?  Or am I going to have to figure out if it's github, phabricator, bugzilla or something new? Would there be interest in this being added? thank you, -Alfred (FreeBSD since ~1997, committer since ~1999) From owner-freebsd-ports@freebsd.org Sat May 19 22:02:46 2018 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4784EE5DFB for ; Sat, 19 May 2018 22:02:46 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 4EE84820C8 for ; Sat, 19 May 2018 22:02:46 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0AC5AEE5DFA; Sat, 19 May 2018 22:02:46 +0000 (UTC) Delivered-To: ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBF1DEE5DF8 for ; Sat, 19 May 2018 22:02:45 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mail-yw0-x233.google.com (mail-yw0-x233.google.com [IPv6:2607:f8b0:4002:c05::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E662820C5 for ; Sat, 19 May 2018 22:02:45 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mail-yw0-x233.google.com with SMTP id m65-v6so2823936ywc.12 for ; Sat, 19 May 2018 15:02:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=adamw-org.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=3rk96bs7A4laggxfjboKnc43FfGvq4BJn0QwLVhPF/0=; b=Cy6CgE7OJKR/iUUQYj7cQitgqLQALfhVnd5d28xzRazwJGcg/82HhHdV00zEV8oLel 96i0ynzf+VCcrJSdLZXALBQfoFair18ZiYhvs/8F87bVnwzVI/FQNsUtxi61QmTLL+Nr 1F1ksxxAXSxjfwAlhWaDCrlhYAa4OqBhT8wEY2rsTCHqmdi2klMZwbpDg7xrMpANc5tk Y+ciH8gi5CNjAV+rht+rs0MU1bbDiZlH0t4/lo+lYnjNLqcIfp1HmH7YcSdBCbW8Z9+f w+TVErAEXZpG2AlboDgWTq7Rs/p0uraAO8sFfw7C9fRPhMEGd74S9pbCfrUYTrREEesl 5ysw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=3rk96bs7A4laggxfjboKnc43FfGvq4BJn0QwLVhPF/0=; b=R2hRlParuMW4Abrekhy9El5p9NFpwi+Dkkx2Br2fcB7HAVXF+IguLQLwyJv+FQBsQH u7cMRGyxyg3swJFtjryOqnUeMXXjfJhYYPOhjwu2n23sgqvq7DQCHEYjzzs6OlRpGMDe CudsToav0hHxZRxEg6pLQBSYvqMgSN4Gp2P1+AleRtK+LFcL9Zj6Ed2wZ8EM0lvp9XtI CZlyRvZWUjAaXAP/x99dmqDPvPBu8syILR/G+cQI8YM9dHM6achIBo7SoncUv6iTaSMg WFKkKCb0lrp3Az/MdtDgDzSNeUAWgqTb1HeU9qc/KXjlFw2usQ5L67q/w9OMMZ/unYDr sjDg== X-Gm-Message-State: ALKqPwd+7qfBpVta6PE/KpMgIB3V+CNs45EaCxWmdoVDPrz46f+27Lvz aZZ55GON4KC4rq03FmwjYRIUA450z5H9YHerUyPIMQ== X-Google-Smtp-Source: AB8JxZqWl7YETr0R8flgbNY7a+39y1fT885J2fXE5TKDdxOSwHlD/BWrkTqaJ6gzEwrr+CAIgE3lm3yvXl8iw5Mz4gM= X-Received: by 2002:a81:a357:: with SMTP id a84-v6mr7387883ywh.142.1526767364941; Sat, 19 May 2018 15:02:44 -0700 (PDT) MIME-Version: 1.0 References: <303968a9-b381-f425-f439-d4fffe19b646@freebsd.org> In-Reply-To: <303968a9-b381-f425-f439-d4fffe19b646@freebsd.org> From: Adam Weinberger Date: Sat, 19 May 2018 16:02:29 -0600 Message-ID: Subject: Re: is there a "make submit" target for ports? To: alfred@freebsd.org Cc: ports@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2018 22:02:46 -0000 On Sat, 19 May 2018 at 15:01, Alfred Perlstein wrote: > Hello, looking through the guidebook I didn't see a target to make a PR > submission with a port update. > Does one exist? > Example: > I bump the version number for some trivial python port. > Want to go through the PR process to get review. > Type "make submit"? To submit this. > Is there some target or userland tool for this? Or am I going to have > to figure out if it's github, phabricator, bugzilla or something new? > Would there be interest in this being added? > thank you, > -Alfred (FreeBSD since ~1997, committer since ~1999) Hi Alfred! I haven't used it myself but ports-mgmt/freebsd-bugzill-cli is supposed to do that. Alternatively, devel/arcanist will let you generate a new phabricator review. # Adam -- Adam Weinberger adamw@adamw.org https://www.adamw.org