Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (9344d91cfb0c30ec6367f3b893918788b1e7b32c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (9344d91cfb0c30ec6367f3b893918788b1e7b32c)
  • Date: Thu, 25 Nov 2010 10:48:50 -0600

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

ChangeLog | 3 +++
devel/oprofile/DETAILS | 4 ++--
devel/oprofile/HISTORY | 3 +++
devel/oprofileui/DEPENDS | 13 +++++++++++++
devel/oprofileui/DETAILS | 31 +++++++++++++++++++++++++++++++
devel/oprofileui/HISTORY | 3 +++
6 files changed, 55 insertions(+), 2 deletions(-)

New commits:
commit 9344d91cfb0c30ec6367f3b893918788b1e7b32c
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

devel/oprofile: version 0.9.6

commit cd1c07dcca4682b38cdaa1b8c78165ae5263e456
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

devel/oprofileui: new spell, a GUI for oprofile

diff --git a/ChangeLog b/ChangeLog
index 0233156..6d0b6d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-11-25 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * devel/oprofileui: new spell, a GUI for oprofile
+
2010-11-20 Bor Kraljič <pyrobor AT ver.si>
* graphics/gmic: new spell, A GIMP plugin based on GREYCStoration.
* graphics/greycstoration: spell deprecated [replaced by gmic]
diff --git a/devel/oprofile/DETAILS b/devel/oprofile/DETAILS
index df926e0..14cbccf 100755
--- a/devel/oprofile/DETAILS
+++ b/devel/oprofile/DETAILS
@@ -1,6 +1,6 @@
SPELL=oprofile
- VERSION=0.9.5
-
SOURCE_HASH=sha512:6eff503cd2080253c36fc3171e3e576cdfb5b5402eef91313463ba25d778cd7c6d30ae39b7f9df3ea6655fef8c717fa8f28ddad9aad30d823246f46cc49d55bc
+ VERSION=0.9.6
+
SOURCE_HASH=sha512:dfc496255183d0413f534feaca86d42d38ce4e25ea9d29f9e5956721f30049e99b1f58b6b56e71e6d466be5e8204a7c867b1b3db4fe557774d8db7ad698cd04a

SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
diff --git a/devel/oprofile/HISTORY b/devel/oprofile/HISTORY
index 0afc84b..4bbede2 100644
--- a/devel/oprofile/HISTORY
+++ b/devel/oprofile/HISTORY
@@ -1,3 +1,6 @@
+2010-11-25 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 0.9.6
+
2010-03-03 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* BUILD: added disable_pic

diff --git a/devel/oprofileui/DEPENDS b/devel/oprofileui/DEPENDS
new file mode 100755
index 0000000..f2e9503
--- /dev/null
+++ b/devel/oprofileui/DEPENDS
@@ -0,0 +1,13 @@
+depends atk &&
+depends cairo &&
+depends fontconfig &&
+depends freetype2 &&
+depends gdk-pixbuf2 &&
+depends glib2 &&
+depends gnome-vfs2 &&
+depends gtk+2 &&
+depends libpng &&
+depends libxml2 &&
+depends oprofile &&
+depends pango &&
+optional_depends avahi "--with-avahi" "--without-avahi" "use Avahi to
announce and search for OProfile servers"
diff --git a/devel/oprofileui/DETAILS b/devel/oprofileui/DETAILS
new file mode 100755
index 0000000..0a26f32
--- /dev/null
+++ b/devel/oprofileui/DETAILS
@@ -0,0 +1,31 @@
+ SPELL=oprofileui
+ VERSION=0.2.0
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE_URL[0]=http://labs.o-hand.com/sources/${SPELL}/${SOURCE}
+
SOURCE_HASH=sha512:b4b78652ca197719d0849e32918e3922737f7f605df091cf786312b7e106ea8816a0965f29b8878421ae2b957c15100035f5b00db6268c3507a29a14fbf52e3c
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://labs.o-hand.com/oprofileui";
+ LICENSE[0]=GPL
+ ENTERED=20101125
+ SHORT="a user interface to the stochastic system profiler"
+cat << EOF
+Client/server model allowing the resource intensive profile generation to be
+completed off-target. This allows the profiling of resource limited targets,
+for instance embedded devices, from the comfort of a desktop system.
+
+Wide range of hardware support. By basing this interface on OProfile we can
+support all architectures supported by OProfile. However our primary design
+platform is with ARM and x86 targets and x86 host.
+
+Support for detailed profiling, including call-graph generation.
+
+No need for extra instrumentation. With OProfile applications need no extra
+build-time instrumentation to be profileable. The only requirement is that
+the binaries of interest have debugging symbols 1).
+
+Intuitive visual interface. By using colour to indicate resource usage
+along it makes it easy for the developer to see the resource usage at a
+glance. Combined with clear visual modes it is easy to identify the busiest
+applications on the system, the busiest libraries and the busiest symbols
+and drill down within those to find more detailed information.
+EOF
diff --git a/devel/oprofileui/HISTORY b/devel/oprofileui/HISTORY
new file mode 100644
index 0000000..eaf1a6a
--- /dev/null
+++ b/devel/oprofileui/HISTORY
@@ -0,0 +1,3 @@
+2010-11-25 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DEPENDS, DETAILS: spell created
+



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (9344d91cfb0c30ec6367f3b893918788b1e7b32c), Florian Franzmann, 11/25/2010

Archive powered by MHonArc 2.6.24.

Top of Page