public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/gprof2dot: ChangeLog gprof2dot-0_p20130517.ebuild
@ 2013-05-19 21:01 Sebastian Pipping (sping)
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping (sping) @ 2013-05-19 21:01 UTC (permalink / raw
  To: gentoo-commits

sping       13/05/19 21:01:49

  Modified:             ChangeLog
  Added:                gprof2dot-0_p20130517.ebuild
  Log:
  dev-util/gprof2dot: 0_p20130517
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)

Revision  Changes    Path
1.5                  dev-util/gprof2dot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	15 Mar 2012 20:16:55 -0000	1.4
+++ ChangeLog	19 May 2013 21:01:48 -0000	1.5
@@ -1,6 +1,13 @@
 # ChangeLog for dev-util/gprof2dot
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.4 2012/03/15 20:16:55 sping Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.5 2013/05/19 21:01:48 sping Exp $
+
+*gprof2dot-0_p20130517 (19 May 2013)
+
+  19 May 2013; Sebastian Pipping <sping@gentoo.org>
+  +gprof2dot-0_p20130517.ebuild:
+  Update snapshot to Git HEAD of today. Python 3.x now supported upstream,
+  migrate to python-r1, fix/allow "import gprof2dot"
 
   15 Mar 2012; Sebastian Pipping <sping@gentoo.org>
   gprof2dot-0_p20100216.ebuild, +files/gprof2dot-0_p20100216-python3.patch:



1.1                  dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?rev=1.1&content-type=text/plain

Index: gprof2dot-0_p20130517.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.1 2013/05/19 21:01:49 sping Exp $

EAPI="5"

PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} )
PYTHON_REQ_USE='xml'

inherit eutils python-r1 python-utils-r1

DESCRIPTION="Converts profiling output to dot graphs"
HOMEPAGE="http://code.google.com/p/jrfonseca/wiki/Gprof2Dot"
SRC_URI="http://www.hartwork.org/public/${P}.tar.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=""
RDEPEND=""

_make_call_script() {
	cat <<-EOF >"${D}/$1"
	#! /usr/bin/env python
	from gprof2dot import Main
	Main().main()
	EOF

	fperms a+x "$1" || die
}

src_install() {
	abi_specific_install() {
		insinto "$(python_get_sitedir)"
		doins ${PN}.py || die
		python_optimize || die
	}
	python_parallel_foreach_impl abi_specific_install

	dodir /usr/bin || die
	_make_call_script /usr/bin/${PN} || die
	python_replicate_script "${D}"/usr/bin/${PN} || die
}





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

* [gentoo-commits] gentoo-x86 commit in dev-util/gprof2dot: ChangeLog gprof2dot-0_p20130517.ebuild
@ 2013-06-16 13:29 Sebastian Pipping (sping)
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping (sping) @ 2013-06-16 13:29 UTC (permalink / raw
  To: gentoo-commits

sping       13/06/16 13:29:36

  Modified:             ChangeLog gprof2dot-0_p20130517.ebuild
  Log:
  dev-util/gprof2dot: xrange patch (bug #473418)
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)

Revision  Changes    Path
1.6                  dev-util/gprof2dot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	19 May 2013 21:01:48 -0000	1.5
+++ ChangeLog	16 Jun 2013 13:29:36 -0000	1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/gprof2dot
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.5 2013/05/19 21:01:48 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.6 2013/06/16 13:29:36 sping Exp $
+
+  16 Jun 2013; Sebastian Pipping <sping@gentoo.org>
+  gprof2dot-0_p20130517.ebuild, +files/gprof2dot-0_p20130517-py3-xrange.patch:
+  Handle lack of xrange(..) in Python 3, thanks for the patch to Reinis Danne
+  (bug #473418)
 
 *gprof2dot-0_p20130517 (19 May 2013)
 



1.2                  dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?r1=1.1&r2=1.2

Index: gprof2dot-0_p20130517.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gprof2dot-0_p20130517.ebuild	19 May 2013 21:01:49 -0000	1.1
+++ gprof2dot-0_p20130517.ebuild	16 Jun 2013 13:29:36 -0000	1.2
@@ -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/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.1 2013/05/19 21:01:49 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.2 2013/06/16 13:29:36 sping Exp $
 
 EAPI="5"
 
@@ -21,6 +21,10 @@
 DEPEND=""
 RDEPEND=""
 
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-py3-xrange.patch
+}
+
 _make_call_script() {
 	cat <<-EOF >"${D}/$1"
 	#! /usr/bin/env python





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

* [gentoo-commits] gentoo-x86 commit in dev-util/gprof2dot: ChangeLog gprof2dot-0_p20130517.ebuild
@ 2014-11-09 14:53 Sebastian Pipping (sping)
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping (sping) @ 2014-11-09 14:53 UTC (permalink / raw
  To: gentoo-commits

sping       14/11/09 14:53:57

  Modified:             ChangeLog gprof2dot-0_p20130517.ebuild
  Log:
  dev-util/gprof2dot: Remove Python 3.2 target
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)

Revision  Changes    Path
1.9                  dev-util/gprof2dot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	9 Nov 2014 14:44:55 -0000	1.8
+++ ChangeLog	9 Nov 2014 14:53:57 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/gprof2dot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.8 2014/11/09 14:44:55 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.9 2014/11/09 14:53:57 sping Exp $
+
+  09 Nov 2014; Sebastian Pipping <sping@gentoo.org>
+  gprof2dot-0_p20130517.ebuild:
+  Remove Python 3.2 target
 
   09 Nov 2014; Sebastian Pipping <sping@gentoo.org>
   -gprof2dot-0_p20100216.ebuild:



1.4                  dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild?r1=1.3&r2=1.4

Index: gprof2dot-0_p20130517.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gprof2dot-0_p20130517.ebuild	5 Sep 2013 18:40:36 -0000	1.3
+++ gprof2dot-0_p20130517.ebuild	9 Nov 2014 14:53:57 -0000	1.4
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.3 2013/09/05 18:40:36 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.4 2014/11/09 14:53:57 sping Exp $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_6,2_7,3_3} )
 PYTHON_REQ_USE='xml'
 
 inherit eutils python-r1 python-utils-r1





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

* [gentoo-commits] gentoo-x86 commit in dev-util/gprof2dot: ChangeLog gprof2dot-0_p20130517.ebuild
@ 2014-11-09 20:49 Sebastian Pipping (sping)
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping (sping) @ 2014-11-09 20:49 UTC (permalink / raw
  To: gentoo-commits

sping       14/11/09 20:49:34

  Modified:             ChangeLog gprof2dot-0_p20130517.ebuild
  Log:
  dev-util/gprof2dot: Update python targets (bug #528714)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)

Revision  Changes    Path
1.10                 dev-util/gprof2dot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	9 Nov 2014 14:53:57 -0000	1.9
+++ ChangeLog	9 Nov 2014 20:49:34 -0000	1.10
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/gprof2dot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.9 2014/11/09 14:53:57 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.10 2014/11/09 20:49:34 sping Exp $
+
+  09 Nov 2014; Sebastian Pipping <sping@gentoo.org>
+  gprof2dot-0_p20130517.ebuild:
+  Remove Python 2.6 target, add Python 3.4 (bug #528714)
 
   09 Nov 2014; Sebastian Pipping <sping@gentoo.org>
   gprof2dot-0_p20130517.ebuild:



1.5                  dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild

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

Index: gprof2dot-0_p20130517.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gprof2dot-0_p20130517.ebuild	9 Nov 2014 14:53:57 -0000	1.4
+++ gprof2dot-0_p20130517.ebuild	9 Nov 2014 20:49:34 -0000	1.5
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.4 2014/11/09 14:53:57 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.5 2014/11/09 20:49:34 sping Exp $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_6,2_7,3_3} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 PYTHON_REQ_USE='xml'
 
 inherit eutils python-r1 python-utils-r1





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

* [gentoo-commits] gentoo-x86 commit in dev-util/gprof2dot: ChangeLog gprof2dot-0_p20130517.ebuild
@ 2014-11-21 23:48 Sebastian Pipping (sping)
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastian Pipping (sping) @ 2014-11-21 23:48 UTC (permalink / raw
  To: gentoo-commits

sping       14/11/21 23:48:36

  Modified:             ChangeLog gprof2dot-0_p20130517.ebuild
  Log:
  dev-util/gprof2dot: Fix use of python-r1 eclass (bug #528714)
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)

Revision  Changes    Path
1.11                 dev-util/gprof2dot/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	9 Nov 2014 20:49:34 -0000	1.10
+++ ChangeLog	21 Nov 2014 23:48:36 -0000	1.11
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/gprof2dot
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.10 2014/11/09 20:49:34 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/ChangeLog,v 1.11 2014/11/21 23:48:36 sping Exp $
+
+  21 Nov 2014; Sebastian Pipping <sping@gentoo.org>
+  gprof2dot-0_p20130517.ebuild:
+  Fix use of python-r1 eclass (bug #528714)
 
   09 Nov 2014; Sebastian Pipping <sping@gentoo.org>
   gprof2dot-0_p20130517.ebuild:



1.6                  dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild

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

Index: gprof2dot-0_p20130517.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gprof2dot-0_p20130517.ebuild	9 Nov 2014 20:49:34 -0000	1.5
+++ gprof2dot-0_p20130517.ebuild	21 Nov 2014 23:48:36 -0000	1.6
@@ -1,13 +1,13 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.5 2014/11/09 20:49:34 sping Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gprof2dot/gprof2dot-0_p20130517.ebuild,v 1.6 2014/11/21 23:48:36 sping Exp $
 
 EAPI="5"
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 PYTHON_REQ_USE='xml'
 
-inherit eutils python-r1 python-utils-r1
+inherit eutils python-r1
 
 DESCRIPTION="Converts profiling output to dot graphs"
 HOMEPAGE="http://code.google.com/p/jrfonseca/wiki/Gprof2Dot"
@@ -21,6 +21,8 @@
 DEPEND=""
 RDEPEND=""
 
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-py3-xrange.patch
 }





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

end of thread, other threads:[~2014-11-21 23:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-16 13:29 [gentoo-commits] gentoo-x86 commit in dev-util/gprof2dot: ChangeLog gprof2dot-0_p20130517.ebuild Sebastian Pipping (sping)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-21 23:48 Sebastian Pipping (sping)
2014-11-09 20:49 Sebastian Pipping (sping)
2014-11-09 14:53 Sebastian Pipping (sping)
2013-05-19 21:01 Sebastian Pipping (sping)

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