From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 88E2E13881B for ; Wed, 23 Sep 2015 06:04:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 250F5E07A0; Wed, 23 Sep 2015 06:04:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5411E07A0 for ; Wed, 23 Sep 2015 06:04:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B62A53404A5 for ; Wed, 23 Sep 2015 06:04:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BEE6183 for ; Wed, 23 Sep 2015 06:04:00 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1442988228.ed0e1f5f2ad75a75960cff0cd43dd747bd040055.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/rrdtool/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/rrdtool/rrdtool-1.5.4.ebuild X-VCS-Directories: net-analyzer/rrdtool/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: ed0e1f5f2ad75a75960cff0cd43dd747bd040055 X-VCS-Branch: master Date: Wed, 23 Sep 2015 06:04:00 +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-Archives-Salt: 513c0224-d3eb-438b-a8f1-d6a094e5be16 X-Archives-Hash: c07fc777c680aab2cadfdc9d2967353e commit: ed0e1f5f2ad75a75960cff0cd43dd747bd040055 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Sep 23 06:03:48 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Sep 23 06:03:48 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0e1f5f net-analyzer/rrdtool: Remove <1.3 advice (bug #561228). Package-Manager: portage-2.2.20.1 net-analyzer/rrdtool/rrdtool-1.5.4.ebuild | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild b/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild index dfa9e20..43c9783 100644 --- a/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.5.4.ebuild @@ -8,7 +8,7 @@ DISTUTILS_OPTIONAL=true DISTUTILS_SINGLE_IMPL=true GENTOO_DEPEND_ON_PERL=no PYTHON_COMPAT=( python2_7 ) -inherit autotools eutils perl-module distutils-r1 flag-o-matic multilib +inherit autotools eutils perl-module distutils-r1 flag-o-matic multilib versionator DESCRIPTION="A system to store and display time-series data" HOMEPAGE="http://oss.oetiker.ch/rrdtool/" @@ -171,19 +171,3 @@ src_install() { use python && distutils-r1_src_install } - -pkg_postinst() { - if [[ "${REPLACING_VERSIONS}" -le 1.3 ]]; then - ewarn "Since version 1.3, rrdtool dump emits completely legal xml. Basically this" - ewarn "means that it contains an xml header and a DOCTYPE definition. Unfortunately" - ewarn "this causes older versions of rrdtool restore to be unhappy." - ewarn - ewarn "To restore a new dump with an old rrdtool restore version, either remove" - ewarn "the xml header and the doctype by hand (both on the first line of the dump)" - ewarn "or use rrdtool dump --no-header." - ewarn - ewarn ">=net-analyzer/rrdtool-1.3 does not have any default font bundled. Thus if" - ewarn ">you've upgraded from rrdtool-1.2.x and don't have any font installed to make" - ewarn ">lables visible, please, install some font, e.g. media-fonts/dejavu." - fi -}