Gentoo Archives: gentoo-commits

From: Slawek Lis <slis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ntopng/
Date: Wed, 28 Aug 2019 11:11:52
Message-Id: 1566990695.b476720f82f6376175a6d75420593c4a4c2ec574.slis@gentoo
1 commit: b476720f82f6376175a6d75420593c4a4c2ec574
2 Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 28 11:11:21 2019 +0000
4 Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 28 11:11:35 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b476720f
7
8 net-analyzer/ntopng: fixed version info
9
10 It seems that version format is strictly required, and was
11 wrongly recognized as not being latest.
12 Upgraded according to autogen.sh script.
13
14 Package-Manager: Portage-2.3.73, Repoman-2.3.17
15 Signed-off-by: Slawek Lis <slis <AT> gentoo.org>
16
17 net-analyzer/ntopng/ntopng-3.8.ebuild | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/net-analyzer/ntopng/ntopng-3.8.ebuild b/net-analyzer/ntopng/ntopng-3.8.ebuild
21 index d494609c7f0..132b23563ef 100644
22 --- a/net-analyzer/ntopng/ntopng-3.8.ebuild
23 +++ b/net-analyzer/ntopng/ntopng-3.8.ebuild
24 @@ -39,7 +39,7 @@ PATCHES=(
25
26 src_prepare() {
27 default
28 - sed -e "s/@VERSION@/${PV}/g" -e "s/@SHORT_VERSION@/${PV}/g" < "${S}/configure.seed" > "${S}/configure.ac" > configure.ac
29 + sed -e "s/@VERSION@/${PV}.$(date +%y%m%d)/g" -e "s/@SHORT_VERSION@/${PV}/g" < "${S}/configure.seed" > "${S}/configure.ac" > configure.ac
30 eapply_user
31 eautoreconf
32 }