From owner-svn-ports-head@freebsd.org Sat May 18 16:51:41 2019 Return-Path: Delivered-To: svn-ports-head@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 E7816159235C; Sat, 18 May 2019 16:51:40 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (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 81FE889380; Sat, 18 May 2019 16:51:40 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 8DEC133E01; Sat, 18 May 2019 12:51:38 -0400 (EDT) Received: from [10.130.242.141] (unknown [195.77.194.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id 4F17033DE7; Sat, 18 May 2019 12:51:37 -0400 (EDT) Date: Sat, 18 May 2019 18:51:34 +0200 (CEST) From: Gerald Pfeifer To: Alexey Dokuchaev cc: "Jason W. Bacon" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r501873 - in head/biology: . gemma gemma/files In-Reply-To: <20190518131804.GA12903@FreeBSD.org> Message-ID: References: <201905171445.x4HEjKE4084764@repo.freebsd.org> <20190518102522.GA45838@FreeBSD.org> <205369ac-7666-0d45-7f76-a473915a0eb9@gmail.com> <20190518131804.GA12903@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 81FE889380 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_SHORT(-0.98)[-0.977,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 May 2019 16:51:41 -0000 On Sat, 18 May 2019, Alexey Dokuchaev wrote: > Vast majority of upstream names use mixed case (most common is first > capital letter), but we and GNU/Linux people don't do that: look at > package names of Firefox, DeaDBeeF, PostgreSQL, etc. On my notebook: ~> rpm -qa | grep -i mozilla | sort MozillaFirefox-66.0.5-1.1.x86_64 MozillaFirefox-branding-openSUSE-60-2.1.x86_64 MozillaThunderbird-60.6.1-3.2.x86_64 ca-certificates-mozilla-2.30-1.1.noarch mozilla-nspr-4.20-1.2.x86_64 mozilla-nss-3.42.1-1.1.x86_64 mozilla-nss-certs-3.42.1-1.1.x86_64 mozilla-nss-tools-3.42.1-1.1.x86_64 Alas indeed only few package overall, so clearly not the norm: ~> rpm -qa | egrep ^[A-Z] | wc -l 35 Though (due to Perl packages, libKF5*,...): ~> rpm -qa | egrep [A-Z] | wc -l 449 Gerald