Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/rrdtool/
Date: Wed, 23 Sep 2015 06:04:08
Message-Id: 1442988228.ed0e1f5f2ad75a75960cff0cd43dd747bd040055.jer@gentoo
1 commit: ed0e1f5f2ad75a75960cff0cd43dd747bd040055
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 23 06:03:48 2015 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 23 06:03:48 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0e1f5f
7
8 net-analyzer/rrdtool: Remove <1.3 advice (bug #561228).
9
10 Package-Manager: portage-2.2.20.1
11
12 net-analyzer/rrdtool/rrdtool-1.5.4.ebuild | 18 +-----------------
13 1 file changed, 1 insertion(+), 17 deletions(-)
14
15 diff --git a/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild b/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild
16 index dfa9e20..43c9783 100644
17 --- a/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild
18 +++ b/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild
19 @@ -8,7 +8,7 @@ DISTUTILS_OPTIONAL=true
20 DISTUTILS_SINGLE_IMPL=true
21 GENTOO_DEPEND_ON_PERL=no
22 PYTHON_COMPAT=( python2_7 )
23 -inherit autotools eutils perl-module distutils-r1 flag-o-matic multilib
24 +inherit autotools eutils perl-module distutils-r1 flag-o-matic multilib versionator
25
26 DESCRIPTION="A system to store and display time-series data"
27 HOMEPAGE="http://oss.oetiker.ch/rrdtool/"
28 @@ -171,19 +171,3 @@ src_install() {
29
30 use python && distutils-r1_src_install
31 }
32 -
33 -pkg_postinst() {
34 - if [[ "${REPLACING_VERSIONS}" -le 1.3 ]]; then
35 - ewarn "Since version 1.3, rrdtool dump emits completely legal xml. Basically this"
36 - ewarn "means that it contains an xml header and a DOCTYPE definition. Unfortunately"
37 - ewarn "this causes older versions of rrdtool restore to be unhappy."
38 - ewarn
39 - ewarn "To restore a new dump with an old rrdtool restore version, either remove"
40 - ewarn "the xml header and the doctype by hand (both on the first line of the dump)"
41 - ewarn "or use rrdtool dump --no-header."
42 - ewarn
43 - ewarn ">=net-analyzer/rrdtool-1.3 does not have any default font bundled. Thus if"
44 - ewarn ">you've upgraded from rrdtool-1.2.x and don't have any font installed to make"
45 - ewarn ">lables visible, please, install some font, e.g. media-fonts/dejavu."
46 - fi
47 -}