public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2009-12-22 14:57 Peter Volkov (pva)
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Volkov (pva) @ 2009-12-22 14:57 UTC (permalink / raw
  To: gentoo-commits

pva         09/12/22 14:57:18

  Modified:             ChangeLog
  Added:                oprofile-0.9.6.ebuild
  Log:
  Version bump, bug #297609.
  (Portage version: 2.1.7.15/cvs/Linux x86_64)

Revision  Changes    Path
1.60                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	2 Aug 2009 22:57:48 -0000	1.59
+++ ChangeLog	22 Dec 2009 14:57:18 -0000	1.60
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.59 2009/08/02 22:57:48 spock Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.60 2009/12/22 14:57:18 pva Exp $
+
+*oprofile-0.9.6 (22 Dec 2009)
+
+  22 Dec 2009; Peter Volkov <pva@gentoo.org> +oprofile-0.9.6.ebuild:
+  Version bump, bug #297609.
 
 *oprofile-0.9.5 (02 Aug 2009)
 



1.1                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.1&content-type=text/plain

Index: oprofile-0.9.6.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.1 2009/12/22 14:57:18 pva Exp $

EAPI=1

inherit qt3 linux-info

DESCRIPTION="A transparent low-overhead system-wide profiler"
HOMEPAGE="http://oprofile.sourceforge.net"
SRC_URI="mirror://sourceforge/oprofile/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="qt3"
DEPEND=">=dev-libs/popt-1.7-r1
	>=sys-devel/binutils-2.14.90.0.6-r3
	>=sys-libs/glibc-2.3.2-r1
	qt3? ( x11-libs/qt:3 )"

pkg_setup() {
	linux-info_pkg_setup
	if ! linux_chkconfig_present OPROFILE; then
		elog "In order for oprofile to work, you need to configure your kernel"
		elog "with CONFIG_OPROFILE set to 'm' or 'y'."
	fi
}

src_compile() {
	local myconf=""

	if use qt3
	then
		REALHOME="$HOME"
		mkdir -p "$T"/fakehome/.kde
		mkdir -p "$T"/fakehome/.qt
		export HOME="$T/fakehome"
		addwrite "${QTDIR}/etc/settings"

		# things that should access the real homedir
		[ -d "$REALHOME/.ccache" ] && ln -sf "$REALHOME/.ccache" "$HOME/"
	else
		myconf="${myconf} --with-qt-dir=/void"
	fi

	myconf="${myconf} --with-x"

	case ${KV_FULL} in
	2.2.*|2.4.*) myconf="${myconf} --with-linux=${KV_DIR}";;
	2.5.*|2.6.*) myconf="${myconf} --with-kernel-support";;
	*) die "Kernel version '${KV_FULL}' not supported";;
	esac
	econf ${myconf} || die "econf failed"

	local mymake=""

	sed -i -e "s,depmod -a,:,g" Makefile
	emake ${mymake} || die "emake failed"
}

src_install() {
	local myinst=""

	myinst="${myinst} MODINSTALLDIR=${D}/lib/modules/${KV_FULL}"
	make DESTDIR="${D}" ${myinst} htmldir="/usr/share/doc/${PF}" install || die "make install failed"

	dodoc ChangeLog* README TODO
}

pkg_postinst() {
	if [[ ${ROOT} == / ]] ; then
		[[ -x /sbin/update-modules ]] && /sbin/update-modules || /sbin/modules-update
	fi

	echo
	elog "Now load the oprofile module by running:"
	elog "  # opcontrol --init"
	elog "Then read manpages and this html doc:"
	elog "  /usr/share/doc/${PF}/oprofile.html"
	echo
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2010-01-09 22:37 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 7+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-01-09 22:37 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/01/09 22:37:46

  Modified:             ChangeLog oprofile-0.9.6.ebuild
  Log:
  Bug #283320: linux-info changes require that linux_config_exists is called before linux_chkconfig*
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.61                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -p -w -b -B -u -u -r1.60 -r1.61
--- ChangeLog	22 Dec 2009 14:57:18 -0000	1.60
+++ ChangeLog	9 Jan 2010 22:37:46 -0000	1.61
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/oprofile
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.60 2009/12/22 14:57:18 pva Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.61 2010/01/09 22:37:46 robbat2 Exp $
+
+  09 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> oprofile-0.9.6.ebuild:
+  Bug #283320: linux-info changes require that linux_config_exists is called
+  before linux_chkconfig*
 
 *oprofile-0.9.6 (22 Dec 2009)
 



1.2                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?r1=1.1&r2=1.2

Index: oprofile-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- oprofile-0.9.6.ebuild	22 Dec 2009 14:57:18 -0000	1.1
+++ oprofile-0.9.6.ebuild	9 Jan 2010 22:37:46 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.1 2009/12/22 14:57:18 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.2 2010/01/09 22:37:46 robbat2 Exp $
 
 EAPI=1
 
@@ -21,7 +21,7 @@ DEPEND=">=dev-libs/popt-1.7-r1
 
 pkg_setup() {
 	linux-info_pkg_setup
-	if ! linux_chkconfig_present OPROFILE; then
+	if ! linux_config_exists || ! linux_chkconfig_present OPROFILE; then
 		elog "In order for oprofile to work, you need to configure your kernel"
 		elog "with CONFIG_OPROFILE set to 'm' or 'y'."
 	fi






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2010-02-01 19:57 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2010-02-01 19:57 UTC (permalink / raw
  To: gentoo-commits

maekke      10/02/01 19:57:41

  Modified:             ChangeLog oprofile-0.9.6.ebuild
  Log:
  amd64/x86 stable, bug #297610
  (Portage version: 2.2_rc62/cvs/Linux x86_64)

Revision  Changes    Path
1.62                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	9 Jan 2010 22:37:46 -0000	1.61
+++ ChangeLog	1 Feb 2010 19:57:40 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.61 2010/01/09 22:37:46 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.62 2010/02/01 19:57:40 maekke Exp $
+
+  01 Feb 2010; Markus Meier <maekke@gentoo.org> oprofile-0.9.6.ebuild:
+  amd64/x86 stable, bug #297610
 
   09 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> oprofile-0.9.6.ebuild:
   Bug #283320: linux-info changes require that linux_config_exists is called



1.3                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?r1=1.2&r2=1.3

Index: oprofile-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- oprofile-0.9.6.ebuild	9 Jan 2010 22:37:46 -0000	1.2
+++ oprofile-0.9.6.ebuild	1 Feb 2010 19:57:40 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.2 2010/01/09 22:37:46 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.3 2010/02/01 19:57:40 maekke Exp $
 
 EAPI=1
 
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="qt3"
 DEPEND=">=dev-libs/popt-1.7-r1
 	>=sys-devel/binutils-2.14.90.0.6-r3






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2010-02-04  3:05 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2010-02-04  3:05 UTC (permalink / raw
  To: gentoo-commits

jer         10/02/04 03:05:29

  Modified:             ChangeLog oprofile-0.9.6.ebuild
  Log:
  Stable for HPPA PPC (bug #297610).
  (Portage version: 2.2_rc62/cvs/Linux i686)

Revision  Changes    Path
1.63                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	1 Feb 2010 19:57:40 -0000	1.62
+++ ChangeLog	4 Feb 2010 03:05:29 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.62 2010/02/01 19:57:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.63 2010/02/04 03:05:29 jer Exp $
+
+  04 Feb 2010; Jeroen Roovers <jer@gentoo.org> oprofile-0.9.6.ebuild:
+  Stable for HPPA PPC (bug #297610).
 
   01 Feb 2010; Markus Meier <maekke@gentoo.org> oprofile-0.9.6.ebuild:
   amd64/x86 stable, bug #297610



1.4                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?r1=1.3&r2=1.4

Index: oprofile-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- oprofile-0.9.6.ebuild	1 Feb 2010 19:57:40 -0000	1.3
+++ oprofile-0.9.6.ebuild	4 Feb 2010 03:05:29 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.3 2010/02/01 19:57:40 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.4 2010/02/04 03:05:29 jer Exp $
 
 EAPI=1
 
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 hppa ppc ~ppc64 ~sparc x86"
 IUSE="qt3"
 DEPEND=">=dev-libs/popt-1.7-r1
 	>=sys-devel/binutils-2.14.90.0.6-r3






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2010-07-18 18:46 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-18 18:46 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/18 18:46:07

  Modified:             ChangeLog oprofile-0.9.6.ebuild
  Log:
  Add ~arm, tested by ssvb
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.65                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	16 Feb 2010 16:45:29 -0000	1.64
+++ ChangeLog	18 Jul 2010 18:46:07 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.64 2010/02/16 16:45:29 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.65 2010/07/18 18:46:07 armin76 Exp $
+
+  18 Jul 2010; Raúl Porcel <armin76@gentoo.org> oprofile-0.9.6.ebuild:
+  Add ~arm, tested by ssvb
 
   16 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> oprofile-0.9.6.ebuild:
   Remove USE="qt3" wrt #301377, thanks to Ben de Groot for reporting.



1.6                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?r1=1.5&r2=1.6

Index: oprofile-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- oprofile-0.9.6.ebuild	16 Feb 2010 16:45:29 -0000	1.5
+++ oprofile-0.9.6.ebuild	18 Jul 2010 18:46:07 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.5 2010/02/16 16:45:29 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.6 2010/07/18 18:46:07 armin76 Exp $
 
 EAPI=1
 inherit linux-info
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 hppa ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm hppa ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 DEPEND=">=dev-libs/popt-1.7-r1






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2011-05-22 16:41 Matt Turner (mattst88)
  0 siblings, 0 replies; 7+ messages in thread
From: Matt Turner (mattst88) @ 2011-05-22 16:41 UTC (permalink / raw
  To: gentoo-commits

mattst88    11/05/22 16:41:59

  Modified:             ChangeLog oprofile-0.9.6.ebuild
  Log:
  Add ~alpha keyword
  
  (Portage version: 2.1.9.41/cvs/Linux x86_64)

Revision  Changes    Path
1.66                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	18 Jul 2010 18:46:07 -0000	1.65
+++ ChangeLog	22 May 2011 16:41:59 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/oprofile
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.65 2010/07/18 18:46:07 armin76 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.66 2011/05/22 16:41:59 mattst88 Exp $
+
+  22 May 2011; Matt Turner <mattst88@gentoo.org> oprofile-0.9.6.ebuild:
+  Add ~alpha keyword
 
   18 Jul 2010; Raúl Porcel <armin76@gentoo.org> oprofile-0.9.6.ebuild:
   Add ~arm, tested by ssvb



1.7                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?r1=1.6&r2=1.7

Index: oprofile-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- oprofile-0.9.6.ebuild	18 Jul 2010 18:46:07 -0000	1.6
+++ oprofile-0.9.6.ebuild	22 May 2011 16:41:59 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.6 2010/07/18 18:46:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.7 2011/05/22 16:41:59 mattst88 Exp $
 
 EAPI=1
 inherit linux-info
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 DEPEND=">=dev-libs/popt-1.7-r1






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

* [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild
@ 2011-06-12 12:45 Michael Januszewski (spock)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Januszewski (spock) @ 2011-06-12 12:45 UTC (permalink / raw
  To: gentoo-commits

spock       11/06/12 12:45:57

  Modified:             ChangeLog oprofile-0.9.6.ebuild
  Log:
  Add upstream build fix for GCC 4.6 (bug #363259).
  
  (Portage version: 2.1.10.2/cvs/Linux x86_64)

Revision  Changes    Path
1.67                 dev-util/oprofile/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	22 May 2011 16:41:59 -0000	1.66
+++ ChangeLog	12 Jun 2011 12:45:57 -0000	1.67
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/oprofile
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.66 2011/05/22 16:41:59 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/ChangeLog,v 1.67 2011/06/12 12:45:57 spock Exp $
+
+  12 Jun 2011; Michał Januszewski <spock@gentoo.org> oprofile-0.9.6.ebuild,
+  +files/oprofile-0.9.6-mutable.patch:
+  Add upstream build fix for GCC 4.6 (bug #363259).
 
   22 May 2011; Matt Turner <mattst88@gentoo.org> oprofile-0.9.6.ebuild:
   Add ~alpha keyword



1.8                  dev-util/oprofile/oprofile-0.9.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild?r1=1.7&r2=1.8

Index: oprofile-0.9.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- oprofile-0.9.6.ebuild	22 May 2011 16:41:59 -0000	1.7
+++ oprofile-0.9.6.ebuild	12 Jun 2011 12:45:57 -0000	1.8
@@ -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/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.7 2011/05/22 16:41:59 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/oprofile/oprofile-0.9.6.ebuild,v 1.8 2011/06/12 12:45:57 spock Exp $
 
 EAPI=1
 inherit linux-info
@@ -26,6 +26,12 @@
 	fi
 }
 
+src_unpack() {
+	unpack ${A}
+	cd "${S}"
+	epatch "${FILESDIR}"/oprofile-0.9.6-mutable.patch
+}
+
 src_compile() {
 	local myconf="--with-qt-dir=/void --with-x"
 






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

end of thread, other threads:[~2011-06-12 12:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-12 12:45 [gentoo-commits] gentoo-x86 commit in dev-util/oprofile: ChangeLog oprofile-0.9.6.ebuild Michael Januszewski (spock)
  -- strict thread matches above, loose matches on Subject: below --
2011-05-22 16:41 Matt Turner (mattst88)
2010-07-18 18:46 Raul Porcel (armin76)
2010-02-04  3:05 Jeroen Roovers (jer)
2010-02-01 19:57 Markus Meier (maekke)
2010-01-09 22:37 Robin H. Johnson (robbat2)
2009-12-22 14:57 Peter Volkov (pva)

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