From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D101138334 for ; Wed, 28 Aug 2019 11:11:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D148E083B; Wed, 28 Aug 2019 11:11:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 240F7E083B for ; Wed, 28 Aug 2019 11:11:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73AE234A4E3 for ; Wed, 28 Aug 2019 11:11:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC8EA4D3 for ; Wed, 28 Aug 2019 11:11:46 +0000 (UTC) From: "Slawek Lis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Slawek Lis" Message-ID: <1566990695.b476720f82f6376175a6d75420593c4a4c2ec574.slis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ntopng/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ntopng/ntopng-3.8.ebuild X-VCS-Directories: net-analyzer/ntopng/ X-VCS-Committer: slis X-VCS-Committer-Name: Slawek Lis X-VCS-Revision: b476720f82f6376175a6d75420593c4a4c2ec574 X-VCS-Branch: master Date: Wed, 28 Aug 2019 11:11:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d207dfe7-8f2d-4706-a20e-d2ce6d015532 X-Archives-Hash: 8b46a32b7c992686e3e63a653e8027b3 commit: b476720f82f6376175a6d75420593c4a4c2ec574 Author: Slawomir Lis gentoo org> AuthorDate: Wed Aug 28 11:11:21 2019 +0000 Commit: Slawek Lis gentoo org> CommitDate: Wed Aug 28 11:11:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b476720f net-analyzer/ntopng: fixed version info It seems that version format is strictly required, and was wrongly recognized as not being latest. Upgraded according to autogen.sh script. Package-Manager: Portage-2.3.73, Repoman-2.3.17 Signed-off-by: Slawek Lis gentoo.org> net-analyzer/ntopng/ntopng-3.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-analyzer/ntopng/ntopng-3.8.ebuild b/net-analyzer/ntopng/ntopng-3.8.ebuild index d494609c7f0..132b23563ef 100644 --- a/net-analyzer/ntopng/ntopng-3.8.ebuild +++ b/net-analyzer/ntopng/ntopng-3.8.ebuild @@ -39,7 +39,7 @@ PATCHES=( src_prepare() { default - sed -e "s/@VERSION@/${PV}/g" -e "s/@SHORT_VERSION@/${PV}/g" < "${S}/configure.seed" > "${S}/configure.ac" > configure.ac + sed -e "s/@VERSION@/${PV}.$(date +%y%m%d)/g" -e "s/@SHORT_VERSION@/${PV}/g" < "${S}/configure.seed" > "${S}/configure.ac" > configure.ac eapply_user eautoreconf }