From owner-freebsd-ports@freebsd.org Sun Jul 7 02:31:57 2019 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 1868615D936E for ; Sun, 7 Jul 2019 02:31:57 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from mail.infocus-llc.com (mail.infocus-llc.com [IPv6:2604:3a00:2:1::2:13]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0868F8C156; Sun, 7 Jul 2019 02:31:54 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from draco.over-yonder.net (c-75-65-60-66.hsd1.ms.comcast.net [75.65.60.66]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.tarragon.infocus-llc.com (Postfix) with ESMTPSA id 45hCJm37fYzycS; Sat, 6 Jul 2019 21:31:52 -0500 (CDT) Received: by draco.over-yonder.net (Postfix, from userid 100) id 45hCJl1QW3zWMT; Sat, 6 Jul 2019 21:31:51 -0500 (CDT) Date: Sat, 6 Jul 2019 21:31:51 -0500 From: "Matthew D. Fuller" To: Kurt Jaeger Cc: freebsd-ports@freebsd.org Subject: Re: portsnap broken? Message-ID: <20190707023151.GA50134@over-yonder.net> References: <20190703015304.GB13599@over-yonder.net> <20190703081140.GA2733@home.opsec.eu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="ibTvN161/egqYuK8" Content-Disposition: inline In-Reply-To: <20190703081140.GA2733@home.opsec.eu> X-Editor: vi X-OS: FreeBSD User-Agent: Mutt/1.12.1 (2019-06-15) X-Rspamd-Queue-Id: 0868F8C156 X-Spamd-Bar: + Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of fullermd@over-yonder.net designates 2604:3a00:2:1::2:13 as permitted sender) smtp.mailfrom=fullermd@over-yonder.net X-Spamd-Result: default: False [1.56 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; HAS_ATTACHMENT(0.00)[]; RCVD_COUNT_THREE(0.00)[3]; MX_GOOD(-0.01)[mail.infocus-llc.com,lyra.over-yonder.net]; CTYPE_MIXED_BOGUS(1.00)[]; RCPT_COUNT_TWO(0.00)[2]; RECEIVED_SPAMHAUS_PBL(0.00)[66.60.65.75.zen.spamhaus.org : 127.0.0.10]; MIME_TRACE(0.00)[0:+,1:+,2:-,2:+]; R_DKIM_NA(0.00)[]; ASN(0.00)[asn:12874, ipnet:2000::/3, country:IT]; SUBJECT_ENDS_QUESTION(1.00)[]; MID_RHS_MATCH_FROM(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.99)[-0.988,0]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-0.98)[-0.984,0]; MIME_GOOD(-0.10)[multipart/mixed,text/plain]; DMARC_NA(0.00)[over-yonder.net]; NEURAL_SPAM_SHORT(0.09)[0.093,0]; RCVD_TLS_LAST(0.00)[]; IP_SCORE(-2.25)[ip: (-8.86), ipnet: 2000::/3(-1.51), asn: 12874(-0.91), country: IT(0.03)]; MIME_BAD_EXTENSION(4.00)[pl] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jul 2019 02:31:57 -0000 --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Jul 03, 2019 at 10:11:41AM +0200 I heard the voice of Kurt Jaeger, and lo! it spake thus: > > > With a little script to pull the snapdates: > > [...] > > Nice! Can you put that script somewhere for others to use ? It's pretty small and straightforward. Attached. It _is_ based on a bit of reverse-engineering of /usr/sbin/portsnap, so there may well be a better way already extant of getting the info (and there probably should be, if there isn't), but it Works For Me... --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="psinfo.pl" #!/usr/bin/env perl use strict; use warnings; # Find the server list my @servers; { use Net::DNS; my $res = Net::DNS::Resolver->new; my $srv = $res->search('_http._tcp.portsnap.freebsd.org', 'SRV'); die "Nothing from SRV request: @{[$res->errorstring]}\n" unless $srv; foreach my $rr (grep { $_->type eq 'SRV' } $srv->answer) { my $si = { 'priority' => $rr->priority, 'host' => $rr->target, }; push @servers, $si; } @servers = sort { my $r; return $r if($r = ($a->{priority} <=> $b->{priority})); return $r if($r = ($a->{host} cmp $b->{host})); return 0; } @servers; } # We need to store temp files to go through openssl... my $tmpdir; { use File::Temp qw/tempdir/; $tmpdir = tempdir(CLEANUP => 1); die "Failed making tempdir" unless -d $tmpdir; } # Load snapshot info and check timestamp from each for my $s (@servers) { my $host = $s->{host}; my $key = "http://$host/pub.ssl"; my $snap = "http://$host/latest.ssl"; my $keyout = "$tmpdir/$host.key"; my $snapout = "$tmpdir/$host.snap"; use LWP::UserAgent; my $web = LWP::UserAgent->new(timeout => 5); my $res = $web->get($key, ':content_file' => $keyout); if(!$res->is_success) { $s->{failed} = 1; print STDERR "$host key fetch failed: @{[$res->status_line]}\n"; next; } $res = $web->get($snap, ':content_file' => $snapout); if(!$res->is_success) { $s->{failed} = 1; print STDERR "$host snap fetch failed: @{[$res->status_line]}\n"; next; } # Now we use openssl to dissect my @cmd = ( qw(openssl rsautl -pubin -inkey), $keyout, '-verify' ); use IPC::Run3; my ($out, $err); run3(\@cmd, $snapout, \$out, \$err); my $rc = $? >> 8; if($rc != 0) { $s->{failed} = 1; print STDERR "$host: openssl returned $rc\n$err\n"; next; } # Second field of $out is the timestamp chomp $out; my $ts = (split/\|/, $out)[1]; $s->{timestamp} = $ts; } # And show the results my $now = time; for my $s (@servers) { my $host = $s->{host}; (my $sh = $host) =~ s/\.portsnap\.freebsd\.org$//; if($s->{failed}) { print "$sh: failed\n"; next; } my $pri = $s->{priority}; my $ts = $s->{timestamp}; # How old? my $old = $now - $ts; my $age; if($old > 86400) { my $days = int($old / 86400); $age .= "$days days, "; $old -= ($days * 86400); } { my $hours = int($old / 3600); $old -= ($hours * 3600); my $mins = int($old / 60); $old -= ($mins * 60); $age .= sprintf("%02d:%02d:%02d", $hours, $mins, $old); } use Date::Format; chomp(my $ftime = ctime($ts)); printf "%20s: $ftime ($age ago)\n", $sh; } --ibTvN161/egqYuK8-- From owner-freebsd-ports@freebsd.org Sun Jul 7 10:12:55 2019 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 9EC8515E12DE for ; Sun, 7 Jul 2019 10:12:55 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from anny.lostinspace.de (anny.lostinspace.de [IPv6:2001:608:a02::33]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C30177E0A for ; Sun, 7 Jul 2019 10:12:54 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from server.idefix.lan (unknown [IPv6:2a01:5c0:1a:31d1:21b:21ff:fe7b:3468]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: idefix@fechner.net) by anny.lostinspace.de (Postfix) with ESMTPSA id 36EDD8AE7E for ; Sun, 7 Jul 2019 12:12:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fechner.net; s=default; t=1562494372; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references:openpgp:openpgp:autocrypt:autocrypt; bh=P2NUEI/waKUKUFP++IGZuzaO/NzWnQWZs+egmLxJIJc=; b=J2H7OGBN0IS+tXF9SKMbFLU5IQjQgf/8qgeUWmJ1iIbBQxMuBeB9rk6D4O/WgJmhVZVv/4 k6dJE320LLGc0wXWVSt4c875kB0F0nMR1KS8iaCJZ03oYAngPfioGzlthFrP2Fm2S5dha0 zpHHeFzBCQ9MuuUO/nhHOSOTOXLfQl4= Received: from [192.168.0.151] (231-155-117-131.ip-addr.inexio.net [131.117.155.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by server.idefix.lan (Postfix) with ESMTPSA id 685B948744C for ; Sun, 7 Jul 2019 12:12:50 +0200 (CEST) Subject: Re: How to handle go dependencies To: freebsd-ports@freebsd.org References: <5d0e8e03.1c69fb81.5e249.9640@mx.google.com> <20190622205205.GB40599@xombo.localdomain> <4de2a97c-8c41-74e4-cda1-4fdec9554e8f@fechner.net> <20190623095737.GA89814@urd.tobik.me> <20190623214048.GE40599@xombo.localdomain> <07e99b4c-cf7e-49bb-d0a0-66a24c3a563f@fechner.net> <20190706194835.GA86243@xombo.localdomain> <52f3b04f-bf8d-0ec3-e3de-32c6d3a39485@fechner.net> <20190706221001.GB86243@xombo.localdomain> From: Matthias Fechner Openpgp: preference=signencrypt Autocrypt: addr=idefix@fechner.net; prefer-encrypt=mutual; keydata= mQINBFqca1YBEADM9mF2+ifk8HILTlf5wtAzV6SYVR4RvNOo/8Kucw4sCZT76zS1fjZe4Zy1 3C0IZ07Wi+3PnoGIgOCsXp3PrTc2nuHQWkwVBYXy8UaR9DHBWA/mIvRGG1ZscKQYA6oUdCvd K8Mu26zO60yTt+ONzFtK6G1myH4EHXZ8dpmdCFf+W3rzTU+aCQ5S3OfwCLGgYgOaVREGkdOc 5SVCpFb4n+2B8+CqeWsRHhnT+4h7/YhgDMGp4GiI3yrB2nBVSUUvcosD2nRtJQgGQHcAFtMq 3hJaKPOR/mHc6KVrp0xmGNmdtazvXloHmGIl9O1UpmMmrYu9Kugl0JkGi2fAcno02XgVlkyX 7xDLTteP5cNqRxor4yVDaRWUQnOfK9XgcrKGrAzb65BkCSkjT+Aw3S/A8Qd6NvjL9qy1d+Ct dzatOVF/Y7jaW28CMr3jvwPS13OxV7PnJzIZzdik20eVxfOXuYfxZD+PwBaGgFF0qj6zKACC aKLalE0ZpY0zNn/iPyQX/Cf9KoDyFpOHSsEswiJ5rCWwppVcsFyogHOemVmeaXlvyDPEipnV ZUkpGP/CCqPu3eD0uDzP7UJ0pt/l/JfW0Xw/4p9mjB024xiRlxLa6vSRfGl//EdtAIbKKa8x 5wsKTQEbYJDmXE3tH/A54DCqRXhcopTlu2iJlTdnIMltn9afVwARAQABtCVNYXR0aGlhcyBG ZWNobmVyIDxpZGVmaXhAZmVjaG5lci5uZXQ+iQJXBBMBCgBBAhsDBQkJZgGABQsJCAcDBRUK CQgLBRYDAgEAAh4BAheAFiEEaWB64mCp804YOtqutot13J/XR+EFAlqcc9gCGQEACgkQtot1 3J/XR+GQyhAAwDxUSg7X2aS1d6rrYUZdDk8rT5TCjayDAyOATdAUhJRZk8qXRNF27Mu6xiOT mIvEMKLagNsitffZs1g/mulRQiDVLloGav7xozSfYlaOYWpPb55wpsugQPLZz0OkU9tzw7j7 7sPPvnAxeqSofUJzQdZzp43aVwXVqsJ3rY0jGzYA5RLS6CBI1RRR8/hHLMxspDPl79IW3GhI HAXaVX1HVJA2oJEo9Y95DnJwX8NV+hvLlUVA2KDdNKFiVJKeV3ccqw+/5zW3Y8J6Rd8blW9n p68Z7lyxt6mvsDEdSxOyGSkPagzIDfHqmDfkaeum7gHMwweH2e2pZuhzMZkrKNoSkKiJ5uim 638ZhnzzmEWh2qtYPgHlZG1jO6n2DSzCqJkQYjYUtLj7ylIgZakG8M3idQRugHImMBq+HSMu WR8FI52gh1+4LbIArHB4YWTTr933ElwhS1jtomK9SeWezPfjunpxqXQl4QR0qXAuglsOMJ6y Togb6lc0qyEdOa5VCXQTLSD9yZpolSQOjOe1XEyM4g5v7FrPBGVni9AxlARvUDVbYQDv1+4A gchtgpLmAF8mDPq/tGeXuAO3m+ExQDXpJ4CneI9YHc+joU2cXQi5MP1NzgMOV43XEZCiTW0O BWM1+857gmDqGbybE7F3UFpvBs9/NRWnuxoKaYxYbqCOc3m5Ag0EWpxrVgEQAN3uCLHZF+1V gcrzYjwL1wAJwjYb7UnHKvNYdaBKgW0n0NTfaTCLHxHYPO8NlV1+lNctSeXLeiWpmE1lCDHq /++53EJ34OsRd/n246PdtfIfltML73tsmq6S9zTye2zv7LsmE7jgUBaasbv0qSLSybOUvkRx j3xBuK9Ymg/ZXaENOhxwIQ6oQoNLg3ers9t5Xl4NVK6gzzZ2OdTGnuUVhQmi4rbP04R0GJFh AtGLAYUCxlXVZhdPAs4qZaoAEP5nW/u2MyzSaIouwcEIdttAiPZdrJr+a4OGKz88Sn6zqKSa uyUADgX+G8tKUONgZbfz4SSRvlinOgyU2RyyfNS977r/YfaHH+oAxg31yUWPtD/ryfVw69bG vK8RQrZ9+c1vyWBABoQOh5+JHW/AE9Xj5dQatEfWmGO3+/FRo2TIhqZQXXl8PW+jtEjkhgOH OUX5ERzSm6nCcPIw+LUkEINcLc9bw4fv1eOWIdBuCckGM4rWXkLYbqhdSzdWeCsC0tiQk8x7 O1zXRJOKF4rITJd/qX322EH29BR+T9V1Hw7LDSRe+3YxtoXhROZRXjF8QniEHeKVNRUComr6 rWGmuHjsNTQ7twtwnG8xSOfCkYAp9GrbzBkIYX+VFvFQLqVM+It3RAlge/bwpZPvkr3bFsJk 4JS+EAugBIrP0xd9BMOh6Ej5ABEBAAGJAjwEGAEKACYWIQRpYHriYKnzThg62q62i3Xcn9dH 4QUCWpxrVgIbDAUJCWYBgAAKCRC2i3Xcn9dH4ZZsEACoQI109htphVe2AQhJ7wuPo8pIrSFA 0Mb0pfibX/sYw8ZZz/x3ctTI3Ajq2baSaoebIuUyd6oPI7cAzgL4s2zHiZ3ChH2dDxJlOPfk OaiK124DJMPqWiWuxe39tgq23tsPhwcvF+DC+SkJoLWKCYNC06fS3bLktZ0s4lVE5tqfL5ww MvxgxB+6+sWHwZWSv1IwB/geov6zkEhVdkXqrGPE52LyLfU0ACMmihcl0/npsCMZSls0urge CsPMuHPQnmcM2ERbere8i9OdKQDzGBrTbWl9DxNRf4o+cAYirEJM3Kc+ZD2SE34bTSvg3kdQ QZQbj+o+BRcsR0LaGbORkNaMZlp5OuXteL6nG7sbAPn0bjUUlup8CJEXDXENG6LJG1/oVWFq m3OtPyr5UoMQAuhuGx0/Om6AXKr/mk+veuoKWMXkqll045/bYE7bX2A0gkyGE5DdjaiHPmS9 NsWuKDeExLlXZOL1GX+PKjWLADwlv07XHB8Hf6U0/lpf3/mggRtqHyKbHt0iRqYaMC95gVdM rbugxh61U/zxIaweU7VolD5cRrltxqPp5szOwDzw42JYwbpYsXFJXNkuCGCmK1LHcShfEggt fV3g/JKzvNRQn6p1f0frppl/eZ5UvWVKrNERJzcZgkOecxwiK/L/JoGpGfWOqWGsTxe/AnQc Xxj8Dw== Message-ID: Date: Sun, 7 Jul 2019 12:12:47 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: <20190706221001.GB86243@xombo.localdomain> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Content-Language: de-DE ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=fechner.net; s=default; t=1562494372; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references:openpgp:openpgp:autocrypt:autocrypt; bh=P2NUEI/waKUKUFP++IGZuzaO/NzWnQWZs+egmLxJIJc=; b=o8p+VAB8GMtiaePI2EfrD5hIjmpa4J4lOm8H0FuvoY0PZxgIFlPuoRarK2IDhoHFvBAw0b saerWZh062WRmr5pAEuV6VQTdoUeAr83TKjy0iEmLEGQLzQhoRCBkmsT+3tWKriMXu69IV OUELuTo/ROK1oHRnfVi6J7ntkiKnEMQ= ARC-Seal: i=1; s=default; d=fechner.net; t=1562494372; a=rsa-sha256; cv=none; b=kdwL3sAorboL3FPmCIbd/o4PEWmu6z0hEknrpnYa08Me3iZrbXEKPC3av3BWiY2iyJva6t TXE1OieUOplUtSCaUgbtIelEMwFQPoRJEksYuwWx8Ez0StxB5s+cWfNp2rbIqMLkaCMWh1 rZ5HVSgbkenATqRxjyNOhDrnaWM0OFQ= ARC-Authentication-Results: i=1; ORIGINATING; auth=pass smtp.auth=idefix@fechner.net smtp.mailfrom=idefix@fechner.net X-Spamd-Bar: --- Authentication-Results: ORIGINATING; auth=pass smtp.auth=idefix@fechner.net smtp.mailfrom=idefix@fechner.net X-Rspamd-Server: anny.lostinspace.de X-Rspamd-Queue-Id: 36EDD8AE7E X-Spamd-Result: default: False [-3.10 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; BAYES_HAM(-3.00)[100.00%]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; ARC_SIGNED(0.00)[i=1]; DKIM_SIGNED(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:12874, ipnet:2000::/3, country:IT]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jul 2019 10:12:55 -0000 Dear Dmitri, Am 07.07.2019 um 00:10 schrieb Dmitri Goutnik via freebsd-ports: > It appears that Go build flags need to be passed down to `go build` invocation > with MAKE_ENV: > > +MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}" > > With that change, the build then fails later due to missing statFileSystemType > func definition for freebsd: > > # gitlab.com/gitlab-org/gitaly/internal/helper/fstype > internal/helper/fstype/fstype.go:7:15: undefined: statFileSystemType > > Which can be fixed by just copying the linux version (this probably needs to > be upstreamed): > > post-patch: > ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/config.toml.example > ${MV} ${WRKSRC}/config.toml.example ${WRKSRC}/config.toml.sample > + ${CP} ${WRKSRC}/internal/helper/fstype/detect_linux.go ${WRKSRC}/internal/helper/fstype/detect_freebsd.go thanks a lot for your help! Without your help the upgrade to www/gitlab-ce 12.0.3 would not have been possible. This go stuff is really not that simple. I reported the upstream change here: https://gitlab.com/gitlab-org/gitaly/issues/1768 Gitlab-ce 12.0.3 is now commited ;) Thanks again. Gruß Matthias -- "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook From owner-freebsd-ports@freebsd.org Sun Jul 7 13:39:31 2019 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 5F8B315E4FB3 for ; Sun, 7 Jul 2019 13:39:31 +0000 (UTC) (envelope-from eugen@grosbein.net) Received: from hz.grosbein.net (hz.grosbein.net [IPv6:2a01:4f8:c2c:26d8::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "hz.grosbein.net", Issuer "hz.grosbein.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D24C8707D for ; Sun, 7 Jul 2019 13:39:20 +0000 (UTC) (envelope-from eugen@grosbein.net) Received: from eg.sd.rdtc.ru (eg.sd.rdtc.ru [IPv6:2a03:3100:c:13:0:0:0:5]) by hz.grosbein.net (8.15.2/8.15.2) with ESMTPS id x67DdAdT037043 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Sun, 7 Jul 2019 13:39:11 GMT (envelope-from eugen@grosbein.net) X-Envelope-From: eugen@grosbein.net X-Envelope-To: Received: from [10.58.0.4] (dadv@[10.58.0.4]) by eg.sd.rdtc.ru (8.15.2/8.15.2) with ESMTPS id x67Dd2Oc024630 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Sun, 7 Jul 2019 20:39:02 +0700 (+07) (envelope-from eugen@grosbein.net) Subject: Re: How to handle go dependencies To: freebsd-ports@freebsd.org References: <5d0e8e03.1c69fb81.5e249.9640@mx.google.com> <20190622205205.GB40599@xombo.localdomain> <4de2a97c-8c41-74e4-cda1-4fdec9554e8f@fechner.net> <20190623095737.GA89814@urd.tobik.me> <20190623214048.GE40599@xombo.localdomain> <07e99b4c-cf7e-49bb-d0a0-66a24c3a563f@fechner.net> <20190706194835.GA86243@xombo.localdomain> <52f3b04f-bf8d-0ec3-e3de-32c6d3a39485@fechner.net> <20190706221001.GB86243@xombo.localdomain> From: Eugene Grosbein Message-ID: <6ba6811b-eaa9-4dfe-7d81-aceb2ee0d578@grosbein.net> Date: Sun, 7 Jul 2019 20:39:02 +0700 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20190706221001.GB86243@xombo.localdomain> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=2.5 required=5.0 tests=BAYES_00, DATE_IN_FUTURE_48_96, LOCAL_FROM,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 X-Spam-Report: * -2.3 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * -0.0 SPF_PASS SPF: sender matches SPF record * 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record * 2.2 DATE_IN_FUTURE_48_96 Date: is 48 to 96 hours after Received: * date * 2.6 LOCAL_FROM From my domains X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on hz.grosbein.net X-Rspamd-Queue-Id: 5D24C8707D X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; spf=permerror (mx1.freebsd.org: domain of eugen@grosbein.net uses mechanism not recognized by this client) smtp.mailfrom=eugen@grosbein.net X-Spamd-Result: default: False [-1.91 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; MX_INVALID(0.50)[greylisted]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_THREE(0.00)[3]; DMARC_NA(0.00)[grosbein.net]; NEURAL_SPAM_SHORT(0.43)[0.429,0]; R_SPF_PERMFAIL(0.00)[]; IP_SCORE(-0.74)[ipnet: 2a01:4f8::/29(-1.94), asn: 24940(-1.78), country: DE(-0.01)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:24940, ipnet:2a01:4f8::/29, country:DE]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jul 2019 13:39:31 -0000 07.07.2019 5:10, Dmitri Goutnik via freebsd-ports wrote: > Which can be fixed by just copying the linux version (this probably needs to > be upstreamed): > > post-patch: > ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/config.toml.example > ${MV} ${WRKSRC}/config.toml.example ${WRKSRC}/config.toml.sample > + ${CP} ${WRKSRC}/internal/helper/fstype/detect_linux.go ${WRKSRC}/internal/helper/fstype/detect_freebsd.go Making a symlink instead of copy should be faster and produce less I/O. From owner-freebsd-ports@freebsd.org Mon Jul 8 14:39:49 2019 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 549F015E045F for ; Mon, 8 Jul 2019 14:39:49 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor.nl2k.ab.ca (doctor.nl2k.ab.ca [204.209.81.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC86E71989 for ; Mon, 8 Jul 2019 14:39:48 +0000 (UTC) (envelope-from doctor@doctor.nl2k.ab.ca) Received: from doctor by doctor.nl2k.ab.ca with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hkUnm-0007Nb-6H for freebsd-ports@freebsd.org; Mon, 08 Jul 2019 08:39:34 -0600 Date: Mon, 8 Jul 2019 08:39:34 -0600 From: The Doctor To: freebsd-ports@freebsd.org Subject: PHP updates Message-ID: <20190708143934.GA27759@doctor.nl2k.ab.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.12.1 (2019-06-15) X-Rspamd-Queue-Id: CC86E71989 X-Spamd-Bar: + X-Spamd-Result: default: False [1.79 / 15.00]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+a]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-0.39)[-0.391,0]; NEURAL_SPAM_MEDIUM(0.60)[0.601,0]; RCPT_COUNT_ONE(0.00)[1]; RCVD_TLS_LAST(0.00)[]; NEURAL_SPAM_SHORT(0.61)[0.610,0]; MX_GOOD(-0.01)[cached: doctor.nl2k.ab.ca]; DMARC_POLICY_ALLOW(-0.50)[nl2k.ab.ca,quarantine]; INTRODUCTION(2.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:6171, ipnet:204.209.81.0/24, country:CA]; MID_RHS_MATCH_FROM(0.00)[]; IP_SCORE(-0.22)[ip: (-0.54), ipnet: 204.209.81.0/24(-0.27), asn: 6171(-0.22), country: CA(-0.09)]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jul 2019 14:39:49 -0000 When are all the PHP modues getting recent updates? -- Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca Yahweh, Queen & country!Never Satan President Republic!Beware AntiChrist rising! https://www.empire.kred/ROOTNK?t=94a1f39b Look at Psalms 14 and 53 on Atheism The sad truth is that excellence makes people nervous. -Shana Alexander From owner-freebsd-ports@freebsd.org Mon Jul 8 15:27:08 2019 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 19BB515E15CF; Mon, 8 Jul 2019 15:27:08 +0000 (UTC) (envelope-from horst.leitenmueller@liwest.at) Received: from so.liwest.at (so.liwest.at [212.33.55.14]) (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 4A730738BC; Mon, 8 Jul 2019 15:27:06 +0000 (UTC) (envelope-from horst.leitenmueller@liwest.at) Received: from [77.119.241.160] (helo=[10.60.0.3]) by so.liwest.at with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1hkVXl-0005Fg-3T; Mon, 08 Jul 2019 17:27:05 +0200 From: =?utf-8?Q?Horst_Leitenm=C3=BCller?= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.11\)) Subject: OpenEMM 2013 Message-Id: <737646D2-2E00-49FB-82E8-1EACF2164EDE@liwest.at> Date: Mon, 8 Jul 2019 17:26:51 +0200 Cc: Lorenzo Salvadore via freebsd-ports To: freebsd-java@freebsd.org X-Mailer: Apple Mail (2.3445.104.11) X-Spam-Score: -1.0 (-) X-Rspamd-Queue-Id: 4A730738BC X-Spamd-Bar: -- X-Spamd-Result: default: False [-2.52 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+a:so.liwest.at]; MV_CASE(0.50)[]; MX_GOOD(-0.01)[mail.liwest.at]; DKIM_TRACE(0.00)[liwest.at:+]; RCPT_COUNT_TWO(0.00)[2]; DMARC_POLICY_ALLOW(-0.50)[liwest.at,quarantine]; FROM_EQ_ENVFROM(0.00)[]; IP_SCORE(-0.02)[country: AT(-0.10)]; MIME_TRACE(0.00)[0:+]; RCVD_IN_DNSWL_LOW(-0.10)[14.55.33.212.list.dnswl.org : 127.0.5.1]; ASN(0.00)[asn:12605, ipnet:212.33.32.0/19, country:AT]; MID_RHS_MATCH_FROM(0.00)[]; ARC_NA(0.00)[]; SUBJECT_ENDS_SPACES(0.50)[]; R_DKIM_ALLOW(-0.20)[liwest.at:s=20140502]; NEURAL_HAM_MEDIUM(-0.96)[-0.960,0]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; NEURAL_SPAM_SHORT(0.57)[0.567,0]; DWL_DNSWL_LOW(-1.00)[liwest.at.dwl.dnswl.org : 127.0.5.1]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jul 2019 15:27:08 -0000 Hi to all, is somebody using this port ? OpenEMM 2013 if not I would recommend to = delete it=20 It=E2=80=99s now broken because of EOL of tomcat 8=20 I have ported 2015 to work with tomcat85 now patch is on the way=20 Not but not least a complete new Version of OpenEMM will be released = (should be already 2019 which is a complete rework and based on tomcat9) Br horst From owner-freebsd-ports@freebsd.org Mon Jul 8 22:48:40 2019 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 0BBC415EBAEC for ; Mon, 8 Jul 2019 22:48:40 +0000 (UTC) (envelope-from yuri@rawbw.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 98C78683F2 for ; Mon, 8 Jul 2019 22:48:39 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: by mailman.ysv.freebsd.org (Postfix) id 538A615EBAEB; Mon, 8 Jul 2019 22:48:39 +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 4237F15EBAEA for ; Mon, 8 Jul 2019 22:48:39 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 12622683CE for ; Mon, 8 Jul 2019 22:48:32 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id x68MmQ31029175 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Mon, 8 Jul 2019 15:48:26 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236] claimed to be yv.noip.me To: "ports@freebsd.org" From: Yuri Subject: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later Message-ID: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> Date: Mon, 8 Jul 2019 15:48:25 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Rspamd-Queue-Id: 12622683CE X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of yuri@rawbw.com designates 198.144.192.42 as permitted sender) smtp.mailfrom=yuri@rawbw.com X-Spamd-Result: default: False [-5.39 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:198.144.192.32/27]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; HAS_XAW(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; DMARC_NA(0.00)[rawbw.com]; MX_GOOD(-0.01)[mx.rawbw.net]; NEURAL_HAM_SHORT(-0.60)[-0.597,0]; RCVD_IN_DNSWL_NONE(0.00)[42.192.144.198.list.dnswl.org : 127.0.10.0]; TO_DN_EQ_ADDR_ALL(0.00)[]; IP_SCORE(-2.58)[ip: (-5.86), ipnet: 198.144.192.0/20(-3.29), asn: 7961(-3.72), country: US(-0.06)]; RCVD_NO_TLS_LAST(0.10)[]; RECEIVED_SPAMHAUS_PBL(0.00)[236.169.180.67.zen.spamhaus.org : 127.0.0.10]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:7961, ipnet:198.144.192.0/20, country:US]; MID_RHS_MATCH_FROM(0.00)[]; FROM_EQ_ENVFROM(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jul 2019 22:48:40 -0000 Maybe the patch level should be updated, because any port using std::filesystem fails in the current poudriere 12.0-RELEASE-p7 VM. Yuri From owner-freebsd-ports@freebsd.org Tue Jul 9 06:54:36 2019 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 2BBEA15D19B2 for ; Tue, 9 Jul 2019 06:54:36 +0000 (UTC) (envelope-from mat@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 9C39F82966 for ; Tue, 9 Jul 2019 06:54:35 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5CCA015D19B0; Tue, 9 Jul 2019 06:54:35 +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 4B3FE15D19AF for ; Tue, 9 Jul 2019 06:54:35 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E5D1182962; Tue, 9 Jul 2019 06:54:34 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mail.j.mat.cc (owncloud.cube.mat.cc [79.143.240.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.mat.cc", Issuer "Let's Encrypt Authority X3" (verified OK)) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id B4C422E523; Tue, 9 Jul 2019 06:54:34 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mat@mat.cc) by mail.j.mat.cc (Postfix) with ESMTPSA id 79F9F942D81; Tue, 9 Jul 2019 06:54:32 +0000 (UTC) Date: Tue, 9 Jul 2019 08:54:32 +0200 From: Mathieu Arnold To: Yuri Cc: "ports@freebsd.org" Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later Message-ID: <20190709065432.5msh5ogx34jwgwda@atuin.in.mat.cc> References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="ssfbgagk2doa25c6" Content-Disposition: inline In-Reply-To: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: E5D1182962 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.98)[-0.980,0] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 06:54:36 -0000 --ssfbgagk2doa25c6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 08, 2019 at 03:48:25PM -0700, Yuri wrote: > Maybe the patch level should be updated, because any port using > std::filesystem fails in the current poudriere 12.0-RELEASE-p7 VM. 12.0-RELEASE-p* is a different branch than 12.0-STABLE. releng/12.0 vs stable/12. Only security fixes and critical fixes get applied to the releng branches. When releng/12.0 was branched, OSVERSION of the branch was 1200086, and it has not changed on that branch. Just after releng/12.0 was branched, the stable/12 branch OSVERSION was bumped to 1200500, to show it is ahead. Details are available here (some OSVERSION bumps may be missing): https://www.freebsd.org/doc/en/books/porters-handbook/versions-12.html --=20 Mathieu Arnold --ssfbgagk2doa25c6 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAl0kOidfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkjfkBAAhRiAJayoDmXZSR0dLlyYpX/hzganPUPvj5JYViE7fCUd4zTwiwGHJnBJ mlD88zBfRU5OUV1pvilrpjD8IdVMsuXqjWF3Q+vtaLYDjbutS8hVNGdj/WAcs7ON M/W/DPEX+HmpBpzs224Vr/ItTBi2e1Vxx8nCaGV4D9HAiFQRY4r2RALQxfC1nITp QYR70Gro+sBgXsDmcl765nBeeDj2iedvS3E5ypISm8vxaFuAHDvzE1S4o1Mby0Uh gSo3Neo/ikEBDYGyhgCz57p0+lsaFodXhkWSmS4x8bAd9YO2/1lcJsl2felyi/hF /DinBGOhY6zJ+jwca3fLvMD9oEVe163Qm7I+AAfonmu937mxBBNqJVzOFN73LxhW vR90tRL6ByxNC+ZiFWbyBF+oX8UXVAvvtSAX2t17l4eDKyOSeoXLFVCexFGdOgba nxusGNTsuE/hs7efnTToxKyu7Q6SLbUOwSftnTa011uyi2fZVFUqOIikeX0cM5sE dIkam1rI7QqmWvZ6cD8OqRvosbpkIHk4g0nzkY5QlDPUqXMNASy1KoMY1CZfiSoo hPLgQHBAW7KxT9u/1CSfkxOZ/2bIAkyQ9qs1mIeHBGtdfkhVJD2x3dU3Xy+1wqIG FnZU9sWntUKc9cLCiu/6kKaC6LuKAmZa0Qc/cBtTbkYgVjtk8a8= =2kKk -----END PGP SIGNATURE----- --ssfbgagk2doa25c6-- From owner-freebsd-ports@freebsd.org Tue Jul 9 08:44:29 2019 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 181FA15D3DFE for ; Tue, 9 Jul 2019 08:44:29 +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 A845586A1C for ; Tue, 9 Jul 2019 08:44:28 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 66C9315D3DF7; Tue, 9 Jul 2019 08:44: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 53EBF15D3DF4 for ; Tue, 9 Jul 2019 08:44:28 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E75A086A0D for ; Tue, 9 Jul 2019 08:44:27 +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 E075C156C5 for ; Tue, 9 Jul 2019 08:44:26 +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 x698iQeM063908 for ; Tue, 9 Jul 2019 08:44:26 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x698iQWc063907; Tue, 9 Jul 2019 08:44:26 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201907090844.x698iQWc063907@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, 9 Jul 2019 08:44:26 +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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 08:44:29 -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 ------------------------------------------------+-----------------+------------ graphics/partio | 1.8.3 | v1.10.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 Tue Jul 9 15:34:38 2019 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 6AFB515DD2C8; Tue, 9 Jul 2019 15:34:38 +0000 (UTC) (envelope-from sergey@akhmatov.ru) Received: from dutch.chaklun.ru (dutch.chaklun.ru [IPv6:2a01:7c8:aab0:135::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2156E6EB22; Tue, 9 Jul 2019 15:34:36 +0000 (UTC) (envelope-from sergey@akhmatov.ru) Received: from mx.ddosprevention.ru ([212.65.69.58] helo=[127.0.0.1]) by dutch.chaklun.ru with esmtpsa (TLSv1.3:TLS_AES_128_GCM_SHA256:128) (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hks8X-00098P-Dz; Tue, 09 Jul 2019 18:34:33 +0300 Subject: Re: Looking for commiter: security update for databases/percona56-server To: koobs@FreeBSD.org, FreeBSD Ports ML , FreeBSD Ports Security Team , flo@freebsd.org References: <8bb194c6-5873-bd50-efdc-9d606158bf31@akhmatov.ru> <70daf271-aa81-cabd-9b26-887c1f5c18eb@FreeBSD.org> From: Sergey Akhmatov Message-ID: <6210af30-da80-741d-c615-55b5ec680e89@akhmatov.ru> Date: Tue, 9 Jul 2019 18:34:32 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: <70daf271-aa81-cabd-9b26-887c1f5c18eb@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Rspamd-Queue-Id: 2156E6EB22 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.41 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-0.97)[-0.969,0]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[akhmatov.ru]; AUTH_NA(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; IP_SCORE(-1.21)[ipnet: 2a01:7c8::/32(-3.59), asn: 20857(-2.48), country: NL(0.01)]; MX_GOOD(-0.01)[mx.genossen.ru]; NEURAL_HAM_SHORT(-0.12)[-0.116,0]; R_SPF_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:20857, ipnet:2a01:7c8::/32, country:NL]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 15:34:38 -0000 On 05/04/2019 10:13, Kubilay Kocak wrote: > On 4/04/2019 3:47 am, Sergey Akhmatov wrote: >> Hello, >> >> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235930 >> >> More than month without maintainer feedback on security update: >> https://vuxml.FreeBSD.org/freebsd/d3d02d3a-2242-11e9-b95c-b499baebfeaf.html >> >> >> Can it be commited? > > See also: > > databases/percona57-{server,client} update to 5.7.25-28 (fixes several > vulnerabilities) > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236570 > maintainer: feld (CC'd) > > There is no bug report or patches for databases/percona55-{server,client} > maintainer: flo (CC'd) I'd like to rise the issue again: the bug with fixes for security vulnerabilities documented in vuxml remains unattended since February - nearly half a year. Unfortunately it seems like @flo does not maintain it anymore. First of all I want to ask again to commit the patch due to maintainer timeout. And the second question I'd like to solve is the fate of the ports maintainership: Is it possible to reach @flo to be sure if he is willing to maintain his ports? Maybe the current maintainer of databases/mysql* could adopt them, which seems reasonable because they have common ancestry. Otherwise I'd like to adopt the port myself. From owner-freebsd-ports@freebsd.org Tue Jul 9 19:51:57 2019 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 5854715E42DC for ; Tue, 9 Jul 2019 19:51:57 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id DC61E836D0 for ; Tue, 9 Jul 2019 19:51:56 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id x69Jpr1f094304 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Tue, 9 Jul 2019 12:51:53 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236] claimed to be yv.noip.me Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later To: freebsd-ports@freebsd.org References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> <20190709065432.5msh5ogx34jwgwda@atuin.in.mat.cc> From: Yuri Message-ID: Date: Tue, 9 Jul 2019 12:51:52 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <20190709065432.5msh5ogx34jwgwda@atuin.in.mat.cc> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Rspamd-Queue-Id: DC61E836D0 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.990,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 19:51:57 -0000 On 2019-07-08 23:54, Mathieu Arnold wrote: > On Mon, Jul 08, 2019 at 03:48:25PM -0700, Yuri wrote: >> Maybe the patch level should be updated, because any port using >> std::filesystem fails in the current poudriere 12.0-RELEASE-p7 VM. > 12.0-RELEASE-p* is a different branch than 12.0-STABLE. releng/12.0 vs > stable/12. Only security fixes and critical fixes get applied to the > releng branches. > When releng/12.0 was branched, OSVERSION of the branch was 1200086, and > it has not changed on that branch. Just after releng/12.0 was branched, > the stable/12 branch OSVERSION was bumped to 1200500, to show it is > ahead. Details are available here (some OSVERSION bumps may be missing): > https://www.freebsd.org/doc/en/books/porters-handbook/versions-12.html > Thanks for this information. This means that ports using std::filesystem can never be built in poudriere on 12 because std::filesystem is not a security feature and it will not be included in the patches. Yuri From owner-freebsd-ports@freebsd.org Tue Jul 9 20:10:05 2019 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 B593915E4CDC; Tue, 9 Jul 2019 20:10:05 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 490018464C; Tue, 9 Jul 2019 20:10:05 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hkwR4-0008F2-MJ; Tue, 09 Jul 2019 22:09:58 +0200 Date: Tue, 9 Jul 2019 22:09:58 +0200 From: Kurt Jaeger To: Sergey Akhmatov Cc: FreeBSD Ports ML , FreeBSD Ports Security Team , flo@freebsd.org Subject: Re: Looking for commiter: security update for databases/percona56-server Message-ID: <20190709200958.GA34918@home.opsec.eu> References: <8bb194c6-5873-bd50-efdc-9d606158bf31@akhmatov.ru> <70daf271-aa81-cabd-9b26-887c1f5c18eb@FreeBSD.org> <6210af30-da80-741d-c615-55b5ec680e89@akhmatov.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6210af30-da80-741d-c615-55b5ec680e89@akhmatov.ru> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 20:10:05 -0000 Hi! First, sorry for this delay etc. > > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=235930 [...] > > > Can it be commited? Done. > > See also: > > > > databases/percona57-{server,client} update to 5.7.25-28 (fixes > > several vulnerabilities) > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236570 > > maintainer: feld (CC'd) testbuilds@work > > There is no bug report or patches for databases/percona55-{server,client} > > maintainer: flo (CC'd) > > I'd like to rise the issue again: the bug with fixes for security > vulnerabilities documented in vuxml remains unattended since February - > nearly half a year. Unfortunately it seems like @flo does not maintain it > anymore. flo@'s missing in action since January. Sometimes, the real life interrupts the digital world, so who knows what stops him... > First of all I want to ask again to commit the patch due to maintainer > timeout. Done. > And the second question I'd like to solve is the fate of the ports > maintainership: Is it possible to reach @flo to be sure if he is willing > to maintain his ports? He'll get this in Cc: > Maybe the current maintainer of databases/mysql* > could adopt them, which seems reasonable because they have common > ancestry. Otherwise I'd like to adopt the port myself. Please submit a PR with a patch to change maintainer, add me to the Cc: list. We'll change it after that PR times out. -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Tue Jul 9 20:14:44 2019 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 A400415E4FB9; Tue, 9 Jul 2019 20:14:44 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AE8A84B45; Tue, 9 Jul 2019 20:14:44 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hkwVd-0008Fn-H7; Tue, 09 Jul 2019 22:14:41 +0200 Date: Tue, 9 Jul 2019 22:14:41 +0200 From: Kurt Jaeger To: Sergey Akhmatov , FreeBSD Ports Security Team , FreeBSD Ports ML , flo@freebsd.org Subject: Re: Looking for commiter: security update for databases/percona56-server Message-ID: <20190709201441.GB34918@home.opsec.eu> References: <8bb194c6-5873-bd50-efdc-9d606158bf31@akhmatov.ru> <70daf271-aa81-cabd-9b26-887c1f5c18eb@FreeBSD.org> <6210af30-da80-741d-c615-55b5ec680e89@akhmatov.ru> <20190709200958.GA34918@home.opsec.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190709200958.GA34918@home.opsec.eu> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 20:14:44 -0000 Hi! > > Maybe the current maintainer of databases/mysql* > > could adopt them, which seems reasonable because they have common > > ancestry. Otherwise I'd like to adopt the port myself. > > Please submit a PR with a patch to change maintainer, add me > to the Cc: list. We'll change it after that PR times out. One thing that might be the reason for this neglect of those ports: The currect version seems to be percona80, but there's no port for this. Then there's the competition from mariadb -- so why is the percona version still relevant ? Can you elaborate ? -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Tue Jul 9 20:19:12 2019 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 40C9515E515C for ; Tue, 9 Jul 2019 20:19:12 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D89B884D64; Tue, 9 Jul 2019 20:19:11 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mail.j.mat.cc (owncloud.cube.mat.cc [79.143.240.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.mat.cc", Issuer "Let's Encrypt Authority X3" (verified OK)) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 9298C486A; Tue, 9 Jul 2019 20:19:11 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mat@mat.cc) by mail.j.mat.cc (Postfix) with ESMTPSA id 63CAF942D81; Tue, 9 Jul 2019 20:19:10 +0000 (UTC) Date: Tue, 9 Jul 2019 22:19:10 +0200 From: Mathieu Arnold To: Yuri Cc: freebsd-ports@freebsd.org Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later Message-ID: <20190709201910.4hlunmx4jxvao5kh@atuin.in.mat.cc> References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> <20190709065432.5msh5ogx34jwgwda@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="3j37n5vynvfuucqq" Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: D89B884D64 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.989,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jul 2019 20:19:12 -0000 --3j37n5vynvfuucqq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 09, 2019 at 12:51:52PM -0700, Yuri wrote: > On 2019-07-08 23:54, Mathieu Arnold wrote: > > On Mon, Jul 08, 2019 at 03:48:25PM -0700, Yuri wrote: > > > Maybe the patch level should be updated, because any port using > > > std::filesystem fails in the current poudriere 12.0-RELEASE-p7 VM. > > 12.0-RELEASE-p* is a different branch than 12.0-STABLE. releng/12.0 vs > > stable/12. Only security fixes and critical fixes get applied to the > > releng branches. > > When releng/12.0 was branched, OSVERSION of the branch was 1200086, and > > it has not changed on that branch. Just after releng/12.0 was branched, > > the stable/12 branch OSVERSION was bumped to 1200500, to show it is > > ahead. Details are available here (some OSVERSION bumps may be missing= ): > > https://www.freebsd.org/doc/en/books/porters-handbook/versions-12.html > >=20 >=20 > Thanks for this information. >=20 > This means that ports using std::filesystem can never be built in poudrie= re > on 12 because std::filesystem is not a security feature and it will not be > included in the patches. I'm not sure I follow what you are talking about. It can be built on stable/12, which is 12.0-STABLE, and on 12.1 when it gets released in November. --=20 Mathieu Arnold --3j37n5vynvfuucqq Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAl0k9r1fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkjbUQ/+M2ZZLADbcC/3hSrivv3jSr2L7+y5nwLpJM+Im3j6VkGu1IdZxHLmsThL II3/19owEqR7BOaHHHaKZc9pINI569oTkRsdOyzpSEPOE+GE3hl2O3jP6oBNzYLe L/0co+7MVxnIJHEYisD1DgSGwRBihcY+odg5utvi0acDQ0GifcVGuPuo2LcSqjbW Ymh0Rkzgx+fNghVoJcd5eJPXWYmrUsnOMSFDBBqQy3GZYhrdqP2/rFIss8VTLmui tzts1lgHpO1DVC+Gv3ajucceIWKna3/FeVowTElW2uZMXVmZ3DBdy+w6oIj4LPnN Lg3KC8b4PiCQBDlC+fAgcWk8iPjZ39/I/B1SuDLSi23ltIpZNy46r8kDg3P42LLJ KEMQ2ihVQSXj3CQx6weQr2bcgFDYYzPgxP/QhmdFGBPQBl8UkB57v8MTckyAzTZG tUEd2/oZsxV/uy/fF8uLkdqMCI2sKwcp0UG3SmTdLvqiF8wuCxizZMtNnqlX+cyq kvSZm2wQ8p5IYS54kcWPk3BMqwaQqhM21MJnrf+cyMxQoIM1JIU5q4NiJTFEJs13 f8EEfkadYDIOa803U14+2HFW03dZuylmGWpqevGdv5+3lvrY2Kp+ZZD8/SmfESGn b+YIJ0El/kr6nlpNnbcwTFL17duhGNy3HnRlGZUs7Y+G5fZaOv8= =z3tx -----END PGP SIGNATURE----- --3j37n5vynvfuucqq-- From owner-freebsd-ports@freebsd.org Wed Jul 10 00:10:08 2019 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 0E4C415E9658 for ; Wed, 10 Jul 2019 00:10:08 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id EB7AF8D5C4 for ; Wed, 10 Jul 2019 00:10:01 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id x6A09sVP036915 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Tue, 9 Jul 2019 17:09:54 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236] claimed to be yv.noip.me Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later To: freebsd-ports@freebsd.org References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> <20190709065432.5msh5ogx34jwgwda@atuin.in.mat.cc> <20190709201910.4hlunmx4jxvao5kh@atuin.in.mat.cc> From: Yuri Message-ID: <04332f16-9004-367c-8f17-dc6b31f3940e@rawbw.com> Date: Tue, 9 Jul 2019 17:09:53 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <20190709201910.4hlunmx4jxvao5kh@atuin.in.mat.cc> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Rspamd-Queue-Id: EB7AF8D5C4 X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of yuri@rawbw.com designates 198.144.192.42 as permitted sender) smtp.mailfrom=yuri@rawbw.com X-Spamd-Result: default: False [-5.67 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:198.144.192.32/27]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; HAS_XAW(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TO_DN_NONE(0.00)[]; MX_GOOD(-0.01)[mx.rawbw.net]; NEURAL_HAM_SHORT(-0.83)[-0.835,0]; RCVD_IN_DNSWL_NONE(0.00)[42.192.144.198.list.dnswl.org : 127.0.10.0]; IP_SCORE(-2.62)[ip: (-5.96), ipnet: 198.144.192.0/20(-3.39), asn: 7961(-3.71), country: US(-0.06)]; RCVD_NO_TLS_LAST(0.10)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:7961, ipnet:198.144.192.0/20, country:US]; MID_RHS_MATCH_FROM(0.00)[]; DMARC_NA(0.00)[rawbw.com]; RECEIVED_SPAMHAUS_PBL(0.00)[236.169.180.67.zen.spamhaus.org : 127.0.0.10] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 00:10:08 -0000 On 2019-07-09 13:19, Mathieu Arnold wrote: > On Tue, Jul 09, 2019 at 12:51:52PM -0700, Yuri wrote: >> On 2019-07-08 23:54, Mathieu Arnold wrote: >>> On Mon, Jul 08, 2019 at 03:48:25PM -0700, Yuri wrote: >>>> Maybe the patch level should be updated, because any port using >>>> std::filesystem fails in the current poudriere 12.0-RELEASE-p7 VM. >>> 12.0-RELEASE-p* is a different branch than 12.0-STABLE. releng/12.0 vs >>> stable/12. Only security fixes and critical fixes get applied to the >>> releng branches. >>> When releng/12.0 was branched, OSVERSION of the branch was 1200086, and >>> it has not changed on that branch. Just after releng/12.0 was branched, >>> the stable/12 branch OSVERSION was bumped to 1200500, to show it is >>> ahead. Details are available here (some OSVERSION bumps may be missing): >>> https://www.freebsd.org/doc/en/books/porters-handbook/versions-12.html >>> >> Thanks for this information. >> >> This means that ports using std::filesystem can never be built in poudriere >> on 12 because std::filesystem is not a security feature and it will not be >> included in the patches. > I'm not sure I follow what you are talking about. > It can be built on stable/12, which is 12.0-STABLE, and on 12.1 when it > gets released in November. > > Ok, thanks. Yuri From owner-freebsd-ports@freebsd.org Wed Jul 10 03:05:30 2019 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 3BE6315EC972 for ; Wed, 10 Jul 2019 03:05:30 +0000 (UTC) (envelope-from cyberbotx@cyberbotx.com) Received: from smtp.knology.net (smtp.knology.net [64.8.71.112]) (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 023A96CB82 for ; Wed, 10 Jul 2019 03:05:28 +0000 (UTC) (envelope-from cyberbotx@cyberbotx.com) X-CTCH-AV-ThreatsCount: X-CTCH-VOD: Unknown X-CTCH-Spam: Unknown X-CTCH-RefID: str=0001.0A090215.5D2547D0.003A, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X_CMAE_Category: , , X-CNFS-Analysis: v=2.3 cv=TeLoSiYh c=1 sm=1 tr=0 a=YtD4WVyYgXA88XzShn1qJQ==:117 a=YtD4WVyYgXA88XzShn1qJQ==:17 a=KGjhK52YXX0A:10 a=kj9zAlcOel0A:10 a=oXJhIhYT-vsA:10 a=0o9FgrsRnhwA:10 a=qIHxdxLbUQEA:10 a=6I5d2MoRAAAA:8 a=-5Kkm6aDnwFg0CP3EaEA:9 a=CjuIK1q_8ugA:10 a=IjZwj45LgO3ly-622nXo:22 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: Y3liZXJib3R4QHdvd3dheS5jb20= X_CMAE_Category: , , X-CNFS-Analysis: X-CM-Score: X-Scanned-by: Cloudmark Authority Engine Received: from [24.192.118.111] ([24.192.118.111:37872] helo=www.cyberbotx.com) by smtp.mail.wowway.com (envelope-from ) (ecelerity 3.6.25.56547 r(Core:3.6.25.0)) with ESMTPA id 48/68-32177-0D7452D5; Tue, 09 Jul 2019 22:05:04 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 09 Jul 2019 22:05:03 -0400 From: Naram Qashat To: freebsd-ports@FreeBSD.org Subject: Looking for committer for Scintilla/SciTE update Message-ID: <03cfb0cdae9c771ed1ca1221948ab90a@cyberbotx.com> X-Sender: cyberbotx@cyberbotx.com User-Agent: Roundcube Webmail/1.3.9 X-Rspamd-Queue-Id: 023A96CB82 X-Spamd-Bar: +++++ Authentication-Results: mx1.freebsd.org; spf=permerror (mx1.freebsd.org: domain of cyberbotx@cyberbotx.com uses mechanism not recognized by this client) smtp.mailfrom=cyberbotx@cyberbotx.com X-Spamd-Result: default: False [5.27 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.99)[0.987,0]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[cyberbotx.com]; NEURAL_SPAM_MEDIUM(1.00)[1.000,0]; RCPT_COUNT_ONE(0.00)[1]; RCVD_TLS_LAST(0.00)[]; MX_GOOD(-0.01)[cached: mail1.no-ip.com]; R_SPF_PERMFAIL(0.00)[-all]; RCVD_IN_DNSWL_NONE(0.00)[112.71.8.64.list.dnswl.org : 127.0.5.0]; NEURAL_SPAM_LONG(1.00)[0.999,0]; IP_SCORE(2.39)[ip: (8.30), ipnet: 64.8.70.0/23(3.69), asn: 36271(0.04), country: US(-0.06)]; RECEIVED_SPAMHAUS_PBL(0.00)[111.118.192.24.zen.spamhaus.org : 127.0.0.11]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:36271, ipnet:64.8.70.0/23, country:US]; MID_RHS_MATCH_FROM(0.00)[]; FROM_EQ_ENVFROM(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 03:05:30 -0000 Could I get a ports committer to look over https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238505 (update of x11-toolkits/scintilla and editors/scite) please? It has been about a month since I submitted it originally and I've had to update it a few times since then. Thanks, Naram Qashat From owner-freebsd-ports@freebsd.org Wed Jul 10 05:22:18 2019 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 6A41615CA873 for ; Wed, 10 Jul 2019 05:22:18 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from anny.lostinspace.de (anny.lostinspace.de [IPv6:2001:608:a02::33]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AC9E70BD5 for ; Wed, 10 Jul 2019 05:22:16 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from server.idefix.lan (unknown [IPv6:2a01:5c0:1b:1b71:21b:21ff:fe7b:3468]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: idefix@fechner.net) by anny.lostinspace.de (Postfix) with ESMTPSA id 590E47170 for ; Wed, 10 Jul 2019 07:22:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fechner.net; s=default; t=1562736133; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references:openpgp:openpgp:autocrypt:autocrypt; bh=tEFI2+SixbRGHNtB4QU6ois9p27UDFk7lnbd0s1oySM=; b=gQu0jPfe0XCIvX/ttiiDqlNdZO5MMKUGMncHGe7y45iChDn4eRwbMMjk3foaaJ1AF9H7uT jCGi91hK/0GsPGmtP0ntQvJQIofXZIh3RUvSlaMvhSk2SiRLv22p4m66Jv6GXnZPmlZW8E AMw5sVYL7lILMnPipIuhwOT/wGvtBEU= Received: from [192.168.0.151] (217-155-117-131.ip-addr.inexio.net [131.117.155.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by server.idefix.lan (Postfix) with ESMTPSA id B4E959DFD8 for ; Wed, 10 Jul 2019 07:22:11 +0200 (CEST) Subject: Re: How to handle go dependencies To: freebsd-ports@freebsd.org References: From: Matthias Fechner Openpgp: preference=signencrypt Autocrypt: addr=idefix@fechner.net; prefer-encrypt=mutual; keydata= mQINBFqca1YBEADM9mF2+ifk8HILTlf5wtAzV6SYVR4RvNOo/8Kucw4sCZT76zS1fjZe4Zy1 3C0IZ07Wi+3PnoGIgOCsXp3PrTc2nuHQWkwVBYXy8UaR9DHBWA/mIvRGG1ZscKQYA6oUdCvd K8Mu26zO60yTt+ONzFtK6G1myH4EHXZ8dpmdCFf+W3rzTU+aCQ5S3OfwCLGgYgOaVREGkdOc 5SVCpFb4n+2B8+CqeWsRHhnT+4h7/YhgDMGp4GiI3yrB2nBVSUUvcosD2nRtJQgGQHcAFtMq 3hJaKPOR/mHc6KVrp0xmGNmdtazvXloHmGIl9O1UpmMmrYu9Kugl0JkGi2fAcno02XgVlkyX 7xDLTteP5cNqRxor4yVDaRWUQnOfK9XgcrKGrAzb65BkCSkjT+Aw3S/A8Qd6NvjL9qy1d+Ct dzatOVF/Y7jaW28CMr3jvwPS13OxV7PnJzIZzdik20eVxfOXuYfxZD+PwBaGgFF0qj6zKACC aKLalE0ZpY0zNn/iPyQX/Cf9KoDyFpOHSsEswiJ5rCWwppVcsFyogHOemVmeaXlvyDPEipnV ZUkpGP/CCqPu3eD0uDzP7UJ0pt/l/JfW0Xw/4p9mjB024xiRlxLa6vSRfGl//EdtAIbKKa8x 5wsKTQEbYJDmXE3tH/A54DCqRXhcopTlu2iJlTdnIMltn9afVwARAQABtCVNYXR0aGlhcyBG ZWNobmVyIDxpZGVmaXhAZmVjaG5lci5uZXQ+iQJXBBMBCgBBAhsDBQkJZgGABQsJCAcDBRUK CQgLBRYDAgEAAh4BAheAFiEEaWB64mCp804YOtqutot13J/XR+EFAlqcc9gCGQEACgkQtot1 3J/XR+GQyhAAwDxUSg7X2aS1d6rrYUZdDk8rT5TCjayDAyOATdAUhJRZk8qXRNF27Mu6xiOT mIvEMKLagNsitffZs1g/mulRQiDVLloGav7xozSfYlaOYWpPb55wpsugQPLZz0OkU9tzw7j7 7sPPvnAxeqSofUJzQdZzp43aVwXVqsJ3rY0jGzYA5RLS6CBI1RRR8/hHLMxspDPl79IW3GhI HAXaVX1HVJA2oJEo9Y95DnJwX8NV+hvLlUVA2KDdNKFiVJKeV3ccqw+/5zW3Y8J6Rd8blW9n p68Z7lyxt6mvsDEdSxOyGSkPagzIDfHqmDfkaeum7gHMwweH2e2pZuhzMZkrKNoSkKiJ5uim 638ZhnzzmEWh2qtYPgHlZG1jO6n2DSzCqJkQYjYUtLj7ylIgZakG8M3idQRugHImMBq+HSMu WR8FI52gh1+4LbIArHB4YWTTr933ElwhS1jtomK9SeWezPfjunpxqXQl4QR0qXAuglsOMJ6y Togb6lc0qyEdOa5VCXQTLSD9yZpolSQOjOe1XEyM4g5v7FrPBGVni9AxlARvUDVbYQDv1+4A gchtgpLmAF8mDPq/tGeXuAO3m+ExQDXpJ4CneI9YHc+joU2cXQi5MP1NzgMOV43XEZCiTW0O BWM1+857gmDqGbybE7F3UFpvBs9/NRWnuxoKaYxYbqCOc3m5Ag0EWpxrVgEQAN3uCLHZF+1V gcrzYjwL1wAJwjYb7UnHKvNYdaBKgW0n0NTfaTCLHxHYPO8NlV1+lNctSeXLeiWpmE1lCDHq /++53EJ34OsRd/n246PdtfIfltML73tsmq6S9zTye2zv7LsmE7jgUBaasbv0qSLSybOUvkRx j3xBuK9Ymg/ZXaENOhxwIQ6oQoNLg3ers9t5Xl4NVK6gzzZ2OdTGnuUVhQmi4rbP04R0GJFh AtGLAYUCxlXVZhdPAs4qZaoAEP5nW/u2MyzSaIouwcEIdttAiPZdrJr+a4OGKz88Sn6zqKSa uyUADgX+G8tKUONgZbfz4SSRvlinOgyU2RyyfNS977r/YfaHH+oAxg31yUWPtD/ryfVw69bG vK8RQrZ9+c1vyWBABoQOh5+JHW/AE9Xj5dQatEfWmGO3+/FRo2TIhqZQXXl8PW+jtEjkhgOH OUX5ERzSm6nCcPIw+LUkEINcLc9bw4fv1eOWIdBuCckGM4rWXkLYbqhdSzdWeCsC0tiQk8x7 O1zXRJOKF4rITJd/qX322EH29BR+T9V1Hw7LDSRe+3YxtoXhROZRXjF8QniEHeKVNRUComr6 rWGmuHjsNTQ7twtwnG8xSOfCkYAp9GrbzBkIYX+VFvFQLqVM+It3RAlge/bwpZPvkr3bFsJk 4JS+EAugBIrP0xd9BMOh6Ej5ABEBAAGJAjwEGAEKACYWIQRpYHriYKnzThg62q62i3Xcn9dH 4QUCWpxrVgIbDAUJCWYBgAAKCRC2i3Xcn9dH4ZZsEACoQI109htphVe2AQhJ7wuPo8pIrSFA 0Mb0pfibX/sYw8ZZz/x3ctTI3Ajq2baSaoebIuUyd6oPI7cAzgL4s2zHiZ3ChH2dDxJlOPfk OaiK124DJMPqWiWuxe39tgq23tsPhwcvF+DC+SkJoLWKCYNC06fS3bLktZ0s4lVE5tqfL5ww MvxgxB+6+sWHwZWSv1IwB/geov6zkEhVdkXqrGPE52LyLfU0ACMmihcl0/npsCMZSls0urge CsPMuHPQnmcM2ERbere8i9OdKQDzGBrTbWl9DxNRf4o+cAYirEJM3Kc+ZD2SE34bTSvg3kdQ QZQbj+o+BRcsR0LaGbORkNaMZlp5OuXteL6nG7sbAPn0bjUUlup8CJEXDXENG6LJG1/oVWFq m3OtPyr5UoMQAuhuGx0/Om6AXKr/mk+veuoKWMXkqll045/bYE7bX2A0gkyGE5DdjaiHPmS9 NsWuKDeExLlXZOL1GX+PKjWLADwlv07XHB8Hf6U0/lpf3/mggRtqHyKbHt0iRqYaMC95gVdM rbugxh61U/zxIaweU7VolD5cRrltxqPp5szOwDzw42JYwbpYsXFJXNkuCGCmK1LHcShfEggt fV3g/JKzvNRQn6p1f0frppl/eZ5UvWVKrNERJzcZgkOecxwiK/L/JoGpGfWOqWGsTxe/AnQc Xxj8Dw== Message-ID: <15e9b821-bf51-0eee-6000-3032bf4067d1@fechner.net> Date: Wed, 10 Jul 2019 07:22:03 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="QgrE7WfFmYksNbqRMArWjURLYOQZcLp9U" ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=fechner.net; s=default; t=1562736133; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references:openpgp:openpgp:autocrypt:autocrypt; bh=tEFI2+SixbRGHNtB4QU6ois9p27UDFk7lnbd0s1oySM=; b=Mwec2Kq/5yHyarcmPm+cj2KmUJuuO3gGsg597TBsKGaCdMWc6hSx7HWRR41su4Ddfp7i0V YD/QLr3zytdr5EClJR417r7PdR/oeEjnNspiVHX7VoLdLoaqVwMmkfQs15JfcVm6igi3Yh yo6xl2EsLC2ViY/wGWBZNM90bNOnpdQ= ARC-Seal: i=1; s=default; d=fechner.net; t=1562736133; a=rsa-sha256; cv=none; b=lWQXy/RKlAS5Fdfi7EpJayhsDYD5QOigE7gUg19HRStIOefmeOy9fKw3qUfAPLYNevZGAB 2B6OmOTQ5bvwU6ev1Q/Fh8Nkqoen6Q3ZKlqpe3v7sdMvPOglaTyO+1LDs4yQPREdRSLv82 Z+lDXi3ZiBan1YerMf2qdS4cl6hlDmw= ARC-Authentication-Results: i=1; ORIGINATING; auth=pass smtp.auth=idefix@fechner.net smtp.mailfrom=idefix@fechner.net X-Spamd-Bar: ----- Authentication-Results: ORIGINATING; auth=pass smtp.auth=idefix@fechner.net smtp.mailfrom=idefix@fechner.net X-Rspamd-Server: anny.lostinspace.de X-Rspamd-Queue-Id: 590E47170 X-Spamd-Result: default: False [-5.20 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; BAYES_HAM(-3.00)[100.00%]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; HAS_ATTACHMENT(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; TO_DN_NONE(0.00)[]; MIME_GOOD(-0.20)[multipart/signed,multipart/mixed,text/plain]; RCPT_COUNT_ONE(0.00)[1]; ARC_SIGNED(0.00)[i=1]; DKIM_SIGNED(0.00)[]; SIGNED_PGP(-2.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:+,3:~]; ASN(0.00)[asn:12874, ipnet:2000::/3, country:IT]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 05:22:18 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --QgrE7WfFmYksNbqRMArWjURLYOQZcLp9U Content-Type: multipart/mixed; boundary="nlbJrcVBW1wcRbBifGWCHJK62okrYeet8"; protected-headers="v1" From: Matthias Fechner To: freebsd-ports@freebsd.org Message-ID: <15e9b821-bf51-0eee-6000-3032bf4067d1@fechner.net> Subject: Re: How to handle go dependencies References: In-Reply-To: --nlbJrcVBW1wcRbBifGWCHJK62okrYeet8 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: en-US Am 22.06.2019 um 11:58 schrieb Matthias Fechner: > What is the correct way to getting these dependencies fetched and > correctly included into the work-source in the fetch step using go? Here a short summary what I had to do to build the port successfully with go deps. Thanks a lot for all that helped here! Add: USES=3D=C2=A0=C2=A0=C2=A0 go:modules I had to use this USES as the port is using gmake to build everything: USES=3D=C2=A0=C2=A0=C2=A0 gmake go:modules,no_targets As gmake is used, the GOFLAGS must be passed to gmake with: MAKE_ENV=3D=C2=A0=C2=A0=C2=A0 GOFLAGS=3D"${GO_BUILDFLAGS}" The port uses gitlab to fetch the distfiles, so I had to tell the ports that github is not the default: USE_GITHUB=3D=C2=A0=C2=A0=C2=A0 nodefault The next step is then to create the GH_TUPLE and GL_TUPLE (depending where the go libs are hosted, for they were on github and gitlab). For this a very handy tool from Dmitri is existing: ports-mgmt/modules2tu= ple To simplify it, I create a new target: gomod-deps: patch =C2=A0=C2=A0=C2=A0 (cd ${WRKSRC} && go mod vendor) =C2=A0=C2=A0=C2=A0 (cd ${WRKSRC} && modules2tuple vendor/modules.txt) Just execute `make gomod-deps` and you should see the required GH/GL_TUPLE lines. For the GL_TUPLE lines I had to put in the full length for the commit hash, as the short one does not work. I'm not sure if this is a port problem or a gitlab limitation, a task for later to look into it. The last section of the TUPLE line must not contain the character `-` if this is the case, replace it by a `_`. I think the script from Dmitri is doing this already for the GH_TUPLE lin= es. Put the TUPLE lines into the Makefile, run `make makesum` and your port should be prepare to be able to build. If you need a full example, please have a look into devel/gitaly. Have fun and thanks again to all that helped me! =C2=A0=C2=A0=C2=A0 Gru=C3=9F Matthias --=20 "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook --nlbJrcVBW1wcRbBifGWCHJK62okrYeet8-- --QgrE7WfFmYksNbqRMArWjURLYOQZcLp9U 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 iQIcBAEBCAAGBQJdJXYCAAoJELaLddyf10fhBaAP/iSfPPe68JRZxWq0G2uZy4GH 3kmx7WbbZjIqVCOSRZFTTU9zh9isZ7GrbywMjD0eF07tMbpx2+c0c1tchR4ptjA+ rzILUfe/XICPX/8KEKPbJlBSBracQm9JbYAp4ZY30AAlc+MAE2hP8TeTbP19mEDq TD1bO4A0WlVRWwc4xxRl4dn0AvD5W4brY/2sHgXFtMv20fERaQWe6x7tK+CF0AL3 4iHV5DKEy3nZlQpyNaNnlihOZ12NS/4pPjGriJOS6DR29/VZiz9WK0N8F10DmbAL u+5fnNquWxNO2KeUXqC0bH9nm0Y01ADZzMKmtNAevCzeA7mGYVhcat6nZ4SZ8frE ucKlHPJ0E0sb+75QMVRxNSG26Vb86A9NU15jsX8UALNHVGhincQ3pXfXu51NwtFE +pD43mPQe++hQQXb8FjCutrlST/6Z8ms5zlHlw3mbTxhNQkQ0DWJ0es9UFCZ74I1 fxaCS07/4c0fwpWUi23BH8aLHoQh4sGjmKN5EuCpiSQfg1hgiqNzYSWZBkD9i6sG 4KiG/eBWVp+5RwMxyWD6RQ7GuehFlUrKM+wPnj1p/nQo/q1hXXTu/9oMC0NtMgjs LZ2TzJR5noKCv+CVRa5A1cpxEHWmRp4ViQ6f24lQ8eindgKamNxWNYelhjGG+5zS 542zHFmQe0/FWjsRudUT =6HBW -----END PGP SIGNATURE----- --QgrE7WfFmYksNbqRMArWjURLYOQZcLp9U-- From owner-freebsd-ports@freebsd.org Wed Jul 10 07:42:07 2019 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 280DD15CDBA2 for ; Wed, 10 Jul 2019 07:42:07 +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 D1E5475C75 for ; Wed, 10 Jul 2019 07:42:06 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 904E715CDB98; Wed, 10 Jul 2019 07:42:06 +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 7EED315CDB95 for ; Wed, 10 Jul 2019 07:42:06 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1981975C66 for ; Wed, 10 Jul 2019 07:42:06 +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 2DA4F1C54 for ; Wed, 10 Jul 2019 07:42:05 +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 x6A7g5ZQ094164 for ; Wed, 10 Jul 2019 07:42:05 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6A7g5Kb094163; Wed, 10 Jul 2019 07:42:05 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201907100742.x6A7g5Kb094163@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, 10 Jul 2019 07:42:05 +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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 07:42:07 -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 ------------------------------------------------+-----------------+------------ ftp/net2ftp | 1.1 | 1.2 ------------------------------------------------+-----------------+------------ x11-fm/filerunner | 17.04.01.19 | 19.07.08.17 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Wed Jul 10 11:59:25 2019 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 65DE415D3FCD for ; Wed, 10 Jul 2019 11:59:25 +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 04A0188058 for ; Wed, 10 Jul 2019 11:59:25 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id B916115D3FCC; Wed, 10 Jul 2019 11:59: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 A435215D3FCB for ; Wed, 10 Jul 2019 11:59:24 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3FEA788057; Wed, 10 Jul 2019 11:59:24 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 310132DB; Wed, 10 Jul 2019 11:59:24 +0000 (UTC) From: Jan Beich To: Jason de Cordoba Cc: ports@FreeBSD.org Subject: Re: ffmpeg port References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> Date: Wed, 10 Jul 2019 13:59:16 +0200 In-Reply-To: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> (Jason de Cordoba's message of "Wed, 10 Jul 2019 13:33:24 +0200") Message-ID: <1ryy-rtgr-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 3FEA788057 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 11:59:25 -0000 (CC'ing appropriate public list. If you want me to care don't send private mails.) Jason de Cordoba writes: > OMG > > Please stick with something stable and don't update this port 5-6 times > a month. > > Thanks for your contributions to FreeBSD > > Have a great day, > > Jason I mainly bump PORTREVISION when ABI changes. Bumping for non-default options is a policy described in Porter's Handbook. https://www.freebsd.org/doc/en/books/porters-handbook/makefile-naming.html#makefile-portrevision Why not use binary packages? Or why not build a quarterly branch? Or does anyone have better ideas? From owner-freebsd-ports@freebsd.org Wed Jul 10 14:19:30 2019 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 A069E15D827C for ; Wed, 10 Jul 2019 14:19:30 +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 3B41A8D911 for ; Wed, 10 Jul 2019 14:19:30 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EA41615D827B; Wed, 10 Jul 2019 14:19:29 +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 D8B2815D827A for ; Wed, 10 Jul 2019 14:19:29 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CA998D910; Wed, 10 Jul 2019 14:19:29 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 506083108; Wed, 10 Jul 2019 14:19:29 +0000 (UTC) From: Jan Beich To: Yuri Cc: "ports\@freebsd.org" Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> Date: Wed, 10 Jul 2019 16:19:23 +0200 In-Reply-To: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> (yuri@rawbw.com's message of "Mon, 8 Jul 2019 15:48:25 -0700") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 7CA998D910 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.86 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.86)[-0.858,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 14:19:30 -0000 Yuri writes: > Maybe the patch level should be updated, because any port using > std::filesystem fails in the current poudriere 12.0-RELEASE-p7 VM. Which port? What error? std::filesystem can be used on any FreeBSD version. C++ example: #if __cplusplus >= 201703L && __has_include() #include #else #include namespace std { namespace filesystem = experimental::filesystem; } #endif Makefile example: .if exists(/usr/lib/libc++fs.a) LIBS+= -lc++fs .elif exists(/usr/lib/libc++experimental.a) # XXX Remove after FreeBSD 12.0 EOL LIBS+= -lc++experimental .else # XXX Remove after FreeBSD 11.2 EOL USE_GCC= yes LIBS+= -lstdc++fs .endif From owner-freebsd-ports@freebsd.org Wed Jul 10 15:05:56 2019 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 91DEE15D97CD for ; Wed, 10 Jul 2019 15:05:56 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 134DE9004B for ; Wed, 10 Jul 2019 15:05:56 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id C7D3815D97CC; Wed, 10 Jul 2019 15:05:55 +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 8B7F715D97CB for ; Wed, 10 Jul 2019 15:05:55 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D8F49004A for ; Wed, 10 Jul 2019 15:05:55 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 51DF05DF0 for ; Wed, 10 Jul 2019 15:05:54 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org ([127.0.1.2]) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id x6AF5slX059933 for ; Wed, 10 Jul 2019 15:05:54 GMT (envelope-from indexbuild@portsindexbuild.ysv.freebsd.org) Received: (from indexbuild@localhost) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6AF5sok059932 for ports@FreeBSD.org; Wed, 10 Jul 2019 15:05:54 GMT (envelope-from indexbuild) Date: Wed, 10 Jul 2019 15:05:54 GMT From: Ports Index build Message-Id: <201907101505.x6AF5sok059932@portsindexbuild.ysv.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 11.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 15:05:56 -0000 INDEX build failed with errors: Generating INDEX-11 - please wait..--- describe.accessibility --- --- describe.arabic --- --- describe.archivers --- --- describe.astro --- --- describe.audio --- --- describe.benchmarks --- --- describe.biology --- --- describe.cad --- --- describe.chinese --- --- describe.comms --- --- describe.converters --- --- describe.databases --- --- describe.deskutils --- --- describe.devel --- --- describe.dns --- --- describe.editors --- --- describe.emulators --- --- describe.finance --- --- describe.french --- --- describe.ftp --- [...] --- describe.hebrew --- --- describe.hungarian --- --- describe.irc --- --- describe.japanese --- --- describe.java --- make[5]: "/home/indexbuild/tindex/ports/java/linux-oracle-jdk18/Makefile" line 51: Malformed conditional (${LINUX_ARCH} == "i386") make[5]: Fatal errors encountered -- cannot continue===> java/linux-oracle-jdk18 failed *** [describe.java] Error code 1 make[2]: stopped in /home/indexbuild/tindex/ports make[2]: stopped in /home/indexbuild/tindex/ports *** Error code 1 Stop. make[1]: stopped in /home/indexbuild/tindex/ports *** Error code 1 Stop. make: stopped in /home/indexbuild/tindex/ports 1 error Committers on the hook: olgeni pkubaj tijl zeising Most recent SVN update was: Updating '.': U graphics/drm-fbsd12.0-kmod/Makefile U graphics/drm-fbsd12.0-kmod/distinfo U graphics/drm-current-kmod/Makefile U graphics/drm-current-kmod/distinfo U graphics/linux-c7-dri/Makefile U Mk/Uses/linux.mk U Mk/bsd.default-versions.mk U UPDATING U benchmarks/linux-vdbench/Makefile U benchmarks/linux-vdbench/pkg-plist U devel/fb-adb/Makefile U devel/linux-c6-devtools/Makefile U devel/linux-c7-devtools/Makefile U emulators/linux-c7/Makefile U emulators/linux_base-c6/Makefile U emulators/linux_base-c7/Makefile U games/linux-worldofgoo-demo/Makefile U java/linux-oracle-jre18/Makefile U print/epson-inkjet-printer-201401w/Makefile U print/epson-inkjet-printer-201601w/Makefile U x11/nvidia-driver/Makefile U lang/erlang/pkg-descr UU lang/erlang-java/pkg-descr U lang/erlang-runtime15/pkg-descr U lang/erlang-runtime16/pkg-descr U lang/erlang-runtime17/pkg-descr U lang/erlang-runtime18/pkg-descr U lang/erlang-runtime19/pkg-descr U lang/erlang-runtime20/pkg-descr U lang/erlang-runtime22/pkg-descr UU lang/erlang-wx/pkg-descr U math/py-CyLP/Makefile U databases/py-oursql/Makefile Updated to revision 506354. From owner-freebsd-ports@freebsd.org Wed Jul 10 17:48:39 2019 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 23C4415DE4A0 for ; Wed, 10 Jul 2019 17:48:39 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF38997DA5 for ; Wed, 10 Jul 2019 17:48:38 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hlGhm-000A7H-R1; Wed, 10 Jul 2019 19:48:34 +0200 Date: Wed, 10 Jul 2019 19:48:34 +0200 From: Kurt Jaeger To: Naram Qashat Cc: freebsd-ports@freebsd.org Subject: Re: Looking for committer for Scintilla/SciTE update Message-ID: <20190710174834.GD34918@home.opsec.eu> References: <03cfb0cdae9c771ed1ca1221948ab90a@cyberbotx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <03cfb0cdae9c771ed1ca1221948ab90a@cyberbotx.com> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 17:48:39 -0000 Hi! > Could I get a ports committer to look over > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238505 (update of > x11-toolkits/scintilla and editors/scite) please? It has been about a > month since I submitted it originally and I've had to update it a few > times since then. Committed, thanks! -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Wed Jul 10 18:05:59 2019 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 499DF15DEC4C for ; Wed, 10 Jul 2019 18:05:59 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BDF4B69DCA for ; Wed, 10 Jul 2019 18:05:58 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 176F515DEC4B; Wed, 10 Jul 2019 18:05:57 +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 D0D6815DEC49 for ; Wed, 10 Jul 2019 18:05:56 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6916E69D84 for ; Wed, 10 Jul 2019 18:05:56 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 149D47799 for ; Wed, 10 Jul 2019 18:05:55 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org ([127.0.1.2]) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id x6AI5sjr056825 for ; Wed, 10 Jul 2019 18:05:54 GMT (envelope-from indexbuild@portsindexbuild.ysv.freebsd.org) Received: (from indexbuild@localhost) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6AI5sKq056824 for ports@FreeBSD.org; Wed, 10 Jul 2019 18:05:54 GMT (envelope-from indexbuild) Date: Wed, 10 Jul 2019 18:05:54 GMT From: Ports Index build Message-Id: <201907101805.x6AI5sKq056824@portsindexbuild.ysv.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 11.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 18:05:59 -0000 INDEX build failed with errors: Generating INDEX-11 - please wait..--- describe.accessibility --- --- describe.arabic --- --- describe.archivers --- --- describe.astro --- --- describe.audio --- --- describe.benchmarks --- --- describe.biology --- --- describe.cad --- --- describe.chinese --- --- describe.comms --- --- describe.converters --- --- describe.databases --- --- describe.deskutils --- --- describe.devel --- --- describe.dns --- --- describe.editors --- --- describe.emulators --- --- describe.finance --- --- describe.french --- --- describe.ftp --- [...] --- describe.hebrew --- --- describe.hungarian --- --- describe.irc --- --- describe.japanese --- --- describe.java --- make[5]: "/home/indexbuild/tindex/ports/java/linux-oracle-jdk18/Makefile" line 51: Malformed conditional (${LINUX_ARCH} == "i386") make[5]: Fatal errors encountered -- cannot continue===> java/linux-oracle-jdk18 failed *** [describe.java] Error code 1 make[2]: stopped in /home/indexbuild/tindex/ports make[2]: stopped in /home/indexbuild/tindex/ports *** Error code 1 Stop. make[1]: stopped in /home/indexbuild/tindex/ports *** Error code 1 Stop. make: stopped in /home/indexbuild/tindex/ports 1 error Committers on the hook: bdrewery kwm olgeni pi pkubaj sunpoet swills tcberner tijl zeising Most recent SVN update was: Updating '.': U editors/scite/Makefile U editors/scite/distinfo D editors/scite/files/patch-src_EditorConfig.cxx U editors/scite/files/patch-gtk_makefile U x11-toolkits/scintilla/Makefile U x11-toolkits/scintilla/distinfo U x11-toolkits/scintilla/files/patch-makefile U ports-mgmt/modules2tuple/Makefile U ports-mgmt/modules2tuple/distinfo U devel/py-pyinstaller/Makefile U devel/py-pyinstaller/distinfo U devel/py-pyinstaller/pkg-descr U devel/py-jupyter_client/Makefile U devel/py-jupyter_client/distinfo U devel/mercurial/Makefile U devel/mercurial/distinfo U devel/p5-Data-ObjectDriver/Makefile U devel/p5-Data-ObjectDriver/distinfo U devel/py-pip-api/Makefile U devel/py-pip-api/distinfo U devel/libdap/Makefile U devel/libdap/distinfo U devel/libdap/pkg-plist U textproc/p5-Text-Template/Makefile U textproc/p5-Text-Template/distinfo U textproc/p5-PPI/Makefile U textproc/p5-PPI/distinfo U textproc/rubygem-rouge/Makefile U textproc/rubygem-rouge/distinfo U science/py-eccodes-python/Makefile U science/py-eccodes-python/distinfo U graphics/gimp/Makefile U graphics/gimp-app/Makefile U graphics/gimp-app/distinfo U graphics/gimp-app/pkg-plist U graphics/gegl/Makefile U graphics/gegl/distinfo A graphics/gegl/files/patch-08084a6 A graphics/gegl/files/patch-a6bcf48 U x11/babl/Makefile U x11/babl/distinfo U x11/babl/pkg-plist U x11/nvidia-driver/Makefile U misc/tellico/Makefile U misc/tellico/distinfo U www/webkit2-gtk3/Makefile U www/webkit2-gtk3/distinfo U www/webkit2-gtk3/pkg-plist U Mk/Scripts/generate-symbols.sh U sysutils/Makefile A sysutils/mstflint A sysutils/mstflint/Makefile A sysutils/mstflint/distinfo A sysutils/mstflint/pkg-descr A sysutils/mstflint/pkg-plist Updated to revision 506375. From owner-freebsd-ports@freebsd.org Wed Jul 10 18:23:20 2019 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 1FE8115DF8EF for ; Wed, 10 Jul 2019 18:23:20 +0000 (UTC) (envelope-from yuri@rawbw.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 945D26B0B4 for ; Wed, 10 Jul 2019 18:23:19 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: by mailman.ysv.freebsd.org (Postfix) id 5239C15DF8EE; Wed, 10 Jul 2019 18:23: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 3F2CD15DF8ED for ; Wed, 10 Jul 2019 18:23:19 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id B52CF6B0B3; Wed, 10 Jul 2019 18:23:18 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id x6AINGdJ093919 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Wed, 10 Jul 2019 11:23:16 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-67-180-169-236.hsd1.ca.comcast.net [67.180.169.236] claimed to be yv.noip.me Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later To: Jan Beich Cc: "ports@freebsd.org" References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> From: Yuri Message-ID: <9080c5f5-9d0c-2086-bd2c-57c409fffe3a@rawbw.com> Date: Wed, 10 Jul 2019 11:23:15 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 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-Rspamd-Queue-Id: B52CF6B0B3 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.96 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 18:23:20 -0000 On 2019-07-10 07:19, Jan Beich wrote: > C++ example: > > #if __cplusplus >= 201703L && __has_include() > #include > #else > #include > namespace std { > namespace filesystem = experimental::filesystem; > } > #endif > > Makefile example: > > .if exists(/usr/lib/libc++fs.a) > LIBS+= -lc++fs > .elif exists(/usr/lib/libc++experimental.a) > # XXX Remove after FreeBSD 12.0 EOL > LIBS+= -lc++experimental > .else > # XXX Remove after FreeBSD 11.2 EOL > USE_GCC= yes > LIBS+= -lstdc++fs > .endif This helps with locating the header/library, but it fails to compile in poudriere on 12.0-RELEASE-p7: x.cpp:213:15: error: no member named 'is_symlink' in 'std::experimental::filesystem::v1::directory_entry'     if (entry.is_symlink())         ~~~~~ ^ It looks like 12.0-RELEASE-p7 is technically broken, because it doesn't include is_symlink(). Yuri From owner-freebsd-ports@freebsd.org Wed Jul 10 19:01:51 2019 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 2851615E0693 for ; Wed, 10 Jul 2019 19:01:51 +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 B79ED6CA32 for ; Wed, 10 Jul 2019 19:01:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7A45A15E0691; Wed, 10 Jul 2019 19:01:50 +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 68C4C15E0690 for ; Wed, 10 Jul 2019 19:01:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10AA96CA2F; Wed, 10 Jul 2019 19:01:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id EFC99B268; Wed, 10 Jul 2019 19:01:49 +0000 (UTC) From: Jan Beich To: Yuri Cc: "ports\@freebsd.org" Subject: Re: 12.0-RELEASE-p7 doesn't contain std::filesystem that has been added to 12.0-STABLE some time later References: <1eac89d9-babe-7069-8c4b-2fbe53234fcd@rawbw.com> <9080c5f5-9d0c-2086-bd2c-57c409fffe3a@rawbw.com> Date: Wed, 10 Jul 2019 21:01:46 +0200 In-Reply-To: <9080c5f5-9d0c-2086-bd2c-57c409fffe3a@rawbw.com> (yuri@rawbw.com's message of "Wed, 10 Jul 2019 11:23:15 -0700") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 10AA96CA2F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.91 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.91)[-0.914,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 19:01:51 -0000 Yuri writes: > On 2019-07-10 07:19, Jan Beich wrote: > >> C++ example: >> >> #if __cplusplus >= 201703L && __has_include() >> #include >> #else >> #include >> namespace std { >> namespace filesystem = experimental::filesystem; >> } >> #endif >> >> Makefile example: >> >> .if exists(/usr/lib/libc++fs.a) >> LIBS+= -lc++fs >> .elif exists(/usr/lib/libc++experimental.a) >> # XXX Remove after FreeBSD 12.0 EOL >> LIBS+= -lc++experimental >> .else >> # XXX Remove after FreeBSD 11.2 EOL >> USE_GCC= yes >> LIBS+= -lstdc++fs >> .endif > > > This helps with locating the header/library, but it fails to compile > in poudriere on 12.0-RELEASE-p7: > > x.cpp:213:15: error: no member named 'is_symlink' in > 'std::experimental::filesystem::v1::directory_entry' > if (entry.is_symlink()) > ~~~~~ ^ Convert "entry.is_symlink()" to "std::filesystem::is_symlink(entry)" > It looks like 12.0-RELEASE-p7 is technically broken, because it > doesn't include is_symlink(). is_symlink() exists but not as a member function of directory_entry under std::experimental namespace. Same is true even for newer versions of libc++ or libstdc++. From owner-freebsd-ports@freebsd.org Wed Jul 10 19:26:19 2019 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 CC51F15E1642 for ; Wed, 10 Jul 2019 19:26:18 +0000 (UTC) (envelope-from jonc@chen.org.nz) 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 F0F326DD9E for ; Wed, 10 Jul 2019 19:26:17 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by mailman.ysv.freebsd.org (Postfix) id B15BF15E163F; Wed, 10 Jul 2019 19:26: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 8DD1915E163E for ; Wed, 10 Jul 2019 19:26:17 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from mail-ua1-x92d.google.com (mail-ua1-x92d.google.com [IPv6:2607:f8b0:4864:20::92d]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 132646DD99 for ; Wed, 10 Jul 2019 19:26:16 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by mail-ua1-x92d.google.com with SMTP id o2so1333762uae.10 for ; Wed, 10 Jul 2019 12:26:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chen-org-nz.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=ZBRT2CyDLL2MlOCih568QUE6P+zhHJ+LxseIBNaqRr4=; b=qg3ElB1NKj8ArRHoq+t0qE6cuckz6/Oov/jAlVDZsM4PFKlKi4RrVSYYFylXPymUyA XlJYpvhkA7hbqJUIGgQvfGvJOkSqWbmkZKZeAVmRtVrolej+fnSCRpHaXGRf6ZDyxGu4 APEUFOTIVA4eCeMSPklIfza2TQz+4BJsB+56lKLqVrNTtv3Ak3fq2bf7sMLmmsbbOT25 Dtx8BJ39EdEMAYs8aZktd5eDKotzEEAZzYTMiH39bR3RJRdf09T3pmSEQDEtMNYeXOdY XVnikgMt11P5UelMGkjGdV2w+VUq/KdLEYsIh7ftZt2lPMcmC0IQj7epjl5CkZyxjn55 oKEQ== 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=ZBRT2CyDLL2MlOCih568QUE6P+zhHJ+LxseIBNaqRr4=; b=HbA2uP2KQJyu5lXoxmORqbBt5EJNWrS+dgnRVL4wc44kpJX3nC+cCjd0y7NP8oz6Ve NJYTDMiwADh2myy4PizaY+xhAEU+FtVgn9zqs6f1e/dimQJ8KIBgfC0PcMuKmyYbFGHL 5c0KSv6hxNPHqQkzUPPM6S6cT24j3TUp4YnB8APrLaSIafd5BZw0Skh7U6VJRmhPLfcE STcM5rHFX16eL8LvQ/CCtAosRrJzzapiflmLotgX86jhC0SKwxjGqQsh9Ngzm79xmVwi 8sfKSJt7TiiLjoK88fhZLZM7GDb9grm9hNtcdy7CxqaHKpOGDWpGfHqjF0B/Nfjw20ln tAKg== X-Gm-Message-State: APjAAAVcH2FzD1VrtfVVFc2odKI/tg1RY/EbU0INUaENga0NLmqiSIDe +RCLRhenr6GUwMbgznt2beo7VtPAsUo/9UzzaPVxiA== X-Google-Smtp-Source: APXvYqwli15d+BsL+pWpaBA4OlIgupgZg1wrzw+cHEabc/fpj3ueJkLXwUwjnDrjOZqbOKVxrptGjJ/qV0xjLsQ1Iwc= X-Received: by 2002:ab0:20d8:: with SMTP id z24mr9929186ual.1.1562786775241; Wed, 10 Jul 2019 12:26:15 -0700 (PDT) MIME-Version: 1.0 References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> <1ryy-rtgr-wny@FreeBSD.org> In-Reply-To: <1ryy-rtgr-wny@FreeBSD.org> From: Jonathan Chen Date: Thu, 11 Jul 2019 07:25:59 +1200 Message-ID: Subject: Re: ffmpeg port To: Jan Beich Cc: Jason de Cordoba , ports@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 132646DD99 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.96 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 19:26:19 -0000 On Thu, 11 Jul 2019 at 00:01, Jan Beich wrote: > > (CC'ing appropriate public list. If you want me to care don't send private mails.) > > Jason de Cordoba writes: > > > OMG > > > > Please stick with something stable and don't update this port 5-6 times > > a month. > > > > Thanks for your contributions to FreeBSD > > > > Have a great day, > > > > Jason > > I mainly bump PORTREVISION when ABI changes. Bumping for non-default > options is a policy described in Porter's Handbook. > > https://www.freebsd.org/doc/en/books/porters-handbook/makefile-naming.html#makefile-portrevision You should be praised for doing the _right_ thing, instead of being criticized. It's up to each port-user as to whether they want to update their pkgs or not. The only expectation most users have is that it should _work_, build times are irrelevant. My 2 cents. -- Jonathan Chen From owner-freebsd-ports@freebsd.org Wed Jul 10 21:09:35 2019 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 760F615E39A9 for ; Wed, 10 Jul 2019 21:09:35 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0AE737237E for ; Wed, 10 Jul 2019 21:09:35 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id B971F15E39A8; Wed, 10 Jul 2019 21:09:34 +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 A678815E39A7 for ; Wed, 10 Jul 2019 21:09:34 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 435567237D for ; Wed, 10 Jul 2019 21:09:34 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org (portsindexbuild.ysv.freebsd.org [IPv6:2001:1900:2254:206a::16:6601]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 672D39119 for ; Wed, 10 Jul 2019 21:09:33 +0000 (UTC) (envelope-from indexbuild@FreeBSD.org) Received: from portsindexbuild.ysv.freebsd.org ([127.0.1.2]) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id x6AL9XXl079576 for ; Wed, 10 Jul 2019 21:09:33 GMT (envelope-from indexbuild@portsindexbuild.ysv.freebsd.org) Received: (from indexbuild@localhost) by portsindexbuild.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6AL9XN0079574 for ports@FreeBSD.org; Wed, 10 Jul 2019 21:09:33 GMT (envelope-from indexbuild) Date: Wed, 10 Jul 2019 21:09:33 GMT From: Ports Index build Message-Id: <201907102109.x6AL9XN0079574@portsindexbuild.ysv.freebsd.org> To: ports@FreeBSD.org Subject: INDEX now builds successfully on 11.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2019 21:09:35 -0000 From owner-freebsd-ports@freebsd.org Thu Jul 11 07:54:24 2019 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 1FBEF15CA2C0 for ; Thu, 11 Jul 2019 07:54:24 +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 AD1146B07E for ; Thu, 11 Jul 2019 07:54:23 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6B33415CA2BA; Thu, 11 Jul 2019 07:54:23 +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 586BA15CA2B8 for ; Thu, 11 Jul 2019 07:54:23 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E9B076B078 for ; Thu, 11 Jul 2019 07:54:22 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id EA2EFEED3 for ; Thu, 11 Jul 2019 07:54:21 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org ([127.0.1.123]) by portscout.ysv.freebsd.org (8.15.2/8.15.2) with ESMTP id x6B7sLlm015577 for ; Thu, 11 Jul 2019 07:54:21 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6B7sLA8015576; Thu, 11 Jul 2019 07:54:21 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201907110754.x6B7sLA8015576@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, 11 Jul 2019 07:54:21 +0000 From: portscout@FreeBSD.org To: ports@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 07:54:24 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ lang/adacontrol | 1.18r9 | 1.21r3 ------------------------------------------------+-----------------+------------ 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 Jul 11 08:19:42 2019 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 91B4915CB2A4 for ; Thu, 11 Jul 2019 08:19:42 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-cmomta01.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.227]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 864C66C446 for ; Thu, 11 Jul 2019 08:19:40 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from localhost ([96.28.161.151]) by cmsmtp with ESMTP id lUASh5RQrP088lUAVh3C9E; Thu, 11 Jul 2019 08:11:07 +0000 Date: Thu, 11 Jul 2019 08:10:08 +0000 From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: coreutils missing one component: (g)stat X-CMAE-Envelope: MS4wfL/BK1IDR0qtovgiTqakPkagvFhfNia1u7wPcPG7gRyb32gdcrIzOy+5+uzR7VxJ3UAzFCbNvl+H8i5owDEEUdW4jj9J54hTvTR2PYRPgRx45cjI7d8W OcoAOlHKYIY1Ju/A2qodNb6IpyCWn3XiGMwtLQACJ2hq2IOCzxOK4B0P X-Rspamd-Queue-Id: 864C66C446 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of mueller6722@twc.com designates 107.14.73.227 as permitted sender) smtp.mailfrom=mueller6722@twc.com X-Spamd-Result: default: False [-1.72 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.98)[-0.981,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:107.14.73.0/24]; FREEMAIL_FROM(0.00)[twc.com]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.94)[-0.938,0]; MISSING_MID(2.50)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MX_GOOD(-0.01)[dnvrco-cmedge02.email.rr.com,dnvrco-cmedge01.email.rr.com]; NEURAL_HAM_SHORT(-0.91)[-0.909,0]; RCVD_IN_DNSWL_NONE(0.00)[227.73.14.107.list.dnswl.org : 127.0.5.0]; RCVD_TLS_LAST(0.00)[]; DMARC_NA(0.00)[twc.com]; FROM_EQ_ENVFROM(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[151.161.28.96.zen.spamhaus.org : 127.0.0.10]; R_DKIM_NA(0.00)[]; FREEMAIL_ENVFROM(0.00)[twc.com]; ASN(0.00)[asn:7843, ipnet:107.14.73.0/24, country:US]; IP_SCORE(-1.08)[ipnet: 107.14.73.0/24(-2.98), asn: 7843(-2.38), country: US(-0.06)]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 08:19:42 -0000 I noticed, trying to configure ptxdist under FreeBSD (ptxdist.org), that stat (gstat) was missing in sysutils/coreutils. Configure script execution ended with checking for GNU rm... /usr/local/bin/grm checking for GNU rmdir... /usr/local/bin/grmdir checking for GNU sort... /usr/local/bin/gsort checking for GNU stat... configure: error: could not find GNU stat While I don't expect any FreeBSD list to support ptxdist (or buildroot, openwrt, crosstool-ng), I looked and noticed that gstat was included in sysutils/coreutils in (NetBSD) pkgsrc and sys-apps/coreutils in Haikuports. Haikuports is modeled after Gentoo portage but is much smaller, is the package/ports system used with Haiku. I don't know if ptxdist would have configured and installed with coreutils/gstat, very likely not, and I don't expect support here. My purpose here is to point out something missing in a FreeBSD port. Tom From owner-freebsd-ports@freebsd.org Thu Jul 11 13:18:37 2019 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 E3D2615D245A for ; Thu, 11 Jul 2019 13:18:36 +0000 (UTC) (envelope-from markand@malikania.fr) Received: from smtp.smtpout.orange.fr (smtp01.smtpout.orange.fr [80.12.242.123]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client CN "Bizanga Labs SMTP Client Certificate", Issuer "Bizanga Labs CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B1B3768D8 for ; Thu, 11 Jul 2019 13:18:34 +0000 (UTC) (envelope-from markand@malikania.fr) Received: from postfix.malikania.fr ([5.135.187.121]) by mwinf5d36 with ME id bRJS2000R2dbEiD03RJT6N; Thu, 11 Jul 2019 15:18:27 +0200 X-ME-Helo: postfix.malikania.fr X-ME-Auth: ZGVtZWxpZXIuZGF2aWRAb3JhbmdlLmZy X-ME-Date: Thu, 11 Jul 2019 15:18:27 +0200 X-ME-IP: 5.135.187.121 Received: from [167.3.108.158] (unknown [77.159.242.250]) by postfix.malikania.fr (Postfix) with ESMTPSA id D195D12FB4 for ; Thu, 11 Jul 2019 15:18:26 +0200 (CEST) Subject: Re: ffmpeg port To: freebsd-ports@freebsd.org References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> <1ryy-rtgr-wny@FreeBSD.org> From: David Demelier Message-ID: <95f2326f-8431-804d-1439-40dbc28f71a0@malikania.fr> Date: Thu, 11 Jul 2019 15:18:26 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: <1ryy-rtgr-wny@FreeBSD.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: fr Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8B1B3768D8 X-Spamd-Bar: ++++ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [4.00 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.74)[0.737,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; TO_DN_NONE(0.00)[]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_THREE(0.00)[3]; RCVD_TLS_LAST(0.00)[]; MX_GOOD(-0.01)[malikania.fr]; NEURAL_SPAM_LONG(0.99)[0.991,0]; RCVD_IN_DNSWL_NONE(0.00)[123.242.12.80.list.dnswl.org : 127.0.5.0]; NEURAL_SPAM_MEDIUM(0.91)[0.911,0]; R_SPF_NA(0.00)[]; DMARC_NA(0.00)[malikania.fr]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:3215, ipnet:80.12.240.0/20, country:FR]; MID_RHS_MATCH_FROM(0.00)[]; IP_SCORE(0.47)[ip: (-0.16), ipnet: 80.12.240.0/20(1.34), asn: 3215(1.20), country: FR(-0.01)] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 13:18:37 -0000 Le 10/07/2019 à 13:59, Jan Beich a écrit : > Why not use binary packages? Or why not build a quarterly branch? > Or does anyone have better ideas? Unfortunately quarterly branches do not solve anything. They are just to short to have any benefit. Let say you build a package in January and then you don't touch your system for a while. In September, you realize you need another port but your local ports also have vulnerabilities. Now you have to update by changing the quarterly branch since others are no longer maintained. Then, you may have some local ports that will be upgraded to a major version which can be undesired for a production server. This happened to me a while ago when I had to run an old version of nodejs for an old version of etherpad, after an upgrade the new nodejs version was no longer compatible and I needed to install node6 port quickly (hopefully it was available !). This can be very frustrating since FreeBSD is a rock solid server OS that comes with strong compatibility conventions in releases versions but provides a ports tree in a rolling release fashion that do not match the base version (unlike OpenBSD does). Then you have to carefully check each time you need to update your ports that you won't break your system (like many do with Arch, Gentoo, etc). IMHO, FreeBSD definitely requires a per-RELEASE branches of ports that contain only bugfixes/security fixes. -- David From owner-freebsd-ports@freebsd.org Thu Jul 11 13:47:31 2019 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 EBC2715D3D0F for ; Thu, 11 Jul 2019 13:47:30 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60CAF77E9A for ; Thu, 11 Jul 2019 13:47:30 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hlZPv-000BhR-Ia; Thu, 11 Jul 2019 15:47:23 +0200 Date: Thu, 11 Jul 2019 15:47:23 +0200 From: Kurt Jaeger To: Thomas Mueller Cc: freebsd-ports@freebsd.org Subject: Re: coreutils missing one component: (g)stat Message-ID: <20190711134723.GE34918@home.opsec.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 13:47:31 -0000 Hi! > I noticed, trying to configure ptxdist under FreeBSD (ptxdist.org), that stat (gstat) was missing in sysutils/coreutils. > > Configure script execution ended with > > checking for GNU rm... /usr/local/bin/grm > checking for GNU rmdir... /usr/local/bin/grmdir > checking for GNU sort... /usr/local/bin/gsort > checking for GNU stat... configure: error: could not find GNU stat Because FreeBSD has its own gstat command (doing something different), the port has gnustat for GNU stat. So the configure script needs to check for gnustat, maybe this solves your problem? -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Thu Jul 11 21:25:49 2019 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 C925115DE305 for ; Thu, 11 Jul 2019 21:25:49 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-cmomta02.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.232]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A6B4E6BAC9 for ; Thu, 11 Jul 2019 21:25:48 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from localhost ([96.28.161.151]) by cmsmtp with ESMTP id lgZOhMSAwiYm2lgZQhzXHB; Thu, 11 Jul 2019 21:25:41 +0000 Date: Thu, 11 Jul 2019 21:24:52 +0000 From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: Re: coreutils missing one component: (g)stat References: <20190711134723.GE34918@home.opsec.eu> X-CMAE-Envelope: MS4wfF3EV+mlUnV3cOSQLE3YGsiitsGM/pY0nIZNiqCnAdddstb/pK2DAQS0K47RxYsUHMLaKTLD2zSYCXR9vuEMih9aT/fZnh8iWMwHV0zxpEnTZ60nmGi6 XTW1Z23VF0bbj/3o8M+PVk3eBF2tgxI3TVVqdm7DC4g+BetzvLJP+eNQ X-Rspamd-Queue-Id: A6B4E6BAC9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of mueller6722@twc.com designates 107.14.73.232 as permitted sender) smtp.mailfrom=mueller6722@twc.com X-Spamd-Result: default: False [-2.01 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; RCVD_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:107.14.73.0/24]; FREEMAIL_FROM(0.00)[twc.com]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[twc.com]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.99)[-0.989,0]; MISSING_MID(2.50)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MX_GOOD(-0.01)[cached: dnvrco-cmedge02.email.rr.com]; NEURAL_HAM_SHORT(-0.51)[-0.506,0]; RCVD_IN_DNSWL_NONE(0.00)[232.73.14.107.list.dnswl.org : 127.0.5.0]; RCVD_TLS_LAST(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[151.161.28.96.zen.spamhaus.org : 127.0.0.10]; R_DKIM_NA(0.00)[]; FREEMAIL_ENVFROM(0.00)[twc.com]; ASN(0.00)[asn:7843, ipnet:107.14.73.0/24, country:US]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-1.71)[ip: (-3.18), ipnet: 107.14.73.0/24(-2.96), asn: 7843(-2.37), country: US(-0.06)]; FROM_EQ_ENVFROM(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 21:25:50 -0000 from Kurt Jaeger and my previous post: > > I noticed, trying to configure ptxdist under FreeBSD (ptxdist.org), that stat (gstat) was missing in sysutils/coreutils. > > Configure script execution ended with > > checking for GNU rm... /usr/local/bin/grm > > checking for GNU rmdir... /usr/local/bin/grmdir > > checking for GNU sort... /usr/local/bin/gsort > > checking for GNU stat... configure: error: could not find GNU stat > Because FreeBSD has its own gstat command (doing something different), > the port has gnustat for GNU stat. So the configure script > needs to check for gnustat, maybe this solves your problem? Now I see where GNU stat is, and it's not FreeBSD's fault that ptxdist configure script can't find things. I made a symbolic link in nonroot ~/fb64/bin: ln -s /usr/local/bin/gnustat gstat That worked so far, but then ptxdist configure script failed on not finding GNU tar (in archivers as gtar, not sysutils/coreutils). I didn't know I needed that! Anyway, thanks for pointing out where GNU stat is. Tom From owner-freebsd-ports@freebsd.org Thu Jul 11 22:08:32 2019 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 4007015DF426 for ; Thu, 11 Jul 2019 22:08:32 +0000 (UTC) (envelope-from adr@SDF.ORG) Received: from mx.sdf.org (ol.sdf.org [205.166.94.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx.sdf.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B2D956D6BA for ; Thu, 11 Jul 2019 22:08:30 +0000 (UTC) (envelope-from adr@SDF.ORG) Received: from sdf.lonestar.org (IDENT:adr@sdf.lonestar.org [205.166.94.16]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id x6BM8SZi029291 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits) verified NO) for ; Thu, 11 Jul 2019 22:08:28 GMT Date: Thu, 11 Jul 2019 22:08:28 +0000 (UTC) From: adr X-X-Sender: adr@sdf.lonestar.org To: freebsd-ports@freebsd.org Subject: raspberrypi-userland conflicts with mesa-libs Message-ID: User-Agent: Alpine 2.21 (NEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-Rspamd-Queue-Id: B2D956D6BA X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-0.84 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.98)[-0.979,0]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; IP_SCORE(-0.44)[ip: (-1.39), ipnet: 205.166.94.0/24(-0.70), asn: 14361(-0.04), country: US(-0.06)]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; TO_DN_NONE(0.00)[]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.97)[-0.969,0]; DMARC_NA(0.00)[SDF.ORG]; NEURAL_SPAM_SHORT(0.65)[0.655,0]; MX_GOOD(-0.01)[cached: mx.SDF.ORG]; RCVD_IN_DNSWL_NONE(0.00)[20.94.166.205.list.dnswl.org : 127.0.10.0]; R_SPF_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:14361, ipnet:205.166.94.0/24, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 22:08:32 -0000 First of all, hello to everyone. I'm new to FreeBSD (not to BSD), so pardon me if I look disoriented. Making the userland conflict with mesa-libs is like shooting in your own foot in this platform. Omxplayer is a good media player, I modified those ports to be able to be installed in an X environment, and it works really good. The only bug I've seen is the osd been out of place. Also you are not installing dbuscontrol.sh. This is a good example of how to control omxplayer with dbus. I use it directly with key bindings, in my case with twm (I just changed the name to omxctrl): "h" = m4|s : all : ! "omxctrl hidevideo &" "u" = m4|s : all : ! "omxctrl unhidevideo &" "s" = m4|s : all : ! "omxctrl togglesubtitles &" "1" = m4|s : all : ! "omxctrl setvideopos 0 0 600 400; omxctrl setaspectmode letterbox &" "f" = m4|s : all : ! "omxctrl setvideopos 0 0 1920 1080; omxctrl setaspectmode letterbox &" "equal" = m4|s : all : ! "omxctrl volumeup &" "minus" = m4|s : all : ! "omxctrl volumedown &" "q" = m4|s : all : ! "omxctrl stop &" "Space" = m4|s : all : ! "omxctrl pause &" "p" = m4 : all : ! "sh -c 'omxplayer $(youtube-dl --no-playlist -g -f mp4 $(xsel -p))' &" ... you have an idea. Indeed there are a lot of software that support the rpi hardware. Vlc has even a new "split" rpi driver that integrates the player perfectly with the X environment keeping the hardware acceleration. I don't really like this player, but it is the best integrated with X, and is very popular. I'll try to compile it with rpi support on FreeBSD. Also, I've seen qt5-webengine as a binary package. If I remember right, it uses gstreamer, and gstreamer also has an omx plugin. I'll try to code a simple browser. ffmpeg, xine, ... as I said, you are shooting your own foot. Just peek a new prefix, update these ports to use it and add the path to libconfig or just print a message advising the use of LD_LIBRARY_PATH. Just an advise. Regards, adr. From owner-freebsd-ports@freebsd.org Thu Jul 11 22:30:34 2019 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 1B0A115DF9E1 for ; Thu, 11 Jul 2019 22:30:34 +0000 (UTC) (envelope-from pete@nomadlogic.org) Received: from mail.nomadlogic.org (mail.nomadlogic.org [174.136.98.114]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.nomadlogic.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 109426E16E for ; Thu, 11 Jul 2019 22:30:32 +0000 (UTC) (envelope-from pete@nomadlogic.org) Received: from duke.gem.co (172.56.16.41 [172.56.16.41]) by mail.nomadlogic.org (OpenSMTPD) with ESMTPSA id 2afd580d TLS version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO; Thu, 11 Jul 2019 22:23:50 +0000 (UTC) Subject: Re: raspberrypi-userland conflicts with mesa-libs To: adr , freebsd-ports@freebsd.org References: From: Pete Wright Message-ID: Date: Thu, 11 Jul 2019 15:23:54 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 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-Rspamd-Queue-Id: 109426E16E X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of pete@nomadlogic.org designates 174.136.98.114 as permitted sender) smtp.mailfrom=pete@nomadlogic.org X-Spamd-Result: default: False [-5.83 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[41.16.56.172.zen.spamhaus.org : 127.0.0.10]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+mx]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[nomadlogic.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MX_GOOD(-0.01)[mail.nomadlogic.org]; RCPT_COUNT_TWO(0.00)[2]; NEURAL_HAM_SHORT(-0.66)[-0.663,0]; IP_SCORE(-2.85)[ip: (-9.37), ipnet: 174.136.96.0/20(-4.59), asn: 25795(-0.25), country: US(-0.06)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:25795, ipnet:174.136.96.0/20, country:US]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 22:30:34 -0000 On 7/11/19 3:08 PM, adr wrote: > First of all, hello to everyone. > > I'm new to FreeBSD (not to BSD), so pardon me if I look > disoriented. > > Making the userland conflict with mesa-libs is like shooting > in your own foot in this platform. > I'm a little confused.  what specific conflict are you seeing with mesa-libs? -pete -- Pete Wright pete@nomadlogic.org @nomadlogicLA From owner-freebsd-ports@freebsd.org Thu Jul 11 22:36:04 2019 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 8A02D15DFBF4 for ; Thu, 11 Jul 2019 22:36:04 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 317246E594; Thu, 11 Jul 2019 22:36:04 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 22B49DC03; Thu, 11 Jul 2019 22:36:04 +0000 (UTC) From: Jan Beich To: adr Cc: freebsd-ports@freebsd.org Subject: Re: raspberrypi-userland conflicts with mesa-libs References: Date: Fri, 12 Jul 2019 00:36:00 +0200 In-Reply-To: (adr@sdf.org's message of "Thu, 11 Jul 2019 22:08:28 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 317246E594 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.90 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.90)[-0.899,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 22:36:04 -0000 adr writes: > First of all, hello to everyone. > > I'm new to FreeBSD (not to BSD), so pardon me if I look > disoriented. > > Making the userland conflict with mesa-libs is like shooting > in your own foot in this platform. Tracked in bug 225053. After r495793 at least multimedia/omxplayer builds fine[1] on the package cluster. [1] http://beefy8.nyi.freebsd.org/data/head-armv6-default/p505658_s349589/logs/omxplayer-20161004_12.log http://www.ipv6proxy.net/go.php?u=http://beefy16.nyi.freebsd.org/data/head-armv7-default/p506094_s349794/logs/omxplayer-20161004_12.log > Also, I've seen qt5-webengine as a binary package. If I remember > right, it uses gstreamer, and gstreamer also has an omx plugin. > I'll try to code a simple browser. qt5-webengine is broken on armv6 but not armv7. Tracked in bug 238701. Patches welcome in either case. I (a volunteer) don't have any arm* hardware to have an interest in improving the statu quo. From owner-freebsd-ports@freebsd.org Thu Jul 11 22:46:36 2019 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 E5C9F15DFE45 for ; Thu, 11 Jul 2019 22:46:35 +0000 (UTC) (envelope-from adr@SDF.ORG) Received: from mx.sdf.org (ol.sdf.org [205.166.94.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx.sdf.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7DCA76ED19; Thu, 11 Jul 2019 22:46:34 +0000 (UTC) (envelope-from adr@SDF.ORG) Received: from sdf.lonestar.org (IDENT:adr@sdf.lonestar.org [205.166.94.16]) by mx.sdf.org (8.15.2/8.14.5) with ESMTPS id x6BMkWFj023051 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits) verified NO); Thu, 11 Jul 2019 22:46:32 GMT Date: Thu, 11 Jul 2019 22:46:32 +0000 (UTC) From: adr X-X-Sender: adr@sdf.lonestar.org To: Jan Beich cc: freebsd-ports@freebsd.org Subject: Re: raspberrypi-userland conflicts with mesa-libs In-Reply-To: Message-ID: References: User-Agent: Alpine 2.21 (NEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed X-Rspamd-Queue-Id: 7DCA76ED19 X-Spamd-Bar: / Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-0.49 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.89)[-0.892,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-0.93)[-0.933,0]; MIME_GOOD(-0.10)[text/plain]; DMARC_NA(0.00)[SDF.ORG]; AUTH_NA(1.00)[]; NEURAL_SPAM_SHORT(0.88)[0.877,0]; IP_SCORE(-0.43)[ip: (-1.38), ipnet: 205.166.94.0/24(-0.69), asn: 14361(-0.04), country: US(-0.06)]; MX_GOOD(-0.01)[cached: mx.SDF.ORG]; RCPT_COUNT_TWO(0.00)[2]; RCVD_IN_DNSWL_NONE(0.00)[20.94.166.205.list.dnswl.org : 127.0.10.0]; R_SPF_NA(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:14361, ipnet:205.166.94.0/24, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 22:46:36 -0000 > Tracked in bug 225053. After r495793 at least multimedia/omxplayer > builds fine[1] on the package cluster. It is not about building omxplayer. It is about raspberrypi-userland been installed in LOCALBASE, conflicting with libEGL from mesa, so you can not install any port using raspberrypi-userland along with mesa-libs. I'm been using FreeBSD just for a few days. I don't think I'm the appropiate person to choose a new prefix for a port. From owner-freebsd-ports@freebsd.org Thu Jul 11 23:06:30 2019 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 6F6F615E0810 for ; Thu, 11 Jul 2019 23:06:30 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mail-wr1-x42f.google.com (mail-wr1-x42f.google.com [IPv6:2a00:1450:4864:20::42f]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 080266FD4F for ; Thu, 11 Jul 2019 23:06:28 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mail-wr1-x42f.google.com with SMTP id n4so7991884wrs.3 for ; Thu, 11 Jul 2019 16:06:28 -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=4XfzJStz1LIQUkpnP10gf4KhEeCaAC18sepHr1R+Y1s=; b=wlrLQYUqy5X4O9Ft5jA+2uDvneHCUGsjUvsMPtPCJafawHxGxbQlVAeeevkjrR9C3W gOBVu+RYfmEDmFvpx8uq0iYFyFY7UACHuge0e6XxGsQqfyWADYqWOEBh0OTdjojESsB9 oEnsdgrdT3D6YVCs1Ke9KIjZ7yHIlhF99lrCs+84//dE7R85EIMpnCURPBxlS1Fdtevl aSKuWSgA8yBa/DqfQDcgp3EGEF718pOsteTqwDopweKxqxVlJgW3lT52S3Ljfj3YIuhd QdUV2R4eKRvZG25WEntEhDaD2yuUol2Wqutt4bL0+2F+yI3Ypb1Xge3Kk6ZYM6MMJZK9 merw== 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=4XfzJStz1LIQUkpnP10gf4KhEeCaAC18sepHr1R+Y1s=; b=qNEcGfuhq8rwD6KaGvQTd6irQ3OFWSqhi4Qozk3+kdTgbzmiXCfKeIn74zwQR1ppjh 2uv6CCsmZRiXsWi88UcYl/fl+JWPCpsetj9XB3JeXWIZSnzEnt/DcBGJpFxUaSTztsM4 WWhhjBXDFf4zCW9rbDz2Jso4JMdu7OYlxgczyUlQ5draAJmu1uOjnNxLPwWEhMK7C6gu 4IH98VzefQbHLPeG7yqNEcCTACw8TomBE3nxUFCKUUn/+lCachh+51VrGCW/QbKB0skL 3+A/UUkd5SV/N8FAOWg/q0KR3HBSdURdWS/pX3T4sFPLK8OcoRzI0s/gulmSPLsxHVl/ 3SzQ== X-Gm-Message-State: APjAAAXLC2I3BPek3XizHXo71QE8OnDJ6ihumcytZKWaR1Qb4Id/BahM 5cAfaMBrEgXmwdsNJe4S5kKHXGTlDZoqUv+iiTr9vsyUqMs= X-Google-Smtp-Source: APXvYqxrXLfozGIZ1s6rQapxYxT5eW6w+UnBERB6dHQZ/KhSoCPrUrMM4J83S9E5CtOl0l8Jg8S5mHgZnWLoFlpR6bY= X-Received: by 2002:adf:dfc4:: with SMTP id q4mr7079813wrn.54.1562886387881; Thu, 11 Jul 2019 16:06:27 -0700 (PDT) MIME-Version: 1.0 References: <20190711134723.GE34918@home.opsec.eu> <5d27a969.1c69fb81.7dee6.b944SMTPIN_ADDED_MISSING@mx.google.com> In-Reply-To: <5d27a969.1c69fb81.7dee6.b944SMTPIN_ADDED_MISSING@mx.google.com> From: Adam Weinberger Date: Thu, 11 Jul 2019 17:06:12 -0600 Message-ID: Subject: Re: coreutils missing one component: (g)stat To: Thomas Mueller Cc: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 080266FD4F X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=adamw-org.20150623.gappssmtp.com header.s=20150623 header.b=wlrLQYUq; spf=pass (mx1.freebsd.org: domain of adamw@adamw.org designates 2a00:1450:4864:20::42f as permitted sender) smtp.mailfrom=adamw@adamw.org X-Spamd-Result: default: False [-6.14 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[adamw-org.20150623.gappssmtp.com:s=20150623]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; DMARC_NA(0.00)[adamw.org]; NEURAL_HAM_SHORT(-0.71)[-0.711,0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[adamw-org.20150623.gappssmtp.com:+]; RCPT_COUNT_TWO(0.00)[2]; RCVD_IN_DNSWL_NONE(0.00)[f.2.4.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; MX_GOOD(-0.01)[alt1.aspmx.l.google.com,alt4.aspmx.l.google.com,alt3.aspmx.l.google.com,alt2.aspmx.l.google.com,aspmx.l.google.com]; IP_SCORE(-2.92)[ip: (-9.22), ipnet: 2a00:1450::/32(-2.88), asn: 15169(-2.44), country: US(-0.06)]; FREEMAIL_TO(0.00)[twc.com]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 23:06:30 -0000 On Thu, Jul 11, 2019 at 3:26 PM Thomas Mueller wrote: > > from Kurt Jaeger and my previous post: > > > > I noticed, trying to configure ptxdist under FreeBSD (ptxdist.org), that stat (gstat) was missing in sysutils/coreutils. > > > > Configure script execution ended with > > > > checking for GNU rm... /usr/local/bin/grm > > > checking for GNU rmdir... /usr/local/bin/grmdir > > > checking for GNU sort... /usr/local/bin/gsort > > > checking for GNU stat... configure: error: could not find GNU stat > > > Because FreeBSD has its own gstat command (doing something different), > > the port has gnustat for GNU stat. So the configure script > > needs to check for gnustat, maybe this solves your problem? > > Now I see where GNU stat is, and it's not FreeBSD's fault that ptxdist configure script can't find things. I made a symbolic link in nonroot ~/fb64/bin: > > ln -s /usr/local/bin/gnustat gstat I'm not clear whether you're trying to construct a port, or just getting the software to build. If you're building a port, you can achieve that with: BINARY_ALIAS= gstat=gnustat # Adam -- Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Thu Jul 11 23:17:35 2019 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 D62AB15E0A8F for ; Thu, 11 Jul 2019 23:17:34 +0000 (UTC) (envelope-from adamw@adamw.org) Received: from mail-wm1-x343.google.com (mail-wm1-x343.google.com [IPv6:2a00:1450:4864:20::343]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5263F702C5 for ; Thu, 11 Jul 2019 23:17:33 +0000 (UTC) (envelope-from adamw@adamw.org) Received: by mail-wm1-x343.google.com with SMTP id f17so7182730wme.2 for ; Thu, 11 Jul 2019 16:17:33 -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:content-transfer-encoding; bh=UHTpiKd7DpHWPLzaK/wRzNF+8GN//dObNweYe7wsHAU=; b=gp184NqOZMJQk4QLTAlPF8wMoV+eKns9FIzSrCL+ni32V/PZNNpNYcnhv7cnFO+3BW 0RC0rfCoaSMC2L6ZiCfgEyl0SG9KGyXgU+Tg4AigYzZ54tLaFjk5lY0I7nQJaePJLKHx SdnyqnjXpJHA4ZdNUxlmu6j0mYS6Xr5ui9Srm5qAk78yrP0tlCpU7WJ4JFcsZZSlAe1y l3fG0yMhkepHXmCkkIyJXKPtK7afMOsMxNH8ofjRz5oIFtHFNcXU9jAdJP9N8mYyDdNI gp8KxbbQwRpmCo6l9eS5rhO6Kg7JGa1SB/gDnL2w2z6nu7fiUoOkDRpXYTRx0v1lFW9y LLUQ== 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:content-transfer-encoding; bh=UHTpiKd7DpHWPLzaK/wRzNF+8GN//dObNweYe7wsHAU=; b=oKUF9cw0FuoKmSHrUAHAXljOvJNnQJqwBcmBODH0ioaUvl54fW3fjtTNbsL1yhfjAG uGKqN2I4OU+bt7yXI/thzdpRO9T/s11ifB2Q33OUZwgxyeP5Re582rgpk/+GVCji7rfQ cjtPXjHh4mZ4VDfy2Ot5+55WBenfY9T3MUgoZha2eIBtpP1UVMD0FoHUo9Fhox1+KEPY KgkSnJfIApf8F+sGxfn+XwpOzwJkqtKiBuCRvjDR9Tg+X5kCFnRL41DQFknlAQrzuBW2 Tf/JeU/zNM1FZ5cWsAwcLscS476TtleIi83vgdiPltZdBoNDwAWTqtAJjUn+l/dsA+O+ pNLw== X-Gm-Message-State: APjAAAV8LCx9xZjBUzZP0KU3Mz2PIFM2WPbFhaqutgkPSl1VWq+gLiez g0srQ3X7r/ty7QwDNn8AqMQde72MU7RYmje0wy2kTHe5s7Q= X-Google-Smtp-Source: APXvYqz0+2UtjWEN32oLnO5kp0qHbxPUJR+qpLpi0PjHPCigVyBVzLeczKR70LAfn9v4AX/swvYEZyW/ivgKNhqTSr0= X-Received: by 2002:a1c:6555:: with SMTP id z82mr6180931wmb.129.1562887052230; Thu, 11 Jul 2019 16:17:32 -0700 (PDT) MIME-Version: 1.0 References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> <1ryy-rtgr-wny@FreeBSD.org> <95f2326f-8431-804d-1439-40dbc28f71a0@malikania.fr> In-Reply-To: <95f2326f-8431-804d-1439-40dbc28f71a0@malikania.fr> From: Adam Weinberger Date: Thu, 11 Jul 2019 17:17:16 -0600 Message-ID: Subject: Re: ffmpeg port To: David Demelier Cc: FreeBSD Ports Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 5263F702C5 X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=adamw-org.20150623.gappssmtp.com header.s=20150623 header.b=gp184NqO; spf=pass (mx1.freebsd.org: domain of adamw@adamw.org designates 2a00:1450:4864:20::343 as permitted sender) smtp.mailfrom=adamw@adamw.org X-Spamd-Result: default: False [-3.22 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; R_DKIM_ALLOW(-0.20)[adamw-org.20150623.gappssmtp.com:s=20150623]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; DMARC_NA(0.00)[adamw.org]; TO_MATCH_ENVRCPT_SOME(0.00)[]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[adamw-org.20150623.gappssmtp.com:+]; RCPT_COUNT_TWO(0.00)[2]; RCVD_IN_DNSWL_NONE(0.00)[3.4.3.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; MX_GOOD(-0.01)[cached: alt1.aspmx.l.google.com]; IP_SCORE(-0.53)[ip: (2.73), ipnet: 2a00:1450::/32(-2.88), asn: 15169(-2.44), country: US(-0.06)]; NEURAL_HAM_SHORT(-0.18)[-0.180,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2019 23:17:35 -0000 On Thu, Jul 11, 2019 at 7:18 AM David Demelier wrote= : > > Le 10/07/2019 =C3=A0 13:59, Jan Beich a =C3=A9crit : > > Why not use binary packages? Or why not build a quarterly branch? > > Or does anyone have better ideas? > > Unfortunately quarterly branches do not solve anything. They are just to > short to have any benefit. Let say you build a package in January and > then you don't touch your system for a while. In September, you realize > you need another port but your local ports also have vulnerabilities. > Now you have to update by changing the quarterly branch since others are > no longer maintained. Then, you may have some local ports that will be > upgraded to a major version which can be undesired for a production > server. This happened to me a while ago when I had to run an old version > of nodejs for an old version of etherpad, after an upgrade the new > nodejs version was no longer compatible and I needed to install node6 > port quickly (hopefully it was available !). > > This can be very frustrating since FreeBSD is a rock solid server OS > that comes with strong compatibility conventions in releases versions > but provides a ports tree in a rolling release fashion that do not match > the base version (unlike OpenBSD does). Then you have to carefully check > each time you need to update your ports that you won't break your system > (like many do with Arch, Gentoo, etc). IMHO, FreeBSD definitely requires > a per-RELEASE branches of ports that contain only bugfixes/security fixes= . Hi David, This is a concept that we grapple with continuously, both here and on internal lists. The fact of the matter is that we simply don't have the personpower to maintain more than two concurrent branches (and, by some estimation, more than one). We made the decision a long time ago (whether intentional or de facto) that the best way to ensure consistency was to provide one branch where ports were always kept up-to-date. There is no denying that this underserves environments where stasis is paramount, but it provides the greatest benefit to the greatest number of users. There are ideas being worked on that would improve CI to bring a greater degree of stability to head, but would not directly benefit the deployment scenario you're describing. We really would love to be able to provide release or LTS branches, but it simply comes down to resources. We'd need a few people working in paid positions to manage RE environments. The FreeBSD Foundation (which underwrites a couple very selective paid positions) has prioritized development of new technologies to keep FreeBSD competitive over third-party software backporting. # Adam --=20 Adam Weinberger adamw@adamw.org https://www.adamw.org From owner-freebsd-ports@freebsd.org Fri Jul 12 01:52:18 2019 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 AA56B15E37CA for ; Fri, 12 Jul 2019 01:52:18 +0000 (UTC) (envelope-from kennedy.greg@gmail.com) Received: from mail-ed1-x535.google.com (mail-ed1-x535.google.com [IPv6:2a00:1450:4864:20::535]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BF21758BC for ; Fri, 12 Jul 2019 01:52:17 +0000 (UTC) (envelope-from kennedy.greg@gmail.com) Received: by mail-ed1-x535.google.com with SMTP id v15so7740480eds.9 for ; Thu, 11 Jul 2019 18:52:17 -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=kclK5e9dylTWBh0PIshTo9D13KXE64M4Oio3tR5tGyY=; b=joHLsXuRjM4omBL8xplCfo0tabuNACW9/nHcg6t5DCWWTrLU/ggGQMEt3JNIYOJz8+ TkIPzt8kjN84C2rviE52L+gsKRGeM23lTm1zT6vz1wYFwYkOBOngRpcAXC1H4yOV21mH GuKRujaxKcC8/zyFB/055eWLXB1YrV8Fnwf6xUfKWysMOR1tUBY6JchhG/u/CsusklqL verOlxNtPJhLlRvoP6Y3DuWKBiI7ZEGc2hF5zWstrWXtuh1NxiJlao9DKUAv+SDgvQDv VOVFEu1mRO1cbYrYqf09nrz30ge5wa5pvFzh9OLznYRalBrUFTSB0sCjH/Tr/FjubnmF S+Mw== 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=kclK5e9dylTWBh0PIshTo9D13KXE64M4Oio3tR5tGyY=; b=NZyKNqCGuPP+6B77JdeGuDAx55rRZeFnoMASOjhrOk4msQLu9eEZju3SZ3zygJ1Hlo 0BPnhlqFsgq0S2oq/NC88T5GL/oxxSsjAejnoYyxm1LIt1Tm51u+HJJoBjCZcwvTcMRa SFhUOKNrmCa+gSVmZvSv+IXJyIGfTr5wYyqM90QWU1reuQIZQjxm700ZRNH3tBs9NlGO YULfMXvtcnY2HPByF87MR6jZiCVJJK/ctUZ4wcU3a6TJW9EWvQ7JjljrtKUTk1v5Wsdy Vq4BX1wnisglBwotRdHhlmwftozblQDw1s2HivzFsWb5/ffEkpg5u0ugmoIzjqiKE6a/ e3Cg== X-Gm-Message-State: APjAAAU+rhUwLkJV8H2Bq9RLMJMe1GtRogo7YiELwPzizfHQgRkR2RXC v4cM24PQ8lc1RUz/ZFT0KA9QejcctOsYmEHvH4hP4Q== X-Google-Smtp-Source: APXvYqyGqkF6RCKKCkj6WZgCy1/ct26RfvwQDZvyOX86vauT3qGlTcfgTaK99de/Qx8TrNS27CRMCR+bqHiqkBYJ+3Y= X-Received: by 2002:a50:976d:: with SMTP id d42mr6689846edb.77.1562896335833; Thu, 11 Jul 2019 18:52:15 -0700 (PDT) MIME-Version: 1.0 From: Greg Kennedy Date: Thu, 11 Jul 2019 20:52:05 -0500 Message-ID: Subject: Improvement to port games/ioquake3 To: freebsd-ports@freebsd.org Content-Type: multipart/mixed; boundary="000000000000eb6806058d722839" X-Rspamd-Queue-Id: 9BF21758BC X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=joHLsXuR; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of kennedygreg@gmail.com designates 2a00:1450:4864:20::535 as permitted sender) smtp.mailfrom=kennedygreg@gmail.com X-Spamd-Result: default: False [-6.72 / 15.00]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; HAS_ATTACHMENT(0.00)[]; TO_DN_NONE(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; NEURAL_HAM_SHORT(-0.73)[-0.732,0]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; TAGGED_FROM(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/mixed,multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-2.98)[ip: (-9.53), ipnet: 2a00:1450::/32(-2.88), asn: 15169(-2.44), country: US(-0.06)]; RCVD_IN_DNSWL_NONE(0.00)[5.3.5.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; RCVD_COUNT_TWO(0.00)[2] X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 01:52:18 -0000 --000000000000eb6806058d722839 Content-Type: text/plain; charset="UTF-8" The port games/ioquake3-server can be used to build a dedicated server for Quake 3 and derivative games. However, it doesn't come with an rc script to launch at system boot or on demand. This makes it a bit tricky to run the dedicated server. This port is a "slave port" that depends on the master port games/ioquake to actually retrieve the source and build everything. I have modified the master port so it now builds and installs an rc script to launch when configured to build the server. In addition, there is a sample .cfg file to start a LAN server which can be modified by the end user, but provides a sane starting point for running the game. I think this port has no maintainer so I have no idea who to ping to have this committed :) --000000000000eb6806058d722839 Content-Type: application/octet-stream; name="games_ioquake3.patch" Content-Disposition: attachment; filename="games_ioquake3.patch" Content-Transfer-Encoding: base64 Content-ID: X-Attachment-Id: f_jxzg10700 SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIE1ha2VmaWxlCShyZXZpc2lvbiA1MDUyMTYp CisrKyBNYWtlZmlsZQkod29ya2luZyBjb3B5KQpAQCAtMTE2LDYgKzExNiwxMCBAQAogRExSRU5E RVJFUl9NQUtFX0FSR1M9CVVTRV9SRU5ERVJFUl9ETE9QRU49MQogRExSRU5ERVJFUl9NQUtFX0FS R1NfT0ZGPQlVU0VfUkVOREVSRVJfRExPUEVOPTAKIAorLmlmICFkZWZpbmVkKFEzVE9UQUxDT05W KQorLmluY2x1ZGUgIiR7LkNVUkRJUn0vLi4vcXVha2UzLWRhdGEvTWFrZWZpbGUuaW5jbHVkZSIK Ky5lbmRpZgorCiAuaW5jbHVkZSA8YnNkLnBvcnQub3B0aW9ucy5taz4KIAogLmlmICFkZWZpbmVk KERFU0tUT1BfRU5UUklFUykKQEAgLTE0MCw2ICsxNDQsOCBAQAogLmlmICR7SU9RMzpNU0VSVkVS fQogTUFLRV9BUkdTKz0JQlVJTERfU0VSVkVSPTEKIFEzQklOKz0JCSR7UTNTRVJWRVJ9CitVU0Vf UkNfU1VCUis9CWlvcTNkZWQKK1NVQl9MSVNUKz0JUTNESVI9JHtRM0RJUn0KIC5lbHNlCiBNQUtF X0FSR1MrPQlCVUlMRF9TRVJWRVI9MAogLmVuZGlmCkBAIC0xODksNiArMTk1LDEwIEBACiAuZm9y IGluc3QgaW4gJHtJT1EzX0lOU1R9CiBQTElTVF9GSUxFUys9CSR7aW5zdDpDLy4qOy8vfQogLmVu ZGZvcgorIyBhZGRpdGlvbmFsIHJ1bGVzIGZvciBvdXIgY3VzdG9tIHNlcnZlci5jZmcgZnJvbSBm aWxlc2RpcgorLmlmICR7SU9RMzpNU0VSVkVSfQorUExJU1RfRklMRVMrPQkke1EzRElSfS9zZXJ2 ZXIuY2ZnCisuZW5kaWYKIAogIyBHZW5lcmF0ZSBpbnN0YWxsIHRhcmdldAogZG8taW5zdGFsbDog JHtRM0lOU1RBTEx9CkBAIC0xOTksOSArMjA5LDExIEBACiAJJHtJTlNUQUxMXyR7aW5zdDpDLzsu Ki8vfX0gJHtCVUlMRERJUn0vJHtpbnN0OkMvW147XSo7Ly86Qy87LiovL30gXAogCQkke1NUQUdF RElSfSR7UFJFRklYfS8ke2luc3Q6Qy8uKjsvL30KIC5lbmRmb3IKLQotLmlmICFkZWZpbmVkKFEz VE9UQUxDT05WKQotLmluY2x1ZGUgIiR7LkNVUkRJUn0vLi4vcXVha2UzLWRhdGEvTWFrZWZpbGUu aW5jbHVkZSIKKyMgYWRkaXRpb25hbCBydWxlcyBmb3Igb3VyIGN1c3RvbSBzZXJ2ZXIuY2ZnIGZy b20gZmlsZXNkaXIKKy5pZiAke0lPUTM6TVNFUlZFUn0KKwkke01LRElSfSAke1NUQUdFRElSfSR7 UTNESVJ9CisJJHtJTlNUQUxMX0RBVEF9ICR7RklMRVNESVJ9L3NlcnZlci5jZmcgXAorCQkke1NU QUdFRElSfSR7UTNESVJ9L3NlcnZlci5jZmcKIC5lbmRpZgogCiAuaW5jbHVkZSA8YnNkLnBvcnQu bWs+CkluZGV4OiBmaWxlcy9pb3EzZGVkLmluCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KLS0tIGZpbGVzL2lvcTNkZWQu aW4JKG5vbmV4aXN0ZW50KQorKysgZmlsZXMvaW9xM2RlZC5pbgkod29ya2luZyBjb3B5KQpAQCAt MCwwICsxLDU0IEBACisjIS9iaW4vc2gKKyMKKyMgJEZyZWVCU0QkCisKKyMgUFJPVklERTogaW9x M2RlZAorIyBSRVFVSVJFOiBMT0dJTgorCisjIyMjCisjIEFkZCB0aGUgZm9sbG93aW5nIGxpbmUg dG8gL2V0Yy9yYy5jb25mIHRvIGVuYWJsZSBpb3EzZGVkCisjCisjICBpb3EzZGVkX2VuYWJsZT0i WUVTIgorIyAgIyBvcHRpb25hbAorIyAgaW9xM2RlZF9hcmdzPSIrc2V0IGRlZGljYXRlZCAxICtz ZXQgY29tX2h1bmttZWdzIDMyICtleGVjIHNlcnZlci5jZmciCisjICBpb3EzZGVkX2hvbWU9Ii92 YXIvcnVuL2lvcTNkZWQiCisjICBpb3EzZGVkX2RhdGE9IiUlUTNESVIlJSIKKyMgIGlvcTNkZWRf dXNlcj0iZ2FtZXMiCisjICBpb3EzZGVkX2dyb3VwPSJnYW1lcyIKKyMKKyMgTm90ZToKKyMgVGhp cyBzY3JpcHQgaXMgc2V0IHRvIGV4ZWN1dGUgc2VydmVyLmNmZyBmcm9tIHRoZSBzeXN0ZW0gYmFz ZXEzCisjICBmb2xkZXIgYXQgbGF1bmNoLiAgTW9zdCBzZXJ2ZXIgY29uZmlnIGNhbiBiZSBwbGFj ZWQgdGhlcmUuCisjIFNvbWUgb3B0aW9ucyBNVVNUIGdvIG9uIGNvbW1hbmQtbGluZSBhbmQgc2hv dWxkIGJlIHBsYWNlZCBpbgorIyAgImlvcTNkZWRfYXJncyIgaW5zdGVhZCAtIHRoZXNlIGluY2x1 ZGUgImRlZGljYXRlZCIsCisjICAiY29tX2h1bmttZWdzIiwgZXRjLgorIyMjIworCisuIC9ldGMv cmMuc3VicgorCituYW1lPWlvcTNkZWQKK3JjdmFyPWlvcTNkZWRfZW5hYmxlCisKK2xvYWRfcmNf Y29uZmlnICRuYW1lCisKKzogJHtpb3EzZGVkX2VuYWJsZTo9Ik5PIn0KKzogJHtpb3EzZGVkX2Fy Z3M9IitzZXQgZGVkaWNhdGVkIDEgK3NldCBjb21faHVua21lZ3MgMzIgK2V4ZWMgc2VydmVyLmNm ZyJ9Cis6ICR7aW9xM2RlZF9ob21lOj0iL3Zhci9ydW4vaW9xM2RlZCJ9Cis6ICR7aW9xM2RlZF9k YXRhOj0iJSVRM0RJUiUlIn0KKzogJHtpb3EzZGVkX3VzZXI6PSJnYW1lcyJ9Cis6ICR7aW9xM2Rl ZF9ncm91cDo9ImdhbWVzIn0KKworc3RhcnRfcHJlY21kPSJpb3EzZGVkX3ByZWNtZCIKKworaW9x M2RlZF9wcmVjbWQoKQoreworICAgIGluc3RhbGwgLWQgLW8gJHtpb3EzZGVkX3VzZXJ9IC1nICR7 aW9xM2RlZF9ncm91cH0gJHtpb3EzZGVkX2hvbWV9Cit9CisKK3BpZGZpbGU9IiR7aW9xM2RlZF9o b21lfS9pb3EzZGVkLWRhZW1vbi5waWQiCitjaGlsZF9waWRmaWxlPSIke2lvcTNkZWRfaG9tZX0v aW9xM2RlZC5waWQiCisKK2NvbW1hbmQ9Ii91c3Ivc2Jpbi9kYWVtb24iCitjb21tYW5kX2FyZ3M9 Ii1jIC1mIC1QICR7cGlkZmlsZX0gLXAgJHtjaGlsZF9waWRmaWxlfSAlJVBSRUZJWCUlL2Jpbi9p b3EzZGVkICtzZXQgZnNfYmFzZXBhdGggJHtpb3EzZGVkX2RhdGF9ICtzZXQgZnNfaG9tZXBhdGgg JHtpb3EzZGVkX2hvbWV9ICR7aW9xM2RlZF9hcmdzfSIKKworcnVuX3JjX2NvbW1hbmQgIiQxIgpJ bmRleDogZmlsZXMvc2VydmVyLmNmZwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBmaWxlcy9zZXJ2ZXIuY2ZnCShu b25leGlzdGVudCkKKysrIGZpbGVzL3NlcnZlci5jZmcJKHdvcmtpbmcgY29weSkKQEAgLTAsMCAr MSw1OSBAQAorLy8gU0FNUExFIFNFUlZFUiBDT05GSUcgRklMRQorLy8gIFRoaXMgZmlsZSB3aWxs IGxhdW5jaCBhIHN0YW5kYXJkIERNIHNlcnZlciB3aXRoIHVwIHRvIDggcGxheWVycywKKy8vICB0 aHJlZSBib3RzLgorCisvLworLy8gR0VORVJBTCBTRVJWRVIgQ09ORklHCisvLworc2V0IHN2X2hv c3RuYW1lICJpb3F1YWtlMyBTZXJ2ZXIiCS8vIG5hbWUgdGhhdCBhcHBlYXJzIGluIHNlcnZlciBs aXN0CitzZXQgZ19tb3RkICJpb3EzZGVkIG9uIEZyZWVCU0QiCS8vIG1lc3NhZ2UgdGhhdCBhcHBl YXJzIHdoZW4gY29ubmVjdGluZworc2V0IGdfbG9nICIiCQkJLy8gZGlzYWJsZXMgd3JpdGluZyBn YW1lc3RhdHMgdG8gbG9nIGZpbGUKKworc2V0IHN2X21heGNsaWVudHMgOAkJLy8gbWF4IG51bWJl ciBvZiBjbGllbnRzIHRoYW4gY2FuIGNvbm5lY3QKK3NldCBzdl9wdXJlIDEJCQkvLyBwdXJlIHNl cnZlciwgbm8gYWx0ZXJlZCBwYWsgZmlsZXMKKworc2V0IGdfYWxsb3d2b3RlIDAJCS8vIGRpc2Fs bG93IHZvdGluZyAocGxheWVycyBtaWdodCBydWluIHRoZSBtYXAgcm90YXRpb24pCisKKy8vc2V0 IHJjb25wYXNzd29yZCAic2VjcmV0IgkvLyBzZXRzIFJDT04gcGFzc3dvcmQgZm9yIHJlbW90ZSBj b25zb2xlCisKKy8vCisvLyBHQU1FIFJVTEUgQ09ORklHCisvLworc2V0IGdfZ2FtZXR5cGUgMAkJ Ly8gMDpGRkEsIDE6VG91cm5leSwgMjpGRkEsIDM6VEQsIDQ6Q1RGCitzZXQgdGltZWxpbWl0IDEw CQkvLyBUaW1lIGxpbWl0IGluIG1pbnV0ZXMKK3NldCBmcmFnbGltaXQgMTUJCS8vIEZyYWcgbGlt aXQKKworc2V0IGdfZG9XYXJtdXAgMQkJLy8gMjBzZWMgd2FybXVwIHRpbWUgYmVmb3JlIGVhY2gg bWFwIHN0YXJ0CitzZXQgZ19pbmFjdGl2aXR5IDMwMAkJLy8ga2ljayBwbGF5ZXJzIGFmdGVyIGJl aW5nIGluYWN0aXZlIGZvciB4IHNlY29uZHMKK3NldCBnX2ZvcmNlcmVzcGF3biAwCQkvLyBwbGF5 ZXIgaGFzIHRvIHByZXNzIHByaW1hcnkgYnV0dG9uIHRvIHJlc3Bhd24KKworLy8KKy8vIEJPVCBD T05GSUcKKy8vCitzZXQgYm90X2VuYWJsZSAxCQkvLyBBbGxvdyBib3RzIG9uIHRoZSBzZXJ2ZXIK K3NldCBnX3Nwc2tpbGwgMwkJCS8vIERlZmF1bHQgc2tpbGwgb2YgYm90cyBbMS01XQorc2V0IGJv dF9taW5wbGF5ZXJzIDMJCS8vIFRoaXMgZmlsbHMgdGhlIHNlcnZlciB3aXRoIGJvdHMgdG8gc2F0 aXNmeSB0aGUgbWluaW11bQorCisvLworLy8gTUFQIENPTkZJRworLy8KK3NldCBkbTEgIm1hcCBx M2RtMTsgc2V0IG5leHRtYXAgdnN0ciBkbTIiCitzZXQgZG0yICJtYXAgcTNkbTI7IHNldCBuZXh0 bWFwIHZzdHIgZG0zIgorc2V0IGRtMyAibWFwIHEzZG0zOyBzZXQgbmV4dG1hcCB2c3RyIGRtNCIK K3NldCBkbTQgIm1hcCBxM2RtNDsgc2V0IG5leHRtYXAgdnN0ciBkbTUiCitzZXQgZG01ICJtYXAg cTNkbTU7IHNldCBuZXh0bWFwIHZzdHIgZG02Igorc2V0IGRtNiAibWFwIHEzZG02OyBzZXQgbmV4 dG1hcCB2c3RyIGRtNyIKK3NldCBkbTcgIm1hcCBxM2RtNzsgc2V0IG5leHRtYXAgdnN0ciBkbTgi CitzZXQgZG04ICJtYXAgcTNkbTg7IHNldCBuZXh0bWFwIHZzdHIgZG05Igorc2V0IGRtOSAibWFw IHEzZG05OyBzZXQgbmV4dG1hcCB2c3RyIGRtMTAiCitzZXQgZG0xMCAibWFwIHEzZG0xMDsgc2V0 IG5leHRtYXAgdnN0ciBkbTExIgorc2V0IGRtMTEgIm1hcCBxM2RtMTE7IHNldCBuZXh0bWFwIHZz dHIgZG0xMiIKK3NldCBkbTEyICJtYXAgcTNkbTEyOyBzZXQgbmV4dG1hcCB2c3RyIGRtMTMiCitz ZXQgZG0xMyAibWFwIHEzZG0xMzsgc2V0IG5leHRtYXAgdnN0ciBkbTE0Igorc2V0IGRtMTQgIm1h cCBxM2RtMTQ7IHNldCBuZXh0bWFwIHZzdHIgZG0xNSIKK3NldCBkbTE1ICJtYXAgcTNkbTE1OyBz ZXQgbmV4dG1hcCB2c3RyIGRtMTYiCitzZXQgZG0xNiAibWFwIHEzZG0xNjsgc2V0IG5leHRtYXAg dnN0ciBkbTE3Igorc2V0IGRtMTcgIm1hcCBxM2RtMTc7IHNldCBuZXh0bWFwIHZzdHIgZG0xOCIK K3NldCBkbTE4ICJtYXAgcTNkbTE4OyBzZXQgbmV4dG1hcCB2c3RyIGRtMTkiCitzZXQgZG0xOSAi bWFwIHEzZG0xOTsgc2V0IG5leHRtYXAgdnN0ciBkbTEiCit2c3RyIGRtMQo= --000000000000eb6806058d722839-- From owner-freebsd-ports@freebsd.org Fri Jul 12 05:36:37 2019 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 4F01B15E6DDD for ; Fri, 12 Jul 2019 05:36:37 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7F8985018 for ; Fri, 12 Jul 2019 05:36:36 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hloET-000D4x-1X; Fri, 12 Jul 2019 07:36:33 +0200 Date: Fri, 12 Jul 2019 07:36:33 +0200 From: Kurt Jaeger To: Greg Kennedy Cc: freebsd-ports@freebsd.org Subject: Re: Improvement to port games/ioquake3 Message-ID: <20190712053633.GF34918@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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 05:36:37 -0000 Hi! > I have modified the master port so it now builds and installs an rc script > to launch when configured to build the server. In addition, there is a > sample .cfg file to start a LAN server which can be modified by the end > user, but provides a sane starting point for running the game. > > I think this port has no maintainer so I have no idea who to ping to have > this committed :) Most important is to upload the patch to bugs.freebsd.org so that it does not get lost in the mail flood 8-} Please post the PR# here, I can work on it. -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Fri Jul 12 05:52:51 2019 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 9778715E720E for ; Fri, 12 Jul 2019 05:52:51 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-cmomta03.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.227]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A14948584A for ; Fri, 12 Jul 2019 05:52:50 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from localhost ([96.28.161.151]) by cmsmtp with ESMTP id loRdhvolPWnTiloRghhTUd; Fri, 12 Jul 2019 05:50:12 +0000 Date: Fri, 12 Jul 2019 05:49:21 +0000 From: "Thomas Mueller" To: freebsd-ports@freebsd.org Subject: Re: coreutils missing one component: (g)stat References: <20190711134723.GE34918@home.opsec.eu> <5d27a969.1c69fb81.7dee6.b944SMTPIN_ADDED_MISSING@mx.google.com> X-CMAE-Envelope: MS4wfFw1BKDZlqjk5ng+07v/LIADgjo+NCcv0Ke5uYXyChX9aDu53ENj9ZamK168Kw2ms2HL65DqWCT99PKs6NuVCTBAoMm6pJS3vZo64vX5ouFWVCqxB8g5 phC40aXfkkerdmV+1A4Ps42tH29uVhVtK9EjWkJLm19wPXNgfTE1lxWJ X-Rspamd-Queue-Id: A14948584A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of mueller6722@twc.com designates 107.14.73.227 as permitted sender) smtp.mailfrom=mueller6722@twc.com X-Spamd-Result: default: False [-2.78 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:107.14.73.0/24]; FREEMAIL_FROM(0.00)[twc.com]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; TO_DN_NONE(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-0.99)[-0.995,0]; MISSING_MID(2.50)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MX_GOOD(-0.01)[cached: dnvrco-cmedge02.email.rr.com]; NEURAL_HAM_SHORT(-0.44)[-0.441,0]; RCVD_IN_DNSWL_NONE(0.00)[227.73.14.107.list.dnswl.org : 127.0.5.0]; RCVD_TLS_LAST(0.00)[]; DMARC_NA(0.00)[twc.com]; FROM_EQ_ENVFROM(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[151.161.28.96.zen.spamhaus.org : 127.0.0.10]; R_DKIM_NA(0.00)[]; FREEMAIL_ENVFROM(0.00)[twc.com]; ASN(0.00)[asn:7843, ipnet:107.14.73.0/24, country:US]; IP_SCORE(-2.54)[ip: (-7.32), ipnet: 107.14.73.0/24(-2.94), asn: 7843(-2.35), country: US(-0.06)]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 05:52:51 -0000 > > Now I see where GNU stat is, and it's not FreeBSD's fault that ptxdist configure script can't find things. I made a symbolic link in nonroot ~/fb64/bin: > > ln -s /usr/local/bin/gnustat gstat > I'm not clear whether you're trying to construct a port, or just > getting the software to build. > If you're building a port, you can achieve that with: > BINARY_ALIAS= gstat=gnustat # Adam - Adam Weinberger I was just trying to get the software to build, or should I say configure. Ptxdist (www.ptxdist.org) has a difficult time finding things: may be buggy. Can FreeBSD ports be updated on a system whose last update was in late July 2017 (11.1-STABLE)? I was able to build FreeBSD 12.0-STABLE and HEAD more recently (May 2019), but the installation was unstable and unable to connect to the internet. But I still get efibootmgr. Tom From owner-freebsd-ports@freebsd.org Fri Jul 12 07:41:47 2019 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 8C2BF15E8C6C for ; Fri, 12 Jul 2019 07:41:47 +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 20F768915E for ; Fri, 12 Jul 2019 07:41:47 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id CE67015E8C65; Fri, 12 Jul 2019 07:41: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 BA6D315E8C64 for ; Fri, 12 Jul 2019 07:41:46 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E7A18914F for ; Fri, 12 Jul 2019 07:41:46 +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 999A31BA0B for ; Fri, 12 Jul 2019 07:41:45 +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 x6C7fjM4055725 for ; Fri, 12 Jul 2019 07:41:45 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6C7fjYJ055724; Fri, 12 Jul 2019 07:41:45 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201907120741.x6C7fjYJ055724@portscout.ysv.freebsd.org> X-Authentication-Warning: portscout.ysv.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Fri, 12 Jul 2019 07:41:45 +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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 07:41:47 -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 ------------------------------------------------+-----------------+------------ graphics/partio | 1.8.3 | v1.10.1 ------------------------------------------------+-----------------+------------ science/psychopy | 1.90.3 | 3.1.5 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Fri Jul 12 08:34:20 2019 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 74AFF15E9AB4 for ; Fri, 12 Jul 2019 08:34:20 +0000 (UTC) (envelope-from markand@malikania.fr) Received: from smtp.smtpout.orange.fr (smtp01.smtpout.orange.fr [80.12.242.123]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client CN "Bizanga Labs SMTP Client Certificate", Issuer "Bizanga Labs CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id EFD908AAD7 for ; Fri, 12 Jul 2019 08:34:18 +0000 (UTC) (envelope-from markand@malikania.fr) Received: from postfix.malikania.fr ([5.135.187.121]) by mwinf5d36 with ME id bkaG2000W2dbEiD03kaGJP; Fri, 12 Jul 2019 10:34:16 +0200 X-ME-Helo: postfix.malikania.fr X-ME-Auth: ZGVtZWxpZXIuZGF2aWRAb3JhbmdlLmZy X-ME-Date: Fri, 12 Jul 2019 10:34:16 +0200 X-ME-IP: 5.135.187.121 Received: from [167.3.108.158] (unknown [77.159.242.250]) by postfix.malikania.fr (Postfix) with ESMTPSA id 2EFC154E6 for ; Fri, 12 Jul 2019 10:34:16 +0200 (CEST) Subject: Re: ffmpeg port To: freebsd-ports@freebsd.org References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> <1ryy-rtgr-wny@FreeBSD.org> <95f2326f-8431-804d-1439-40dbc28f71a0@malikania.fr> From: David Demelier Message-ID: Date: Fri, 12 Jul 2019 10:34:15 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: fr Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EFD908AAD7 X-Spamd-Bar: ++++ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [4.25 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.91)[0.908,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; TO_DN_NONE(0.00)[]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_THREE(0.00)[3]; RCVD_TLS_LAST(0.00)[]; MX_GOOD(-0.01)[cached: malikania.fr]; NEURAL_SPAM_LONG(1.00)[0.997,0]; RCVD_IN_DNSWL_NONE(0.00)[123.242.12.80.list.dnswl.org : 127.0.5.0]; NEURAL_SPAM_MEDIUM(0.98)[0.984,0]; R_SPF_NA(0.00)[]; DMARC_NA(0.00)[malikania.fr]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:3215, ipnet:80.12.240.0/20, country:FR]; MID_RHS_MATCH_FROM(0.00)[]; IP_SCORE(0.47)[ip: (-0.16), ipnet: 80.12.240.0/20(1.34), asn: 3215(1.20), country: FR(-0.01)] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 08:34:20 -0000 Le 12/07/2019 à 01:17, Adam Weinberger a écrit : > We really would love to be able to provide release or LTS branches, > but it simply comes down to resources. We'd need a few people working > in paid positions to manage RE environments. The FreeBSD Foundation > (which underwrites a couple very selective paid positions) has > prioritized development of new technologies to keep FreeBSD > competitive over third-party software backporting. Hello Adam, I'm not sure how can a LTS branch that you usually never update (except CVE, security fixes) take more time than quarterly branches that you need to recreate every 3 months and do some merges. Basically, a LTS branch stay in marble for a release lifetime and will only contain sporadic commits for security fixes or vulnerabilities. That's mostly what Slackware does for a release version. For someone who wants bleeding edge, they use slackware-current. Regards, -- David From owner-freebsd-ports@freebsd.org Fri Jul 12 08:42:48 2019 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 3EFA015E9D96 for ; Fri, 12 Jul 2019 08:42:48 +0000 (UTC) (envelope-from hausen@punkt.de) Received: from kagate.punkt.de (kagate.punkt.de [217.29.33.131]) (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 F0CF88AFF9 for ; Fri, 12 Jul 2019 08:42:41 +0000 (UTC) (envelope-from hausen@punkt.de) Received: from hugo10.ka.punkt.de (hugo10.ka.punkt.de [217.29.44.10]) by gate2.intern.punkt.de with ESMTP id x6C8gXSh081190; Fri, 12 Jul 2019 10:42:33 +0200 (CEST) Received: from [217.29.44.222] ([217.29.44.222]) by hugo10.ka.punkt.de (8.14.2/8.14.2) with ESMTP id x6C8gXNT066036; Fri, 12 Jul 2019 10:42:33 +0200 (CEST) (envelope-from hausen@punkt.de) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.11\)) Subject: Re: ffmpeg port From: "Patrick M. Hausen" In-Reply-To: Date: Fri, 12 Jul 2019 10:42:33 +0200 Cc: freebsd-ports@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <31A41EBB-0839-4DAC-8922-EBBFAC5BF432@punkt.de> References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> <1ryy-rtgr-wny@FreeBSD.org> <95f2326f-8431-804d-1439-40dbc28f71a0@malikania.fr> To: David Demelier X-Mailer: Apple Mail (2.3445.104.11) X-Rspamd-Queue-Id: F0CF88AFF9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of hausen@punkt.de designates 217.29.33.131 as permitted sender) smtp.mailfrom=hausen@punkt.de X-Spamd-Result: default: False [-2.50 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.89)[-0.886,0]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:217.29.32.0/20]; MV_CASE(0.50)[]; MIME_GOOD(-0.10)[text/plain]; RCVD_TLS_LAST(0.00)[]; DMARC_NA(0.00)[punkt.de]; NEURAL_HAM_LONG(-0.99)[-0.988,0]; RCVD_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MX_GOOD(-0.01)[mailin.pluspunkthosting.de,mailin.pluspunkthosting.de]; RCPT_COUNT_TWO(0.00)[2]; RCVD_IN_DNSWL_NONE(0.00)[131.33.29.217.list.dnswl.org : 127.0.10.0]; NEURAL_HAM_SHORT(-0.66)[-0.665,0]; IP_SCORE(-0.16)[ipnet: 217.29.32.0/20(-0.43), asn: 16188(-0.34), country: DE(-0.01)]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:16188, ipnet:217.29.32.0/20, country:DE]; MID_RHS_MATCH_FROM(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 08:42:48 -0000 Hi! > Am 12.07.2019 um 10:34 schrieb David Demelier : > I'm not sure how can a LTS branch that you usually never update = (except CVE, security fixes) take more time than quarterly branches that = you need to recreate every 3 months and do some merges. The problem is that you need to backport security patches that you don=E2=80=99t get from upstream. E.g. for PHP 5.6. As far as the PHP = project is concerned the bugfix for PHP 5.6 is PHP 7.x and PHP 5.6 is dead. If you create an LTS branch with that older version there is the = implicit promise that it will be maintained. Redhat does this. I don=E2=80=99t know how large their department for = backporting is but i guess it is =E2=80=9Ehuge=E2=80=9C. Patrick --=20 punkt.de GmbH Internet - Dienstleistungen - Beratung Kaiserallee 13a Tel.: 0721 9109-0 Fax: -100 76133 Karlsruhe info@punkt.de http://punkt.de AG Mannheim 108285 Gf: Juergen Egeling From owner-freebsd-ports@freebsd.org Fri Jul 12 08:45:02 2019 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 BFBCB15E9E25 for ; Fri, 12 Jul 2019 08:45:02 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 486838B10E for ; Fri, 12 Jul 2019 08:45:02 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hlrAo-000DM5-9E; Fri, 12 Jul 2019 10:44:58 +0200 Date: Fri, 12 Jul 2019 10:44:58 +0200 From: Kurt Jaeger To: David Demelier Cc: freebsd-ports@freebsd.org Subject: Re: ffmpeg port Message-ID: <20190712084458.GG34918@home.opsec.eu> References: <2288dfa5-0ec0-d1f5-eeca-066260604c22@aventia.pw> <1ryy-rtgr-wny@FreeBSD.org> <95f2326f-8431-804d-1439-40dbc28f71a0@malikania.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 08:45:02 -0000 Hi! > Le 12/07/2019 à 01:17, Adam Weinberger a écrit : > > We really would love to be able to provide release or LTS branches, > > but it simply comes down to resources. We'd need a few people working > > in paid positions to manage RE environments. The FreeBSD Foundation > > (which underwrites a couple very selective paid positions) has > > prioritized development of new technologies to keep FreeBSD > > competitive over third-party software backporting. > I'm not sure how can a LTS branch that you usually never update (except > CVE, security fixes) take more time than quarterly branches that you need > to recreate every 3 months and do some merges. > Basically, a LTS branch stay in marble for a release lifetime and will > only contain sporadic commits for security fixes or vulnerabilities. The problem are the merges. If you merge a fix to ports HEAD, that same fix normally can not be applied to a LTS version, because HEAD the LTS diverge fast enough to cause trouble. Maintainers and committers in the general case do not provide two patches. Right now, 12.0, 11.3 and 11.2 are still supported. So a maintainer or committer would even need to provide four patches. This is too taxing right now. -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Fri Jul 12 09:21:55 2019 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 B5A5D15EAB44 for ; Fri, 12 Jul 2019 09:21:55 +0000 (UTC) (envelope-from oliver@schonrocks.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 222738C75D for ; Fri, 12 Jul 2019 09:21:55 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: by mailman.ysv.freebsd.org (Postfix) id DA15315EAB43; Fri, 12 Jul 2019 09:21:54 +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 B512C15EAB42 for ; Fri, 12 Jul 2019 09:21:54 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from smtp.schonrocks.com (smtp.schonrocks.com [109.73.123.240]) (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 1CE648C753; Fri, 12 Jul 2019 09:21:52 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from [192.168.40.60] (home.zaheer.org.uk [81.187.127.171]) by smtp.schonrocks.com (Postfix) with ESMTPA id D85165ECADE; Fri, 12 Jul 2019 10:21:44 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schonrocks.com; s=default; t=1562923304; bh=bLu9lDSqL+AVYwFeOMWOCC2wrQZ3fjsVjtI+BL6pMA4=; h=From:Subject:To:Date; b=WUwUULAYSacRHa8umE1G2oB7NVXVrOIgqVKnlk+6wr4U543+KUmgzGg8YggMXJbNS 7VJ7TipQvdRYa5VJ0byiZVC4rm/UHJL8vBOkIAeY4AybcKl3szymlKbs1sAzcc3gha JRqKPauiJxvq/EkBxK1KOQFD/2RxupyBXBco8lIc= From: Oliver Schonrock Subject: Potential New FreeBSD Port: php72-pecl-DS - Data Structures To: joneum@FreeBSD.org, sunpoet@FreeBSD.org, ports@FreeBSD.org Openpgp: preference=signencrypt Autocrypt: addr=oliver@schonrocks.com; prefer-encrypt=mutual; keydata= mQENBFJq1xABCADSOV9iIvxTezuhmVU2/9d4ts9dFDYNPbIxDHwCiYQAYAFdZIFXGOWBMihi ZHRuqIeDKGV1siulQOYKVbcZJLF8Epyy9PjyLJ0EealZyVJaMsADelk/pGRSIwdfi76WhmLG +wE0hffWcEFcsO7NNwQlHLt2OyllrBWDMhaonvvCqf3MZ/2hK49mpaghxiRXD/xcgGZe3lLu 3RZ5gnZs9qK+pu5Z0vR4NUddQgcsdPcrU5kET5bwgtpKo4RscCThZFRs79BMWzU++7Ak2yp4 1e1Bje56ExeX2tO9ZHyFL+h6WKW4GmHGF4yF458hDiM8UcOESYpVez9UzpFP/N85BDJBABEB AAG0KE9saXZlciBTY2hvbnJvY2sgPG9saXZlckBzY2hvbnJvY2tzLmNvbT6JAVUEEwECAD8C GyMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAFiEE7wvUWeY+9QUNCqkJXpK6ZQsPHg8FAlvX SzEFCRLSdaEACgkQXpK6ZQsPHg8GzQgApxptMueCA2q56nRbKFMDBYrsw1Robi1qwpxwqP43 7oRUEtZglB1Ck+RKeQ2o4P1Oeu0n4bCTMkhUih06+0ZC2I0Ucc/om5XNUnbbeT8PTh1gC64j aia9DX8BIfysMzv+y0XXW/A507o3Zh1mTANDb4uKfGEbyllmWTASVM4s+srfFakyrwIwwhOg +ImzxsIG/Zyugx6NwBT/REnNrCT835fmgp076cTgzjIYg7PtZz1UgdMGl6iFuojosAtzYWiw CBQVyQrndM0GVH6pcGHDXsGwf00HyGws8APZMC17Z2ToEG3LUSh6qaD1RKE0NXaDc2M+sug7 nnQfZMm9j92ppbkBDQRSatcQAQgAvajMaY+cTsYo0C2X8AO9VAYlMN82IUgSQpGC+8rbUxgY kzpMLHqUXt+XlOx94wg9T9kvoHgvnvr+YnMVl8h8KRtRUKr/IcQKicpwB/vK5c5SLOig3O2V NR9r9JuntFRwF1bqzrtmkJBVOJEdky2TAWg7PXabaDfhBHZD+nzcb58mAC8NJFiQ0fzkDflG qg3E09UZPm8tQ9IIYrTrrqhf57/flju0nMpwxGV0W7z7y8Am1U2mrg4hggKD9ikhabMdCTw6 SEzSmH0Dxb9I8l5HKsW9X6CG6OY3Ya+0Rxxey1phv199dTGnw89wB6akRiv8CVmMCRyUu3Xt GTVYYbphNQARAQABiQE8BBgBAgAmAhsMFiEE7wvUWeY+9QUNCqkJXpK6ZQsPHg8FAlvXSzEF CRLSdaEACgkQXpK6ZQsPHg840wf+L7W1B422rqj7iCfSZ0VyqJ8uqL/zmiHW2rqu+XtXklVR hyWlJA0sbRYcz1oAFJ1rQWvPQ2D2cLC9wEULrBn+OM09nlvLF16+nA9pt9K8jLnQNIaL/sjQ 3/CWimKLIpVNaFe8I0ddgIUeoOTy03+xDgTcvwN0UHwzh2sMVh0rtuaj7hCIXzxMv5di/uED FTZBSyDOSvg54jZifTSKPAddjwruWbbi6VBsBkxr/Ys1o2f92Ba5zCN0ykFt0R0g3Lgd1lyO q70oBkiE+2r7EU5lyPUkv/fJpgM7/65/Ch77zMmTywojUv2yFb59PwvdDZIda2bbFY+SEFSU 8TBMMZPLpA== Message-ID: Date: Fri, 12 Jul 2019 10:21:43 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="tMLqsDR7Hmd4RzaGY1jfOwHJZVLgDY64a" X-Rspamd-Queue-Id: 1CE648C753 X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=schonrocks.com header.s=default header.b=WUwUULAY; spf=pass (mx1.freebsd.org: domain of oliver@schonrocks.com designates 109.73.123.240 as permitted sender) smtp.mailfrom=oliver@schonrocks.com X-Spamd-Result: default: False [-3.54 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[schonrocks.com:s=default]; NEURAL_HAM_MEDIUM(-0.98)[-0.980,0]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; R_SPF_ALLOW(-0.20)[+a]; TO_MATCH_ENVRCPT_ALL(0.00)[]; HAS_ATTACHMENT(0.00)[]; MIME_GOOD(-0.20)[multipart/signed,multipart/mixed,multipart/alternative,text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[schonrocks.com]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; IP_SCORE(0.15)[asn: 24958(0.85), country: GB(-0.08)]; NEURAL_SPAM_SHORT(0.90)[0.897,0]; DKIM_TRACE(0.00)[schonrocks.com:+]; MX_GOOD(-0.01)[smtp.schonrocks.com,mx-caprica.easydns.com]; SIGNED_PGP(-2.00)[]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:+,3:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:24958, ipnet:109.73.120.0/21, country:GB]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 09:21:56 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --tMLqsDR7Hmd4RzaGY1jfOwHJZVLgDY64a Content-Type: multipart/mixed; boundary="Gntl0lsgLkdZKAf5v4vpBzfCzUNrf2M6B"; protected-headers="v1" From: Oliver Schonrock To: joneum@FreeBSD.org, sunpoet@FreeBSD.org, ports@FreeBSD.org Message-ID: Subject: Potential New FreeBSD Port: php72-pecl-DS - Data Structures --Gntl0lsgLkdZKAf5v4vpBzfCzUNrf2M6B Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello PECL port maintainers There is a appealing "newish" pecl php extension, which addresses some of php's long standing shortcomings in well defined data structures replacing the ubiquitous "array()".=C2=A0 Efficient data structures for PHP 7, provided as an alternative to the array . https://www.php.net/manual/en/book.ds.php https://github.com/php-ds/ext-ds https://medium.com/@rtheunissen/efficient-data-structures-for-php-7-9dda7= af674cd Interest has been expressed from several FreeBSD users wanting to use this extension for data intensive projects: https://github.com/php-ds/ext-ds/issues/142 There does not appear to be a current FreeBSD port for this extension, and we are wondering whether there is a specific reason, such as compilation or other problems, or whether it is simply a matter of port maintainer bandwidth? If it is the latter, and there are no known issues, I am happy to help create/compile/test. The extension is very actively maintained, and devs have offered help. Your input and help is appreciated. Thanks --=20 Oliver Sch=C3=B6nrock email : oliver@schonrocks.com=20 --Gntl0lsgLkdZKAf5v4vpBzfCzUNrf2M6B-- --tMLqsDR7Hmd4RzaGY1jfOwHJZVLgDY64a Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEE7wvUWeY+9QUNCqkJXpK6ZQsPHg8FAl0oUScACgkQXpK6ZQsP Hg9l/AgAm2LkkXdgBwBS2omWROp1rKXJT10b6FCqnvp80P5eVQktPKnrJ5MiXZXX blOUpAk2ypmaR1Y5ccuFAL5lpmCzAos8wc1A6ljKxcu1pFJF83+jvaPQrxOHbxaM zWzm3FZjFeztsxxFh2yKU2q6+5FVD3ysXI2EsCAbVMwSr0ByzZnO2/lR2VgT9FlF FzXjzVM2k9aXNgZy5+AO3joUcrHpC5VRNJ9fZUdOKgU2uoX14sEhHiisisHgD+xW lL70EarsJj9SipJ0Mk1VLWQ2cX78ZAqPx6HBAT7mvhqzNAwbRRekjSIMmw5KiZfU 3XjlgauV/tzKiIpCy5BGKRVb9TFXJw== =mktq -----END PGP SIGNATURE----- --tMLqsDR7Hmd4RzaGY1jfOwHJZVLgDY64a-- From owner-freebsd-ports@freebsd.org Fri Jul 12 09:58:15 2019 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 BBBF815EB3FD for ; Fri, 12 Jul 2019 09:58:15 +0000 (UTC) (envelope-from abrancatelli@schema31.it) 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 9770C8F45B for ; Fri, 12 Jul 2019 09:58:10 +0000 (UTC) (envelope-from abrancatelli@schema31.it) Received: by mailman.ysv.freebsd.org (Postfix) id 4D0E315EB3FC; Fri, 12 Jul 2019 09:58: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 0C5E915EB3FB for ; Fri, 12 Jul 2019 09:58:10 +0000 (UTC) (envelope-from abrancatelli@schema31.it) Received: from titanio.schema31.it (titanio.schema31.it [62.77.63.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "titanio.pomona.schema31.it", Issuer "titanio.pomona.schema31.it" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3E3138F448 for ; Fri, 12 Jul 2019 09:57:58 +0000 (UTC) (envelope-from abrancatelli@schema31.it) Received: from smtp.schema31.it (localhost [127.0.0.1]) by titanio.pomona.schema31.it (8.15.2/8.15.2) with ESMTP id x6C9stYw009001; Fri, 12 Jul 2019 11:54:55 +0200 (CEST) (envelope-from abrancatelli@schema31.it) MIME-Version: 1.0 Date: Fri, 12 Jul 2019 11:54:49 +0200 From: Andrea Brancatelli To: bacula-users , ports@freebsd.org Subject: Problems with Bacula 9.4.3 port on FreeBSD Organization: Schema31 s.r.l. Message-ID: X-Sender: abrancatelli@schema31.it User-Agent: Roundcube Webmail/1.3.9 X-Rspamd-Queue-Id: 3E3138F448 X-Spamd-Bar: -- X-Spamd-Result: default: False [-2.48 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.55)[-0.553,0]; R_DKIM_ALLOW(-0.20)[schema31.it:s=gCloud]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:62.77.63.156/28]; NEURAL_HAM_LONG(-0.93)[-0.933,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; IP_SCORE(0.26)[asn: 20746(1.27), country: IT(0.03)]; HAS_ORG_HEADER(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[schema31.it:+]; MX_GOOD(-0.01)[mx-02.schema31.it,mx-03.schema31.it]; RCPT_COUNT_TWO(0.00)[2]; NEURAL_HAM_SHORT(-0.24)[-0.239,0]; DMARC_POLICY_ALLOW(-0.50)[schema31.it,quarantine]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:20746, ipnet:62.77.32.0/19, country:IT]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_COUNT_TWO(0.00)[2] Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 09:58:16 -0000 Hello, I was trying to upgrade our Bacula 9.4.2 to 9.4.3 on FreeBSD. I have to compile it from ports and not use binaries as the official PKG uses pgsql while we're using mysql. Anyhow, halfway through the compilation I get this error: Linking bacula-dir ... /usr/ports/sysutils/bacula9-server/work/bacula-9.4.3/libtool --silent --tag=CXX --mode=link /usr/bin/c++ -L/usr/local/lib -L/usr/local/lib -fstack-protector-strong -L../lib -L../cats -L../findlib -o bacula-dir dird.o admin.o authenticate.o autoprune.o backup.o bsr.o catreq.o dir_plugins.o dird_conf.o expand.o fd_cmds.o getmsg.o inc_conf.o job.o jobq.o mac.o mac_sql.o mountreq.o msgchan.o next_vol.o newvol.o recycle.o restore.o run_conf.o scheduler.o ua_acl.o ua_cmds.o ua_dotcmds.o ua_query.o ua_input.o ua_label.o ua_output.o ua_prune.o ua_purge.o ua_restore.o ua_run.o ua_select.o ua_server.o snapshot.o ua_status.o ua_tree.o ua_update.o vbackup.o verify.o -lz -lbacfind -lbacsql -lbaccats -lbaccfg -lbac -lm -lpthread -lintl -lwrap /usr/local/lib/libintl.so -Wl,-rpath -Wl,/usr/local/lib -lssl -lcrypto /usr/bin/ld: error: undefined symbol: BDB::bdb_get_client_pool(JCR*, alist*) >>> referenced by ua_prune.c >>> ua_prune.o:(prunecmd(UAContext*, char const*)) c++: error: linker command failed with exit code 1 (use -v to see invocation) *** [bacula-dir] Error code 1 I suppose this is related to https://fossies.org/diffs/bacula/9.4.2_vs_9.4.3/src/cats/sql_get.c-diff.html which looks like a new function... ? Any idea about what could be causing the error? Thanks -- Andrea Brancatelli From owner-freebsd-ports@freebsd.org Fri Jul 12 10:02:32 2019 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 9F3E215EB8FD for ; Fri, 12 Jul 2019 10:02:32 +0000 (UTC) (envelope-from pi@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 3189B8FAD8 for ; Fri, 12 Jul 2019 10:02:32 +0000 (UTC) (envelope-from pi@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E79A715EB8FB; Fri, 12 Jul 2019 10:02:31 +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 D4B8F15EB8FA for ; Fri, 12 Jul 2019 10:02:31 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A5BE8FAD0; Fri, 12 Jul 2019 10:02:31 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hlsNn-000DT3-Jf; Fri, 12 Jul 2019 12:02:27 +0200 Date: Fri, 12 Jul 2019 12:02:27 +0200 From: Kurt Jaeger To: Oliver Schonrock Cc: joneum@freebsd.org, sunpoet@freebsd.org, ports@freebsd.org Subject: Re: Potential New FreeBSD Port: php72-pecl-DS - Data Structures Message-ID: <20190712100227.GH34918@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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 10:02:32 -0000 Hi! > If it is the latter, and there are no known issues, I am happy to help > create/compile/test. The extension is very actively maintained, and devs > have offered help. Can you submit a patch to add this port to bugs.freebsd.org ? -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Fri Jul 12 11:14:59 2019 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 049B615ECCDC for ; Fri, 12 Jul 2019 11:14:59 +0000 (UTC) (envelope-from oliver@schonrocks.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 7D7776B697 for ; Fri, 12 Jul 2019 11:14:58 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: by mailman.ysv.freebsd.org (Postfix) id 3F27415ECCDB; Fri, 12 Jul 2019 11:14:58 +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 036D415ECCDA for ; Fri, 12 Jul 2019 11:14:58 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from smtp.schonrocks.com (smtp.schonrocks.com [109.73.123.240]) (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 8866B6B693; Fri, 12 Jul 2019 11:14:57 +0000 (UTC) (envelope-from oliver@schonrocks.com) Received: from [192.168.40.60] (home.zaheer.org.uk [81.187.127.171]) by smtp.schonrocks.com (Postfix) with ESMTPA id 3D7CD5ECCE6; Fri, 12 Jul 2019 12:14:55 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schonrocks.com; s=default; t=1562930095; bh=bm7Yc9Z2rwW/2ViR4G6CYcocdFhkFiKG/04BzrzJs2c=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=KkTtY4L0qpqChgDuas3HL64kJ6OsxcVHkIdIx1f9B3xDI6Vva8EPVILuLxHKmaBE7 PsdvZ57HZ7wSq+uP6OIMOOswfgELU7OI3VrM0BTIrhcdYE33na1gbrK470b2rQ3Uwm 61cGvoomZMcaLNzq7AZP64q42ze014KNM/0OqwI8= Subject: Re: Potential New FreeBSD Port: php72-pecl-DS - Data Structures To: Po-Chuan Hsieh Cc: Jochen Neumeister , Kurt Jaeger , ports References: <20190712100227.GH34918@home.opsec.eu> From: Oliver Schonrock Openpgp: preference=signencrypt Autocrypt: addr=oliver@schonrocks.com; prefer-encrypt=mutual; keydata= mQENBFJq1xABCADSOV9iIvxTezuhmVU2/9d4ts9dFDYNPbIxDHwCiYQAYAFdZIFXGOWBMihi ZHRuqIeDKGV1siulQOYKVbcZJLF8Epyy9PjyLJ0EealZyVJaMsADelk/pGRSIwdfi76WhmLG +wE0hffWcEFcsO7NNwQlHLt2OyllrBWDMhaonvvCqf3MZ/2hK49mpaghxiRXD/xcgGZe3lLu 3RZ5gnZs9qK+pu5Z0vR4NUddQgcsdPcrU5kET5bwgtpKo4RscCThZFRs79BMWzU++7Ak2yp4 1e1Bje56ExeX2tO9ZHyFL+h6WKW4GmHGF4yF458hDiM8UcOESYpVez9UzpFP/N85BDJBABEB AAG0KE9saXZlciBTY2hvbnJvY2sgPG9saXZlckBzY2hvbnJvY2tzLmNvbT6JAVUEEwECAD8C GyMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAFiEE7wvUWeY+9QUNCqkJXpK6ZQsPHg8FAlvX SzEFCRLSdaEACgkQXpK6ZQsPHg8GzQgApxptMueCA2q56nRbKFMDBYrsw1Robi1qwpxwqP43 7oRUEtZglB1Ck+RKeQ2o4P1Oeu0n4bCTMkhUih06+0ZC2I0Ucc/om5XNUnbbeT8PTh1gC64j aia9DX8BIfysMzv+y0XXW/A507o3Zh1mTANDb4uKfGEbyllmWTASVM4s+srfFakyrwIwwhOg +ImzxsIG/Zyugx6NwBT/REnNrCT835fmgp076cTgzjIYg7PtZz1UgdMGl6iFuojosAtzYWiw CBQVyQrndM0GVH6pcGHDXsGwf00HyGws8APZMC17Z2ToEG3LUSh6qaD1RKE0NXaDc2M+sug7 nnQfZMm9j92ppbkBDQRSatcQAQgAvajMaY+cTsYo0C2X8AO9VAYlMN82IUgSQpGC+8rbUxgY kzpMLHqUXt+XlOx94wg9T9kvoHgvnvr+YnMVl8h8KRtRUKr/IcQKicpwB/vK5c5SLOig3O2V NR9r9JuntFRwF1bqzrtmkJBVOJEdky2TAWg7PXabaDfhBHZD+nzcb58mAC8NJFiQ0fzkDflG qg3E09UZPm8tQ9IIYrTrrqhf57/flju0nMpwxGV0W7z7y8Am1U2mrg4hggKD9ikhabMdCTw6 SEzSmH0Dxb9I8l5HKsW9X6CG6OY3Ya+0Rxxey1phv199dTGnw89wB6akRiv8CVmMCRyUu3Xt GTVYYbphNQARAQABiQE8BBgBAgAmAhsMFiEE7wvUWeY+9QUNCqkJXpK6ZQsPHg8FAlvXSzEF CRLSdaEACgkQXpK6ZQsPHg840wf+L7W1B422rqj7iCfSZ0VyqJ8uqL/zmiHW2rqu+XtXklVR hyWlJA0sbRYcz1oAFJ1rQWvPQ2D2cLC9wEULrBn+OM09nlvLF16+nA9pt9K8jLnQNIaL/sjQ 3/CWimKLIpVNaFe8I0ddgIUeoOTy03+xDgTcvwN0UHwzh2sMVh0rtuaj7hCIXzxMv5di/uED FTZBSyDOSvg54jZifTSKPAddjwruWbbi6VBsBkxr/Ys1o2f92Ba5zCN0ykFt0R0g3Lgd1lyO q70oBkiE+2r7EU5lyPUkv/fJpgM7/65/Ch77zMmTywojUv2yFb59PwvdDZIda2bbFY+SEFSU 8TBMMZPLpA== Message-ID: Date: Fri, 12 Jul 2019 12:14:53 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="3IBJT72Du5GCWHdRX2wAysou4xdIaIEmV" X-Rspamd-Queue-Id: 8866B6B693 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.79 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.79)[-0.794,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 11:14:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --3IBJT72Du5GCWHdRX2wAysou4xdIaIEmV Content-Type: multipart/mixed; boundary="2iUCMIlaQeuWjJ4fm6ZnH1326IweT24FC"; protected-headers="v1" From: Oliver Schonrock To: Po-Chuan Hsieh Cc: Jochen Neumeister , Kurt Jaeger , ports Message-ID: Subject: Re: Potential New FreeBSD Port: php72-pecl-DS - Data Structures References: <20190712100227.GH34918@home.opsec.eu> In-Reply-To: --2iUCMIlaQeuWjJ4fm6ZnH1326IweT24FC Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: en-GB On 12/07/2019 12:04, Po-Chuan Hsieh wrote: > It builds successfully on FreeBSD. > I've add devel/pecl-ds in r506449. Great stuff. Thanks. --=20 Oliver Sch=C3=B6nrock --2iUCMIlaQeuWjJ4fm6ZnH1326IweT24FC-- --3IBJT72Du5GCWHdRX2wAysou4xdIaIEmV Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEE7wvUWeY+9QUNCqkJXpK6ZQsPHg8FAl0oa60ACgkQXpK6ZQsP Hg+EwwgAtO34RidUpT5C2mgnA9WRUx10sRbjQh2hWNEwufolP6c0nx9goPOJipJg YmYIrmSMEX4q9cVhPX+tl4CKGxPaeMvMgjKeQZ4jcOnzRC8fA1rnfdk578WO/8Gh i+yAGwpGJnv3ZtoxxlESmRlm1y3dXdioPhY6OdKn2NbM1BJA8s/IL6a+BGvSD7EB yxZUgYxPb4paXgKmE/FwWBaTGKr42xZHpn4UWPL7K1atO4ktuo+vXzTzjw+dhtj3 qGMdLT3jtDb/bQ2w5aq3dPH4mBWA44qeUcqogMuNs8TXBAeYqF7SmEMJGvNNXHqb v8LwqXZuZmijGOfsiF5Vegs0wVW40w== =TNSg -----END PGP SIGNATURE----- --3IBJT72Du5GCWHdRX2wAysou4xdIaIEmV-- From owner-freebsd-ports@freebsd.org Fri Jul 12 11:52:16 2019 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 B08B415ED745 for ; Fri, 12 Jul 2019 11:52:16 +0000 (UTC) (envelope-from roberthuff@rcn.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 301636CB07 for ; Fri, 12 Jul 2019 11:52:16 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: by mailman.ysv.freebsd.org (Postfix) id E80F915ED744; Fri, 12 Jul 2019 11:52:15 +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 D231B15ED743 for ; Fri, 12 Jul 2019 11:52:15 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) (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 F2D366CADE for ; Fri, 12 Jul 2019 11:52:04 +0000 (UTC) (envelope-from roberthuff@rcn.com) DKIM-Signature: v=1; a=rsa-sha1; d=rcn.com; s=20180516; c=relaxed/simple; q=dns/txt; i=@rcn.com; t=1562932318; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=W4DN4kkqzRqwxKx7Gg6xpj505KQ=; b=RI0EteNfzRZUSRc8Ij1i+McucrmEkBzWPyWlHnquTiB+Yl1nR/9biT+cCLQyUqEC nIg+8q3OwbHTVy5yqugsol7h9IV/eNQAEUISapRmFrbgdAjodtMatRqjn2y0CGFQ HZCj0FC1gahDRZEGIvESrDJon/fxpcBTvg+e5wJcAy8GVdYYTdibFJ4b3f2+LYmg EzucI4pHNxHjFaxVJftJPB2djRrPJjhTd9GciZaEJHKut46X2gOGrf+myQdhxm8H u0vplZ0hHflXeqqJJ0AAmZtnzQ8ERo3FDLSISZHVt2QLMDsF0/1j582EHlwikKEt BQ0qzhPqgO5WK0qpzfvJjg==; X_CMAE_Category: , , X-CNFS-Analysis: v=2.2 cv=R/9BIpZX c=1 sm=1 tr=0 a=9TgA2UwI6Wy+6BV4wQM/cQ==:117 a=9TgA2UwI6Wy+6BV4wQM/cQ==:17 a=jpOVt7BSZ2e4Z31A5e1TngXxSK0=:19 a=KGjhK52YXX0A:10 a=kj9zAlcOel0A:10 a=XRQyMpdBKAEA:10 a=0o9FgrsRnhwA:10 a=48faUk6PgeAA:10 a=AmJbSiEJwYd7q_yWy3kA:9 a=CjuIK1q_8ugA:10 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: cm9iZXJ0aHVmZkByY24uY29t Authentication-Results: smtp02.rcn.cmh.synacor.com header.from=roberthuff@rcn.com; sender-id=softfail Authentication-Results: smtp02.rcn.cmh.synacor.com smtp.user=roberthuff; auth=pass (PLAIN) Received: from [209.6.230.48] ([209.6.230.48:24785] helo=jerusalem.litteratus.org.litteratus.org) by smtp.rcn.com (envelope-from ) (ecelerity 3.6.25.56547 r(Core:3.6.25.0)) with ESMTPSA (cipher=AES256-GCM-SHA384) id 62/DE-10370-E54782D5; Fri, 12 Jul 2019 07:51:58 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <23848.29789.756195.311259@jerusalem.litteratus.org> Date: Fri, 12 Jul 2019 07:51:57 -0400 From: Robert Huff To: ports@freebsd.org Subject: "make index" fails In-Reply-To: <201907120401.x6C410me065075@jerusalem.litteratus.org> References: <201907120401.x6C410me065075@jerusalem.litteratus.org> X-Mailer: VM 8.2.0b under 26.2 (amd64-portbld-freebsd13.0) X-Rspamd-Queue-Id: F2D366CADE X-Spamd-Bar: ------- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=rcn.com header.s=20180516 header.b=RI0EteNf; dmarc=pass (policy=none) header.from=rcn.com; spf=pass (mx1.freebsd.org: domain of roberthuff@rcn.com designates 69.168.97.78 as permitted sender) smtp.mailfrom=roberthuff@rcn.com X-Spamd-Result: default: False [-7.59 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[rcn.com:s=20180516]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:69.168.97.0/24]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; RCPT_COUNT_ONE(0.00)[1]; DWL_DNSWL_LOW(-1.00)[rcn.com.dwl.dnswl.org : 127.0.5.1]; IP_SCORE(-2.79)[ip: (-9.32), ipnet: 69.168.97.0/24(-4.60), asn: 36271(0.04), country: US(-0.06)]; DKIM_TRACE(0.00)[rcn.com:+]; DMARC_POLICY_ALLOW(-0.50)[rcn.com,none]; MX_GOOD(-0.01)[mx.rcn.com]; NEURAL_HAM_SHORT(-0.69)[-0.690,0]; RCVD_IN_DNSWL_LOW(-0.10)[78.97.168.69.list.dnswl.org : 127.0.5.1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:36271, ipnet:69.168.97.0/24, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 11:52:16 -0000 For the last 2-3 days, "cd /usr/ports && make index" has failed with: > --- describe.x11-themes --- > --- describe.x11-toolkits --- > --- describe.x11-wm --- > make_index: /usr/ports/x11/nvidia-driver: no entry for /usr/ports/graphics/linux-c6-libglvnd > Done. Is this a fault on my end, or is there a hiccup in the ports tree? And if the former, how do I fix it? Respectfully, Robert Huff From owner-freebsd-ports@freebsd.org Fri Jul 12 13:20:07 2019 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 99CB515CA88F for ; Fri, 12 Jul 2019 13:20:07 +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 365B5701E1 for ; Fri, 12 Jul 2019 13:20:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EEAE915CA88E; Fri, 12 Jul 2019 13:20:06 +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 DD2EC15CA88C for ; Fri, 12 Jul 2019 13:20:06 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8495F701DD; Fri, 12 Jul 2019 13:20:06 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 740DF1F749; Fri, 12 Jul 2019 13:20:06 +0000 (UTC) From: Jan Beich To: Kurt Jaeger Cc: Oliver Schonrock , sunpoet@freebsd.org, ports@freebsd.org, joneum@freebsd.org Subject: Re: Potential New FreeBSD Port: php72-pecl-DS - Data Structures References: <20190712100227.GH34918@home.opsec.eu> Date: Fri, 12 Jul 2019 15:20:00 +0200 In-Reply-To: <20190712100227.GH34918@home.opsec.eu> (Kurt Jaeger's message of "Fri, 12 Jul 2019 12:02:27 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 8495F701DD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.81 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.81)[-0.813,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 13:20:07 -0000 Kurt Jaeger writes: > Hi! > >> If it is the latter, and there are no known issues, I am happy to help >> create/compile/test. The extension is very actively maintained, and devs >> have offered help. > > Can you submit a patch to add this port to bugs.freebsd.org ? Is it necessary after https://svnweb.freebsd.org/changeset/ports/506449 ? From owner-freebsd-ports@freebsd.org Fri Jul 12 13:32:39 2019 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 DF9CF15CAE6A for ; Fri, 12 Jul 2019 13:32:39 +0000 (UTC) (envelope-from pi@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 686FB70B00 for ; Fri, 12 Jul 2019 13:32:39 +0000 (UTC) (envelope-from pi@opsec.eu) Received: by mailman.ysv.freebsd.org (Postfix) id 277EC15CAE69; Fri, 12 Jul 2019 13:32:39 +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 1517515CAE68 for ; Fri, 12 Jul 2019 13:32:39 +0000 (UTC) (envelope-from pi@opsec.eu) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 357AA70AFA; Fri, 12 Jul 2019 13:32:37 +0000 (UTC) (envelope-from pi@opsec.eu) Received: from pi by home.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hlvf6-000Dob-QH; Fri, 12 Jul 2019 15:32:32 +0200 Date: Fri, 12 Jul 2019 15:32:32 +0200 From: Kurt Jaeger To: Jan Beich Cc: Kurt Jaeger , sunpoet@freebsd.org, ports@freebsd.org, Oliver Schonrock , joneum@freebsd.org Subject: Re: Potential New FreeBSD Port: php72-pecl-DS - Data Structures Message-ID: <20190712133232.GI34918@home.opsec.eu> References: <20190712100227.GH34918@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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 13:32:40 -0000 Hi! > >> If it is the latter, and there are no known issues, I am happy to help > >> create/compile/test. The extension is very actively maintained, and devs > >> have offered help. > > > > Can you submit a patch to add this port to bugs.freebsd.org ? > > Is it necessary after https://svnweb.freebsd.org/changeset/ports/506449 ? no 8-) -- pi@opsec.eu +49 171 3101372 One year to go ! From owner-freebsd-ports@freebsd.org Fri Jul 12 13:58:39 2019 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 D53FD15CB4E7 for ; Fri, 12 Jul 2019 13:58: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 728047172E for ; Fri, 12 Jul 2019 13:58:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2945315CB4E6; Fri, 12 Jul 2019 13:58:39 +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 14C4C15CB4E5 for ; Fri, 12 Jul 2019 13:58:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A5E617172B; Fri, 12 Jul 2019 13:58:38 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 946E2297; Fri, 12 Jul 2019 13:58:38 +0000 (UTC) From: Jan Beich To: Robert Huff Cc: ports@freebsd.org Subject: Re: "make index" fails References: <201907120401.x6C410me065075@jerusalem.litteratus.org> <23848.29789.756195.311259@jerusalem.litteratus.org> Date: Fri, 12 Jul 2019 15:58:32 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: A5E617172B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.91 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.91)[-0.911,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 13:58:40 -0000 Robert Huff writes: > For the last 2-3 days, "cd /usr/ports && make index" has failed > with: > >> --- describe.x11-themes --- >> --- describe.x11-toolkits --- >> --- describe.x11-wm --- >> make_index: /usr/ports/x11/nvidia-driver: no entry for /usr/ports/graphics/linux-c6-libglvnd >> Done. > > Is this a fault on my end, or is there a hiccup in the ports > tree? > And if the former, how do I fix it? Could be related to recent DEFAULT_VERSIONS+=linux=c6_64 removal. See UPDATING. https://svnweb.freebsd.org/changeset/ports/506352 https://svnweb.freebsd.org/changeset/ports/506356 From owner-freebsd-ports@freebsd.org Fri Jul 12 15:24:08 2019 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 6A55615CD2A2 for ; Fri, 12 Jul 2019 15:24:08 +0000 (UTC) (envelope-from starikarp@dismail.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 CB15D74B8D for ; Fri, 12 Jul 2019 15:24:07 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: by mailman.ysv.freebsd.org (Postfix) id 8BF7B15CD29E; Fri, 12 Jul 2019 15:24:07 +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 7988915CD29C for ; Fri, 12 Jul 2019 15:24:07 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: from mx1.dismail.de (mx1.dismail.de [78.46.223.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.dismail.de", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E48B74B86 for ; Fri, 12 Jul 2019 15:24:06 +0000 (UTC) (envelope-from starikarp@dismail.de) Received: from dismail.de (localhost [127.0.0.1]) by dismail.de (OpenSMTPD) with ESMTP id db660676 for ; Fri, 12 Jul 2019 17:23:59 +0200 (CEST) Received: from smtp1.dismail.de (10.240.26.11 [10.240.26.11]) by mx1.dismail.de (OpenSMTPD) with ESMTP id 38e61de0 for ; Fri, 12 Jul 2019 17:23:59 +0200 (CEST) Received: from smtp1.dismail.de (localhost [127.0.0.1]) by smtp1.dismail.de (OpenSMTPD) with ESMTP id a4b98833 for ; Fri, 12 Jul 2019 17:23:59 +0200 (CEST) Received: by dismail.de (OpenSMTPD) with ESMTPSA id f5d6d41a (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 12 Jul 2019 17:23:58 +0200 (CEST) Date: Fri, 12 Jul 2019 11:23:55 -0400 From: To: FreeBSD Ports Subject: BIMP 2.10.12 - plugin crashed Message-ID: <20190712112355.4652d2ce@dismail.de> X-Mailer: Claws Mail 3.17.3 (GTK+ 2.24.32; amd64-portbld-freebsd12.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4E48B74B86 X-Spamd-Bar: ------- X-Spamd-Result: default: False [-7.80 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[dismail.de:s=201701]; RCVD_COUNT_FIVE(0.00)[5]; IP_SCORE(-2.71)[ip: (-9.91), ipnet: 78.46.0.0/15(-1.82), asn: 24940(-1.80), country: DE(-0.01)]; R_SPF_ALLOW(-0.20)[+ip4:78.46.223.134]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[ports@freebsd.org]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; RCPT_COUNT_ONE(0.00)[1]; DWL_DNSWL_LOW(-1.00)[dismail.de.dwl.dnswl.org : 127.0.5.1]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; TO_DN_ALL(0.00)[]; DKIM_TRACE(0.00)[dismail.de:+]; DMARC_POLICY_ALLOW(-0.50)[dismail.de,reject]; FROM_NO_DN(0.00)[]; MX_GOOD(-0.01)[cached: mx1.dismail.de]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:24940, ipnet:78.46.0.0/15, country:DE]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_IN_DNSWL_LOW(-0.10)[134.223.46.78.list.dnswl.org : 127.0.5.1] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 15:24:08 -0000 I have a problem with updated GIMP 2.10.12: GIMP 2.10.12 Plug-in crashed: "file-jpeg" (/usr/local/libexec/gimp/2.2/plug-ins/file-jpeg/file-jpeg) The dying plug-in may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side. As I remember it was a problem with version 2.10.2 which was related to exiv2. Is now the same problem, please? Should I downgrade exiv2? Thank you. --=20 =E2=80=9CHappiness is the meaning and the purpose of life, the whole aim and end of human existence.=E2=80=9D =E2=80=95 Aristotle From owner-freebsd-ports@freebsd.org Fri Jul 12 23:40:52 2019 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 363B115D9F0A for ; Fri, 12 Jul 2019 23:40:52 +0000 (UTC) (envelope-from kennedy.greg@gmail.com) Received: from mail-ed1-x52c.google.com (mail-ed1-x52c.google.com [IPv6:2a00:1450:4864:20::52c]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C5C291A08 for ; Fri, 12 Jul 2019 23:40:51 +0000 (UTC) (envelope-from kennedy.greg@gmail.com) Received: by mail-ed1-x52c.google.com with SMTP id d4so10538716edr.13 for ; Fri, 12 Jul 2019 16:40:51 -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=5zWweNFu/BX89JwJWDArsyMbHepntUSMD3VpZjNARBY=; b=iPQd+oL2ds35Vj7MZeaMoVizXKM92KaibfC4FNUfnRJ2myaGLARUAq63e3J3aRhINE n2OqpYmV3WMf9PN9T+KrcCNum6aVVESBf31AE3KZPMVjum81KWri0tOTMyDnVfFrS4sc Suj75+M02YPUHMauf508Sincj+oPVq5cSiP+AbAZ521V8L8LdYb4Vt2eRe2LpgOloPU0 ErWd1SUyt72ZoZdvvjHdm6q+e04FZRgdGCxJZIED/RYk11ShHVkYFfe01GMhO2l2ElZw atWVeLMCb696rxFUM4YL1fG3KbDaHFaHpsMFwaKM/MrusTgTAzOc7DY2PzD59YNz4gmN 5MLw== 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=5zWweNFu/BX89JwJWDArsyMbHepntUSMD3VpZjNARBY=; b=qFFOEjXy45VJGcrlHst14xfyF5asDJmW6K2NJYuGr1blf9U++SqcmQBst7YOfsg29N 2OxZSRuESCquzNW0xHg+RiA4PGiKitvFSxSzrsG1jaq+Sc13Ev2ErohQorXZh/ssMDZK oRseq4+zuTGpmLoXYk1T+lzOQi/8EQl3aU+YO85JsyXJs9RNiAw0E03aZh/MXE/8rX7/ Mc2LOqSnno24YEQds78ngnr6VvQWJQwa5GkJvmR08qMYNVK3dG/uxgcoQSy5yr8/YCCk lZIYQ1HXQaBU+FPExb9syN2icB6IJM1PrhK8jigthPaU+WDA9xlODFol2fwkTGcjyLzv eI9Q== X-Gm-Message-State: APjAAAWAnvWwsX7IvLHI0AtD3fYULZIXyn77iek3FFhTnezf0RQKvdgO UrXoIwRgbuEQRUiYGZs7zZjPTWoIITOFkhYV6WldObPL X-Google-Smtp-Source: APXvYqxYcAKnExOu6e3C//1I1aWmD7sbNRITLZzpOxzQoknJ/lQPIssf+Te6TC4x/AbF0XnImuYaQaCdvf8bpMyF6rw= X-Received: by 2002:a17:906:9256:: with SMTP id c22mr10451842ejx.172.1562974849781; Fri, 12 Jul 2019 16:40:49 -0700 (PDT) MIME-Version: 1.0 From: Greg Kennedy Date: Fri, 12 Jul 2019 18:40:40 -0500 Message-ID: Subject: Re: Improvement to port games/ioquake3 To: freebsd-ports@freebsd.org X-Rspamd-Queue-Id: 4C5C291A08 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=iPQd+oL2; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of kennedygreg@gmail.com designates 2a00:1450:4864:20::52c as permitted sender) smtp.mailfrom=kennedygreg@gmail.com X-Spamd-Result: default: False [-4.19 / 15.00]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36]; FREEMAIL_FROM(0.00)[gmail.com]; TO_DN_NONE(0.00)[]; URI_COUNT_ODD(1.00)[3]; DKIM_TRACE(0.00)[gmail.com:+]; MX_GOOD(-0.01)[cached: alt3.gmail-smtp-in.l.google.com]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; NEURAL_HAM_SHORT(-0.21)[-0.212,0]; FROM_EQ_ENVFROM(0.00)[]; RCVD_TLS_LAST(0.00)[]; MIME_TRACE(0.00)[0:+,1:+]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; TAGGED_FROM(0.00)[]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; ARC_NA(0.00)[]; FAKE_REPLY(1.00)[]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; IP_SCORE(-2.96)[ip: (-9.42), ipnet: 2a00:1450::/32(-2.90), asn: 15169(-2.45), country: US(-0.06)]; RCVD_IN_DNSWL_NONE(0.00)[c.2.5.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; RCVD_COUNT_TWO(0.00)[2] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2019 23:40:52 -0000 > > I think this port has no maintainer so I have no idea who to ping to have > > this committed :) > Most important is to upload the patch to bugs.freebsd.org > so that it does not get lost in the mail flood 8-} Please post > the PR# here, I can work on it. No problem! Here's the PR link: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239180 Thanks! -Greg From owner-freebsd-ports@freebsd.org Sat Jul 13 08:04:22 2019 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 97AAB15E30E9 for ; Sat, 13 Jul 2019 08:04:22 +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 D7A2F7345D for ; Sat, 13 Jul 2019 08:04:21 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8F49615E30E4; Sat, 13 Jul 2019 08:04: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 7D20F15E30E2 for ; Sat, 13 Jul 2019 08:04:21 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 195FE73450 for ; Sat, 13 Jul 2019 08:04:21 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.ysv.freebsd.org (portscout.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 2656689BC for ; Sat, 13 Jul 2019 08:04:20 +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 x6D84Khu002655 for ; Sat, 13 Jul 2019 08:04:20 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.ysv.freebsd.org (8.15.2/8.15.2/Submit) id x6D84KBw002654; Sat, 13 Jul 2019 08:04:20 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201907130804.x6D84KBw002654@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, 13 Jul 2019 08:04:20 +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.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jul 2019 08:04:22 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/ports@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ ftp/net2ftp | 1.1 | 1.3 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-ports@freebsd.org Sat Jul 13 08:42:34 2019 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 5A89F15E3C8D for ; Sat, 13 Jul 2019 08:42:34 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from anny.lostinspace.de (anny.lostinspace.de [195.30.95.33]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BBA8E74FA5 for ; Sat, 13 Jul 2019 08:42:32 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from server.idefix.lan (056-100-000-128.ip-addr.inexio.net [128.0.100.56]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: idefix@fechner.net) by anny.lostinspace.de (Postfix) with ESMTPSA id 0995D7874 for ; Sat, 13 Jul 2019 10:42:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fechner.net; s=default; t=1563007344; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding:openpgp:openpgp:autocrypt:autocrypt; bh=p0QuFr80dZlNEuVnXT3dKM/xHhBG2RwKe/eGPBkLEzY=; b=kSR9jmratv7s7AxIJPfsANhzw3Teobb9ZTx168kqGCSQc8liydGOyDWc9GiSHxpGrMsjVO +euTrbvufhMLbP5QInKxtl5HGKzre4Zh028kyHf9x2IqiFC7qdjV9Twl4J+hIVvfw+hysd shTdE/qir+VMnYGL+W/DBmBXepvzU68= Received: from [192.168.0.151] (056-100-000-128.ip-addr.inexio.net [128.0.100.56]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by server.idefix.lan (Postfix) with ESMTPSA id 2E85DE37FF for ; Sat, 13 Jul 2019 10:42:22 +0200 (CEST) To: freebsd-ports@freebsd.org From: Matthias Fechner Subject: How to package maven based ports Openpgp: preference=signencrypt Autocrypt: addr=idefix@fechner.net; prefer-encrypt=mutual; keydata= mQINBFqca1YBEADM9mF2+ifk8HILTlf5wtAzV6SYVR4RvNOo/8Kucw4sCZT76zS1fjZe4Zy1 3C0IZ07Wi+3PnoGIgOCsXp3PrTc2nuHQWkwVBYXy8UaR9DHBWA/mIvRGG1ZscKQYA6oUdCvd K8Mu26zO60yTt+ONzFtK6G1myH4EHXZ8dpmdCFf+W3rzTU+aCQ5S3OfwCLGgYgOaVREGkdOc 5SVCpFb4n+2B8+CqeWsRHhnT+4h7/YhgDMGp4GiI3yrB2nBVSUUvcosD2nRtJQgGQHcAFtMq 3hJaKPOR/mHc6KVrp0xmGNmdtazvXloHmGIl9O1UpmMmrYu9Kugl0JkGi2fAcno02XgVlkyX 7xDLTteP5cNqRxor4yVDaRWUQnOfK9XgcrKGrAzb65BkCSkjT+Aw3S/A8Qd6NvjL9qy1d+Ct dzatOVF/Y7jaW28CMr3jvwPS13OxV7PnJzIZzdik20eVxfOXuYfxZD+PwBaGgFF0qj6zKACC aKLalE0ZpY0zNn/iPyQX/Cf9KoDyFpOHSsEswiJ5rCWwppVcsFyogHOemVmeaXlvyDPEipnV ZUkpGP/CCqPu3eD0uDzP7UJ0pt/l/JfW0Xw/4p9mjB024xiRlxLa6vSRfGl//EdtAIbKKa8x 5wsKTQEbYJDmXE3tH/A54DCqRXhcopTlu2iJlTdnIMltn9afVwARAQABtCVNYXR0aGlhcyBG ZWNobmVyIDxpZGVmaXhAZmVjaG5lci5uZXQ+iQJXBBMBCgBBAhsDBQkJZgGABQsJCAcDBRUK CQgLBRYDAgEAAh4BAheAFiEEaWB64mCp804YOtqutot13J/XR+EFAlqcc9gCGQEACgkQtot1 3J/XR+GQyhAAwDxUSg7X2aS1d6rrYUZdDk8rT5TCjayDAyOATdAUhJRZk8qXRNF27Mu6xiOT mIvEMKLagNsitffZs1g/mulRQiDVLloGav7xozSfYlaOYWpPb55wpsugQPLZz0OkU9tzw7j7 7sPPvnAxeqSofUJzQdZzp43aVwXVqsJ3rY0jGzYA5RLS6CBI1RRR8/hHLMxspDPl79IW3GhI HAXaVX1HVJA2oJEo9Y95DnJwX8NV+hvLlUVA2KDdNKFiVJKeV3ccqw+/5zW3Y8J6Rd8blW9n p68Z7lyxt6mvsDEdSxOyGSkPagzIDfHqmDfkaeum7gHMwweH2e2pZuhzMZkrKNoSkKiJ5uim 638ZhnzzmEWh2qtYPgHlZG1jO6n2DSzCqJkQYjYUtLj7ylIgZakG8M3idQRugHImMBq+HSMu WR8FI52gh1+4LbIArHB4YWTTr933ElwhS1jtomK9SeWezPfjunpxqXQl4QR0qXAuglsOMJ6y Togb6lc0qyEdOa5VCXQTLSD9yZpolSQOjOe1XEyM4g5v7FrPBGVni9AxlARvUDVbYQDv1+4A gchtgpLmAF8mDPq/tGeXuAO3m+ExQDXpJ4CneI9YHc+joU2cXQi5MP1NzgMOV43XEZCiTW0O BWM1+857gmDqGbybE7F3UFpvBs9/NRWnuxoKaYxYbqCOc3m5Ag0EWpxrVgEQAN3uCLHZF+1V gcrzYjwL1wAJwjYb7UnHKvNYdaBKgW0n0NTfaTCLHxHYPO8NlV1+lNctSeXLeiWpmE1lCDHq /++53EJ34OsRd/n246PdtfIfltML73tsmq6S9zTye2zv7LsmE7jgUBaasbv0qSLSybOUvkRx j3xBuK9Ymg/ZXaENOhxwIQ6oQoNLg3ers9t5Xl4NVK6gzzZ2OdTGnuUVhQmi4rbP04R0GJFh AtGLAYUCxlXVZhdPAs4qZaoAEP5nW/u2MyzSaIouwcEIdttAiPZdrJr+a4OGKz88Sn6zqKSa uyUADgX+G8tKUONgZbfz4SSRvlinOgyU2RyyfNS977r/YfaHH+oAxg31yUWPtD/ryfVw69bG vK8RQrZ9+c1vyWBABoQOh5+JHW/AE9Xj5dQatEfWmGO3+/FRo2TIhqZQXXl8PW+jtEjkhgOH OUX5ERzSm6nCcPIw+LUkEINcLc9bw4fv1eOWIdBuCckGM4rWXkLYbqhdSzdWeCsC0tiQk8x7 O1zXRJOKF4rITJd/qX322EH29BR+T9V1Hw7LDSRe+3YxtoXhROZRXjF8QniEHeKVNRUComr6 rWGmuHjsNTQ7twtwnG8xSOfCkYAp9GrbzBkIYX+VFvFQLqVM+It3RAlge/bwpZPvkr3bFsJk 4JS+EAugBIrP0xd9BMOh6Ej5ABEBAAGJAjwEGAEKACYWIQRpYHriYKnzThg62q62i3Xcn9dH 4QUCWpxrVgIbDAUJCWYBgAAKCRC2i3Xcn9dH4ZZsEACoQI109htphVe2AQhJ7wuPo8pIrSFA 0Mb0pfibX/sYw8ZZz/x3ctTI3Ajq2baSaoebIuUyd6oPI7cAzgL4s2zHiZ3ChH2dDxJlOPfk OaiK124DJMPqWiWuxe39tgq23tsPhwcvF+DC+SkJoLWKCYNC06fS3bLktZ0s4lVE5tqfL5ww MvxgxB+6+sWHwZWSv1IwB/geov6zkEhVdkXqrGPE52LyLfU0ACMmihcl0/npsCMZSls0urge CsPMuHPQnmcM2ERbere8i9OdKQDzGBrTbWl9DxNRf4o+cAYirEJM3Kc+ZD2SE34bTSvg3kdQ QZQbj+o+BRcsR0LaGbORkNaMZlp5OuXteL6nG7sbAPn0bjUUlup8CJEXDXENG6LJG1/oVWFq m3OtPyr5UoMQAuhuGx0/Om6AXKr/mk+veuoKWMXkqll045/bYE7bX2A0gkyGE5DdjaiHPmS9 NsWuKDeExLlXZOL1GX+PKjWLADwlv07XHB8Hf6U0/lpf3/mggRtqHyKbHt0iRqYaMC95gVdM rbugxh61U/zxIaweU7VolD5cRrltxqPp5szOwDzw42JYwbpYsXFJXNkuCGCmK1LHcShfEggt fV3g/JKzvNRQn6p1f0frppl/eZ5UvWVKrNERJzcZgkOecxwiK/L/JoGpGfWOqWGsTxe/AnQc Xxj8Dw== Message-ID: <9caa5ea5-e030-adab-516d-df957e07760f@fechner.net> Date: Sat, 13 Jul 2019 10:42:20 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: en-US ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=fechner.net; s=default; t=1563007344; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding:openpgp:openpgp:autocrypt:autocrypt; bh=p0QuFr80dZlNEuVnXT3dKM/xHhBG2RwKe/eGPBkLEzY=; b=RyQaFL/agUTPF1sL1cNqvsDGwRo+kYaRNczcLZrzQZFQnpg1RWNb/UDKuA3l29xBXbOfKT sjLepKu8JMygm4IkAR0qMHpS+CRLxYSAZfQtWI/VSiUMw0r8GbyQssrHabM4TzzV+ls6SI 5qVxSy0ft3KLr0Ca26Fb+0fV65COM34= ARC-Seal: i=1; s=default; d=fechner.net; t=1563007344; a=rsa-sha256; cv=none; b=jioEU9FY5iA8/T6lWuHOds68IwP9qugn+/JC/Z/2Ags0Bc7tuHBxFy4X7KTkuVBoBad9QI 43ll/8q/9hHwJ6G2+5eGoVgepWKNHC1TMI47uyzAYZq6x0JA4MahiNQ+OnPjK+j4DtU6ZK 13GYIkIbEAUaGoYkE6MuZUQ18sjURe4= ARC-Authentication-Results: i=1; ORIGINATING; auth=pass smtp.auth=idefix@fechner.net smtp.mailfrom=idefix@fechner.net X-Rspamd-Server: anny.lostinspace.de X-Rspamd-Queue-Id: BBA8E74FA5 X-Spamd-Bar: -------- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=fechner.net header.s=default header.b=kSR9jmra; dmarc=pass (policy=none) header.from=fechner.net; spf=pass (mx1.freebsd.org: domain of idefix@fechner.net designates 195.30.95.33 as permitted sender) smtp.mailfrom=idefix@fechner.net X-Spamd-Result: default: False [-8.59 / 15.00]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_SPF_ALLOW(-0.20)[+a]; TO_DN_NONE(0.00)[]; RCVD_DKIM_ARC_DNSWL_MED(-0.50)[]; RCVD_COUNT_THREE(0.00)[3]; MX_GOOD(-0.01)[mail.fechner.net]; DKIM_TRACE(0.00)[fechner.net:+]; DMARC_POLICY_ALLOW(-0.50)[fechner.net,none]; RCVD_IN_DNSWL_MED(-0.20)[33.95.30.195.list.dnswl.org : 127.0.6.2]; NEURAL_HAM_SHORT(-0.90)[-0.902,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-2.97)[ip: (-9.87), ipnet: 195.30.0.0/16(-4.94), asn: 5539(-0.05), country: DE(-0.01)]; ASN(0.00)[asn:5539, ipnet:195.30.0.0/16, country:DE]; ARC_ALLOW(-1.00)[i=1]; MID_RHS_MATCH_FROM(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; R_DKIM_ALLOW(-0.20)[fechner.net:s=default]; FROM_HAS_DN(0.00)[]; DWL_DNSWL_MED(0.00)[fechner.net.dwl.dnswl.org : 127.0.6.2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; RCPT_COUNT_ONE(0.00)[1]; RBL_COMPOSITE_RCVD_IN_DNSWL_MED_DWL_DNSWL_MED(0.00)[]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jul 2019 08:42:34 -0000 Dear all, I just look into the port math/jts. The new versions do provide only sources and they build with maven. But as maven fetch all dependencies while building (which is not allowed with poudriere) what is the best here to solve this problem? The current version I have is: https://gitlab.fechner.net/mfechner/Gitlab/tree/12.0/math/jts I tried to search in the ports how other maintainers are solving the problem, but I do not fully understand it. I could also not find anything in the Porters Handbook: https://www.freebsd.org/doc/en/books/porters-handbook/ It looks like, that they build the package, archive this built package and upload it to a remote repository? Any help is really appreciated. Gru=C3=9F Matthias --=20 "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook From owner-freebsd-ports@freebsd.org Sat Jul 13 21:12:25 2019 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 7403115CCBA5 for ; Sat, 13 Jul 2019 21:12:25 +0000 (UTC) (envelope-from roberthuff@rcn.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 E3C176F720 for ; Sat, 13 Jul 2019 21:12:24 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: by mailman.ysv.freebsd.org (Postfix) id A20B615CCBA1; Sat, 13 Jul 2019 21:12: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 7BADC15CCBA0 for ; Sat, 13 Jul 2019 21:12:24 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) (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 B0B736F717 for ; Sat, 13 Jul 2019 21:12:22 +0000 (UTC) (envelope-from roberthuff@rcn.com) DKIM-Signature: v=1; a=rsa-sha1; d=rcn.com; s=20180516; c=relaxed/simple; q=dns/txt; i=@rcn.com; t=1563052336; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=9XAPDt5yBSgIUNdHk6kQzz+UEag=; b=maXa+R8Z721LLdfPOW0Ss+8YcoQ2Qx0jIuUhgAJw778MEmu95wwsxIPjZWJcyhb5 m0I8gwLylTtpw6jsW08D9Eyq12GLFVM5flJQ0n5452q4DFcsR6G3TUg7BJHyj7fF T78a8CUmnWrpeFBh6Hm7nJmuF9ulVgxvkDkrF7dDOz6bTF1vmMvNsxQihSRZT3A/ v5a0K6AbtVIROqL2XGTLNVf3HWbu5xaImBNf5YD7wR0z94oNj86fx4xCj0K4XVLz x1HqTvEN6Sxi0nb1u367HCHqB3+LFyQEm0p+9Op+AdrBOnDYTDxEusIE37QG5DWj +jxapY6/283cw9W1wZ3agw==; X_CMAE_Category: , , X-CNFS-Analysis: v=2.2 cv=aKGykv1m c=1 sm=1 tr=0 a=9TgA2UwI6Wy+6BV4wQM/cQ==:117 a=9TgA2UwI6Wy+6BV4wQM/cQ==:17 a=jpOVt7BSZ2e4Z31A5e1TngXxSK0=:19 a=KGjhK52YXX0A:10 a=kj9zAlcOel0A:10 a=XRQyMpdBKAEA:10 a=0o9FgrsRnhwA:10 a=48faUk6PgeAA:10 a=OA2lqS22AAAA:8 a=YVPu-72G3pvB3yFldDQA:9 a=CjuIK1q_8ugA:10 a=T_IqRAL-X98A:10 a=047cQLXTEfCjWPUe_kQW:22 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine X-Authed-Username: cm9iZXJ0aHVmZkByY24uY29t Authentication-Results: smtp03.rcn.cmh.synacor.com header.from=roberthuff@rcn.com; sender-id=softfail Authentication-Results: smtp03.rcn.cmh.synacor.com smtp.user=roberthuff; auth=pass (PLAIN) Received: from [209.6.230.48] ([209.6.230.48:13064] helo=jerusalem.litteratus.org.litteratus.org) by smtp.rcn.com (envelope-from ) (ecelerity 3.6.25.56547 r(Core:3.6.25.0)) with ESMTPSA (cipher=AES256-GCM-SHA384) id 59/4A-13517-0394A2D5; Sat, 13 Jul 2019 17:12:16 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <23850.18735.702545.438013@jerusalem.litteratus.org> Date: Sat, 13 Jul 2019 17:12:15 -0400 From: Robert Huff To: Jan Beich Cc: Robert Huff , ports@freebsd.org Subject: Re: "make index" fails In-Reply-To: References: <201907120401.x6C410me065075@jerusalem.litteratus.org> <23848.29789.756195.311259@jerusalem.litteratus.org> X-Mailer: VM 8.2.0b under 26.2 (amd64-portbld-freebsd13.0) X-Rspamd-Queue-Id: B0B736F717 X-Spamd-Bar: ------- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=rcn.com header.s=20180516 header.b=maXa+R8Z; dmarc=pass (policy=none) header.from=rcn.com; spf=pass (mx1.freebsd.org: domain of roberthuff@rcn.com designates 69.168.97.78 as permitted sender) smtp.mailfrom=roberthuff@rcn.com X-Spamd-Result: default: False [-7.68 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; R_DKIM_ALLOW(-0.20)[rcn.com:s=20180516]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; R_SPF_ALLOW(-0.20)[+ip4:69.168.97.0/24]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; IP_SCORE(-2.79)[ip: (-9.34), ipnet: 69.168.97.0/24(-4.61), asn: 36271(0.03), country: US(-0.06)]; TO_DN_SOME(0.00)[]; DWL_DNSWL_LOW(-1.00)[rcn.com.dwl.dnswl.org : 127.0.5.1]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[rcn.com:+]; MX_GOOD(-0.01)[mx.rcn.com]; DMARC_POLICY_ALLOW(-0.50)[rcn.com,none]; NEURAL_HAM_SHORT(-0.78)[-0.776,0]; RCVD_IN_DNSWL_LOW(-0.10)[78.97.168.69.list.dnswl.org : 127.0.5.1]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:36271, ipnet:69.168.97.0/24, country:US]; RCVD_COUNT_TWO(0.00)[2]; RCVD_TLS_ALL(0.00)[] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jul 2019 21:12:25 -0000 Jan Beich writes: > Robert Huff writes: > > >> --- describe.x11-wm --- > >> make_index: /usr/ports/x11/nvidia-driver: no entry for /usr/ports/graphics/linux-c6-libglvnd > > Could be related to recent DEFAULT_VERSIONS+=linux=c6_64 > removal. See UPDATING. That fixed it. Thanks. Respectfully, Robert "looking for a convenient brick wall" Huff From owner-freebsd-ports@freebsd.org Sat Jul 13 22:24:09 2019 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 5B0D215CEB66 for ; Sat, 13 Jul 2019 22:24:09 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from mail-vs1-xe43.google.com (mail-vs1-xe43.google.com [IPv6:2607:f8b0:4864:20::e43]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0517F721A2 for ; Sat, 13 Jul 2019 22:24:06 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by mail-vs1-xe43.google.com with SMTP id k9so8993655vso.5 for ; Sat, 13 Jul 2019 15:24:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chen-org-nz.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=35ifODgbwZsnu7ZeeGmGW7P+mzcEBPuSF2C2v3VCUiU=; b=fSOtsXkwd6ZmfIg8ZNm34hzx2XEBSjlZkoQK33qkNcVxBBLz2c06d8QuDSXV4/aOYi 2SJDsyroAlfq5aBew4Fkk/VL3C433jowptzEtgfJt+grwnrfg15UisPl6xT4Iu4/hFdX 4lClxKpSqkXMlCmmb5MwbPSetoZyaLEVnIAVR21VOJFWrzjwOrjOkwmrIP3ufb8fazVD SBrOB+RhV8haPegAB2OwiE+E72tzEY0EpVzDQkwNvosfcAobFonbUJWlMA8G+hxLQfvt XrX9tj7DEmnrXGmeK98cvZg/eYx/dwfMxqllpxcomOsJyisgE1UAxsI+obu/e7FEyAq5 /wAQ== 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=35ifODgbwZsnu7ZeeGmGW7P+mzcEBPuSF2C2v3VCUiU=; b=IxViHJSUHjjsOA6Z/rjGoLyNc3HJ0arHnSKPNsNXlBhG0UAT0nQNM2CiHtOo63IIei D4qGpDTXiVkZi0Ao7YyjF3qRBcgSmem4E8k2tRgG6pFtK988LgbX7HebDx00vNYOW6Ki u2x5/i3IdPhpuyPxtdt5er1wVbc4IqjrfN8qrI/iGT0awzc+GcZdH724UiCVEgL8K0Rw ElCPJgaKe7CTXBLnCh/wHkamWlxhpdiMaSt+JAT5aLVGtgcQqrGEeQnEQql7p10G+KtJ uEhl7zIY0Fa3yV3OpEy59niYfyI5jatoPQckHv8446zG9xGWd/HQwC4HS4v+6suPNi8+ 6KtQ== X-Gm-Message-State: APjAAAXe9B4jvqOOZIkXnn7j0RK8N9vfvfrMXTq290S3i0Iu9VCGX3ZC 2VXobhk2LEDi9LLnjj6nzB4yLf6lmyDqMtvV1Ss0dw== X-Google-Smtp-Source: APXvYqwFNNd0sBFZ2SWt78FSuXDeKyhy7ocErks2J8HjvmPr2tUuL8es7lwzFQjD56QdMyeWqo6+WuDpdr9OEgBCic4= X-Received: by 2002:a67:dd0d:: with SMTP id y13mr12192835vsj.210.1563056645585; Sat, 13 Jul 2019 15:24:05 -0700 (PDT) MIME-Version: 1.0 References: <9caa5ea5-e030-adab-516d-df957e07760f@fechner.net> In-Reply-To: <9caa5ea5-e030-adab-516d-df957e07760f@fechner.net> From: Jonathan Chen Date: Sun, 14 Jul 2019 10:23:49 +1200 Message-ID: Subject: Re: How to package maven based ports To: Matthias Fechner Cc: freebsd-ports@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 0517F721A2 X-Spamd-Bar: --- Authentication-Results: mx1.freebsd.org; dkim=pass header.d=chen-org-nz.20150623.gappssmtp.com header.s=20150623 header.b=fSOtsXkw X-Spamd-Result: default: False [-3.30 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; R_DKIM_ALLOW(-0.20)[chen-org-nz.20150623.gappssmtp.com:s=20150623]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; MIME_GOOD(-0.10)[text/plain]; PREVIOUSLY_DELIVERED(0.00)[freebsd-ports@freebsd.org]; DMARC_NA(0.00)[chen.org.nz]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[chen-org-nz.20150623.gappssmtp.com:+]; RCPT_COUNT_TWO(0.00)[2]; RCVD_IN_DNSWL_NONE(0.00)[3.4.e.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.b.8.f.7.0.6.2.list.dnswl.org : 127.0.5.0]; MX_GOOD(-0.01)[alt1.aspmx.l.google.com]; R_SPF_NA(0.00)[]; NEURAL_HAM_SHORT(-0.32)[-0.317,0]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_TLS_LAST(0.00)[]; ASN(0.00)[asn:15169, ipnet:2607:f8b0::/32, country:US]; RCVD_COUNT_TWO(0.00)[2]; IP_SCORE(-0.67)[ip: (2.31), ipnet: 2607:f8b0::/32(-3.18), asn: 15169(-2.44), country: US(-0.06)] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jul 2019 22:24:09 -0000 On Sat, 13 Jul 2019 at 20:45, Matthias Fechner wrote: > > Dear all, > > I just look into the port math/jts. > The new versions do provide only sources and they build with maven. > > But as maven fetch all dependencies while building (which is not allowed > with poudriere) what is the best here to solve this problem? > > The current version I have is: > https://gitlab.fechner.net/mfechner/Gitlab/tree/12.0/math/jts > > I tried to search in the ports how other maintainers are solving the > problem, but I do not fully understand it. Have a look at the java/eclipse port. It uses a pre-warmed maven repository that is fetched from github. You can create a localised repository that only contains the dependancies required by the project by specifying: -D maven.repo.local=/my/local/repo Once your project builds correctly, you can create a repo as a project on Github with its contents that can be retrieved with the port for the build. Cheers. -- Jonathan Chen