From nobody Wed Jan 18 20:35:30 2023 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4NxyFM3xn3z2swZp; Wed, 18 Jan 2023 20:35:35 +0000 (UTC) (envelope-from diizzy@FreeBSD.org) Received: from relay9-d.mail.gandi.net (relay9-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::229]) (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 4NxyFL6V7qz40Hw; Wed, 18 Jan 2023 20:35:34 +0000 (UTC) (envelope-from diizzy@FreeBSD.org) Authentication-Results: mx1.freebsd.org; none Received: (Authenticated sender: daniel.engberg@pyret.net) by mail.gandi.net (Postfix) with ESMTPA id E4D56FF808; Wed, 18 Jan 2023 20:35:30 +0000 (UTC) List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Date: Wed, 18 Jan 2023 21:35:30 +0100 From: Daniel Engberg To: Neel Chauhan Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Subject: Re: git: abb6fee1de34 - main - www/vger: Update to 2.0.1 In-Reply-To: <202301182023.30IKN11c082117@gitrepo.freebsd.org> References: <202301182023.30IKN11c082117@gitrepo.freebsd.org> Message-ID: X-Sender: diizzy@FreeBSD.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4NxyFL6V7qz40Hw X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:29169, ipnet:2001:4b98::/32, country:FR] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On 2023-01-18 21:23, Neel Chauhan wrote: > The branch main has been updated by nc: > > URL: > https://cgit.FreeBSD.org/ports/commit/?id=abb6fee1de34a76b17a85398d520f2684c16680a > > commit abb6fee1de34a76b17a85398d520f2684c16680a > Author: Neel Chauhan > AuthorDate: 2023-01-18 20:21:50 +0000 > Commit: Neel Chauhan > CommitDate: 2023-01-18 20:21:50 +0000 > > www/vger: Update to 2.0.1 > --- > www/vger/Makefile | 2 +- > www/vger/distinfo | 6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/www/vger/Makefile b/www/vger/Makefile > index 4cf63ea3f2d2..b89983c87ec2 100644 > --- a/www/vger/Makefile > +++ b/www/vger/Makefile > @@ -1,5 +1,5 @@ > PORTNAME= vger > -PORTVERSION= 2.0.0 > +PORTVERSION= 2.0.1 > CATEGORIES= www > MASTER_SITES= https://tildegit.org/solene/vger/archive/ > DISTFILES= ${PORTVERSION}.tar.gz > diff --git a/www/vger/distinfo b/www/vger/distinfo > index fce1dd64d644..7fef73883c30 100644 > --- a/www/vger/distinfo > +++ b/www/vger/distinfo > @@ -1,3 +1,3 @@ > -TIMESTAMP = 1665347828 > -SHA256 (2.0.0.tar.gz) = > b1db79c25caf5543ab9c8bda268ed3bffc2d7edf3d719acc75b7aabe24bbdb6a > -SIZE (2.0.0.tar.gz) = 15370 > +TIMESTAMP = 1674073246 > +SHA256 (2.0.1.tar.gz) = > bba0f595cf6ded1ee423f1ec5ef078f06faf4bbe1d2b8fb63add7b6ea2f836ed > +SIZE (2.0.1.tar.gz) = 15372 Hi, You need to fix this port We can't have distfiles in root dir containing just a version number since it would for sure clash with other ports (no ports should every do this however) and it takes unnecessary effort to determine origin of distfile. Either roll your own tarball or define DIST_SUBDIR Please also try to follow Porters Handbook and use DISTVERSION whenver possible. Example: DIST_SUBDIR= ${PORTNAME} Best regards, Daniel