public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-process/htop: htop-1.0.ebuild ChangeLog
@ 2011-11-21 17:58 Christian Ruppert (idl0r)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Ruppert (idl0r) @ 2011-11-21 17:58 UTC (permalink / raw
  To: gentoo-commits

idl0r       11/11/21 17:58:14

  Modified:             ChangeLog
  Added:                htop-1.0.ebuild
  Log:
  Version bump, bug 391211.
  
  (Portage version: 2.2.0_alpha76/cvs/Linux x86_64)

Revision  Changes    Path
1.102                sys-process/htop/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	19 Nov 2011 17:45:58 -0000	1.101
+++ ChangeLog	21 Nov 2011 17:58:14 -0000	1.102
@@ -1,6 +1,11 @@
 # ChangeLog for sys-process/htop
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.101 2011/11/19 17:45:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.102 2011/11/21 17:58:14 idl0r Exp $
+
+*htop-1.0 (21 Nov 2011)
+
+  21 Nov 2011; Christian Ruppert <idl0r@gentoo.org> +htop-1.0.ebuild:
+  Version bump, bug 391211.
 
   19 Nov 2011; Jeroen Roovers <jer@gentoo.org> htop-0.9-r2.ebuild:
   Stable for HPPA (bug #390969).



1.1                  sys-process/htop/htop-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.ebuild?rev=1.1&content-type=text/plain

Index: htop-1.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.ebuild,v 1.1 2011/11/21 17:58:14 idl0r Exp $

EAPI=4

inherit autotools eutils flag-o-matic multilib

DESCRIPTION="interactive process viewer"
HOMEPAGE="http://htop.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
IUSE="debug elibc_FreeBSD kernel_linux openvz unicode vserver"

RDEPEND="sys-libs/ncurses[unicode?]"
DEPEND="${RDEPEND}"

DOCS=( ChangeLog README )

pkg_setup() {
	if use elibc_FreeBSD && ! [[ -f ${ROOT}/proc/stat && -f ${ROOT}/proc/meminfo ]]; then
		eerror
		eerror "htop needs /proc mounted to compile and work, to mount it type"
		eerror "mount -t linprocfs none /proc"
		eerror "or uncomment the example in /etc/fstab"
		eerror
		die "htop needs /proc mounted"
	fi

	if ! has_version sys-process/lsof; then
		ewarn "To use lsof features in htop(what processes are accessing"
		ewarn "what files), you must have sys-process/lsof installed."
	fi
}

src_prepare() {
	sed -i -e '1c\#!'"${EPREFIX}"'/usr/bin/python' \
		scripts/MakeHeader.py || die
}

src_configure() {
	use debug && append-flags -DDEBUG

	econf \
		$(use_enable openvz) \
		$(use_enable kernel_linux cgroup) \
		$(use_enable vserver) \
		$(use_enable unicode) \
		--enable-taskstats
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-process/htop: htop-1.0.ebuild ChangeLog
@ 2011-12-11  0:16 Christian Ruppert (idl0r)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Ruppert (idl0r) @ 2011-12-11  0:16 UTC (permalink / raw
  To: gentoo-commits

idl0r       11/12/11 00:16:01

  Modified:             htop-1.0.ebuild ChangeLog
  Log:
  Remove debug useflag as it still causes a lot of trouble, bug 393653.
  
  (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sys-process/htop/htop-1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/htop-1.0.ebuild?r1=1.1&r2=1.2

Index: htop-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- htop-1.0.ebuild	21 Nov 2011 17:58:14 -0000	1.1
+++ htop-1.0.ebuild	11 Dec 2011 00:16:01 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.ebuild,v 1.1 2011/11/21 17:58:14 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/htop-1.0.ebuild,v 1.2 2011/12/11 00:16:01 idl0r Exp $
 
 EAPI=4
 
@@ -13,7 +13,7 @@
 LICENSE="BSD GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
-IUSE="debug elibc_FreeBSD kernel_linux openvz unicode vserver"
+IUSE="elibc_FreeBSD kernel_linux openvz unicode vserver"
 
 RDEPEND="sys-libs/ncurses[unicode?]"
 DEPEND="${RDEPEND}"
@@ -42,7 +42,6 @@
 }
 
 src_configure() {
-	use debug && append-flags -DDEBUG
 
 	econf \
 		$(use_enable openvz) \



1.105                sys-process/htop/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/htop/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	3 Dec 2011 10:50:29 -0000	1.104
+++ ChangeLog	11 Dec 2011 00:16:01 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for sys-process/htop
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.104 2011/12/03 10:50:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-process/htop/ChangeLog,v 1.105 2011/12/11 00:16:01 idl0r Exp $
+
+  11 Dec 2011; Christian Ruppert <idl0r@gentoo.org> htop-1.0.ebuild:
+  Remove debug useflag as it still causes a lot of trouble, bug 393653.
 
   03 Dec 2011; Markus Meier <maekke@gentoo.org> htop-0.9-r2.ebuild:
   arm stable, bug #390969






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-11  0:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-21 17:58 [gentoo-commits] gentoo-x86 commit in sys-process/htop: htop-1.0.ebuild ChangeLog Christian Ruppert (idl0r)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-11  0:16 Christian Ruppert (idl0r)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox