From 1a1e2824cc25ff47a7d74db14b2b692c046863b9 Mon Sep 17 00:00:00 2001 From: Kacper Kowalik Date: Mon, 26 Aug 2013 17:54:58 +0000 Subject: Version bump, drop old (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 895192F9) --- sys-process/glances/ChangeLog | 8 ++++- sys-process/glances/glances-1.6.1.ebuild | 51 -------------------------------- sys-process/glances/glances-1.7.1.ebuild | 50 +++++++++++++++++++++++++++++++ sys-process/glances/glances-1.7.ebuild | 3 +- 4 files changed, 58 insertions(+), 54 deletions(-) delete mode 100644 sys-process/glances/glances-1.6.1.ebuild create mode 100644 sys-process/glances/glances-1.7.1.ebuild (limited to 'sys-process') diff --git a/sys-process/glances/ChangeLog b/sys-process/glances/ChangeLog index 4b7d4c8e7c84..2889a5bbc379 100644 --- a/sys-process/glances/ChangeLog +++ b/sys-process/glances/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-process/glances # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/ChangeLog,v 1.10 2013/08/12 17:06:24 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/ChangeLog,v 1.11 2013/08/26 17:54:58 xarthisius Exp $ + +*glances-1.7.1 (26 Aug 2013) + + 26 Aug 2013; Kacper Kowalik +glances-1.7.1.ebuild, + -glances-1.6.1.ebuild, glances-1.7.ebuild: + Version bump, drop old *glances-1.7 (12 Aug 2013) diff --git a/sys-process/glances/glances-1.6.1.ebuild b/sys-process/glances/glances-1.6.1.ebuild deleted file mode 100644 index bf589a84f686..000000000000 --- a/sys-process/glances/glances-1.6.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/glances-1.6.1.ebuild,v 1.4 2013/08/08 07:33:32 pinkbyte Exp $ - -EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) -PYTHON_REQ_USE="ncurses" - -inherit distutils-r1 linux-info - -DESCRIPTION="CLI curses based monitoring tool" -HOMEPAGE="https://github.com/nicolargo/glances/blob/master/README.md -http://pypi.python.org/pypi/Glances" -SRC_URI="https://github.com/nicolargo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} - dev-python/psutil[${PYTHON_USEDEP}]" - -CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS" - -pkg_setup() { - linux-info_pkg_setup -} - -python_prepare_all() { - sed -e "s:share/doc/glances:share/doc/${PF}:g" \ - -e "/COPYING/d" \ - -e "/etc\/glances/d" \ - -e "s:/etc:${EPREFIX}/etc:" \ - -i setup.py || die - distutils-r1_python_prepare_all -} - -python_install_all() { - insinto /etc/${PN} - doins ${PN}/conf/${PN}.conf - distutils-r1_python_install_all -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "${PN} can gain additional functionality with following packages:" - elog " dev-python/jinja - export statistics to HTML" - fi -} diff --git a/sys-process/glances/glances-1.7.1.ebuild b/sys-process/glances/glances-1.7.1.ebuild new file mode 100644 index 000000000000..6575c4204365 --- /dev/null +++ b/sys-process/glances/glances-1.7.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/glances-1.7.1.ebuild,v 1.1 2013/08/26 17:54:58 xarthisius Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) +PYTHON_REQ_USE="ncurses" + +inherit distutils-r1 linux-info + +MYPN=Glances +MYP=${MYPN}-${PV} + +DESCRIPTION="CLI curses based monitoring tool" +HOMEPAGE="https://github.com/nicolargo/glances" +SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + dev-python/psutil[${PYTHON_USEDEP}]" + +CONFIG_CHECK="~TASK_IO_ACCOUNTING ~TASK_DELAY_ACCT ~TASKSTATS" + +S="${WORKDIR}/${MYP}" + +pkg_setup() { + linux-info_pkg_setup +} + +python_prepare_all() { + sed -e "s:share/doc/glances:share/doc/${PF}:g" \ + -e "s/'COPYING',//" \ + -e "s:/etc:${EPREFIX}/etc:" \ + -i setup.py || die + distutils-r1_python_prepare_all +} + +pkg_postinst() { + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog "${PN} can gain additional functionality with following packages:" + elog " dev-python/jinja - export statistics to HTML" + elog " app-admin/hddtemp - monitor hard drive temperatures" + fi +} diff --git a/sys-process/glances/glances-1.7.ebuild b/sys-process/glances/glances-1.7.ebuild index 384eafaf12c9..d263bcc5640c 100644 --- a/sys-process/glances/glances-1.7.ebuild +++ b/sys-process/glances/glances-1.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/glances-1.7.ebuild,v 1.1 2013/08/12 17:06:24 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/glances/glances-1.7.ebuild,v 1.2 2013/08/26 17:54:58 xarthisius Exp $ EAPI=5 @@ -16,7 +16,6 @@ DESCRIPTION="CLI curses based monitoring tool" HOMEPAGE="https://github.com/nicolargo/glances" SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz" - LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" -- cgit v1.2.3-65-gdbad