First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 172206
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Gentoo Linux High-Performance Clustering Team <hp-cluster@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: kaaZoo <kaazoo@gmx.net>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
ganglia-3.0.4.ebuild ebuild for ganglia-3.0.4 text/plain kaaZoo 2007-03-25 22:08 0000 1.32 KB Details
ganglia-3.0.4.ebuild Ganlgia-3.0.4 ebuild, with 'minimal' use-flag text/plain Jeffrey Lensen 2007-07-30 08:11 0000 1.25 KB Details
ganglia-3.0.5.ebuild ebuild for ganglia 3.0.5 text/plain Carlo Marcelo Arenas Belon 2007-10-06 05:21 0000 1.29 KB Details
ganglia-3.0.6.ebuild ebuild for ganglia 3.0.6 text/plain Carlo Marcelo Arenas Belon 2007-12-17 17:25 0000 1.30 KB Details
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 172206 depends on: 194336 Show dependency tree
Bug 172206 blocks: 203085
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2007-03-25 18:19 0000
Ganglia 3.0.4 released
Posted on 12.25.06 by knobi @ 2:41 am

The Ganglia Development Team is pleased to announce the release of Ganglia
3.0.4 (Otto) which is available for immediate download from

http://ganglia.info/downloads.php

This release is based on SVN revision 695 and is mainly a bug fix release.
Please see the ChangeLog in the Tarball for the complete list of fixes.

There are a few new features that should be noted:

* On Linux only filesystem mounted RW are counted in the disk statistics
* Disk Statistics for Solaris
* Added “host spoofing” capabilities to gmetrics/gmond

This release has been tested on the following platforms:

* Fedora FC4 / ia32
* Fedora Core 6 (i386)
* Gentoo Linux 2006.1 (amd64)
* Solaris 9 (sparc)
* Solaris 10 (i386, amd64 and sparc)
* NetBSD 2.0.2 (i386)
* NetBSD 3.0 (i386)
* NetBSD 3.1 (i386, amd64)
* FreeBSD 6.1 (amd64)

The development of Ganglia 3.0.5 is now open.

Enjoy.

The Ganglia team


Reproducible: Always

------- Comment #1 From kaaZoo 2007-03-25 21:24:43 0000 -------
# ok, here is the ebuild (my first one ever ;)



inherit gnuconfig

DESCRIPTION="Ganglia is a scalable distributed monitoring system for
high-performance computing systems such as clusters and Grids"
HOMEPAGE="http://ganglia.sourceforge.net/"
SRC_URI="mirror://sourceforge/ganglia/ganglia-${PV}.tar.gz"
LICENSE="BSD"

SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""

DEPEND="net-analyzer/rrdtool"
RDEPEND="${DEPEND}"

src_unpack() {
        unpack ${A}
        gnuconfig_update "${S}"
#        gnuconfig_update "${S}/srclib/expat/conftools"
#        gnuconfig_update "${S}/srclib/apr/build"
#        gnuconfig_update "${S}/srclib/libmetrics/build"
}


src_compile() {

        ./configure \
                --host=${CHOST} \
                --prefix=/usr \
                --infodir=/usr/share/info \
                --mandir=/usr/share/man \
                --enable-gexec \
                --with-gmetad || die "./configure failed"

        emake || die
}

src_install() {

        einstall || die

        insinto /etc
        #doins gmond/gmond.conf
        doins gmetad/gmetad.conf
        doman mans/{gmetad.1,gmetric.1,gmond.1,gstat.1}
        doman gmond/gmond.conf.5
        dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
        keepdir /var/lib/ganglia/rrds
        fowners nobody:nobody /var/lib/ganglia/rrds
        exeinto /etc/init.d
        newexe ${FILESDIR}/gmond.rc gmond
        newexe ${FILESDIR}/gmetad.rc gmetad

}

------- Comment #2 From kaaZoo 2007-03-25 21:25:50 0000 -------
oh, forgot the ~mips keyword !

------- Comment #3 From kaaZoo 2007-03-25 21:29:54 0000 -------
inherit gnuconfig

DESCRIPTION="Ganglia is a scalable distributed monitoring system for
high-performance computing systems such as clusters and Grids"
HOMEPAGE="http://ganglia.sourceforge.net/"
SRC_URI="mirror://sourceforge/ganglia/ganglia-${PV}.tar.gz"
LICENSE="BSD"

SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64 ~mips"
IUSE=""

DEPEND="net-analyzer/rrdtool"
RDEPEND="${DEPEND}"

src_unpack() {
        unpack ${A}
        gnuconfig_update "${S}"
}


src_compile() {

        ./configure \
                --host=${CHOST} \
                --prefix=/usr \
                --infodir=/usr/share/info \
                --mandir=/usr/share/man \
                --enable-gexec \
                --with-gmetad || die "./configure failed"

        emake || die
}

src_install() {

        einstall || die

        insinto /etc
        #doins gmond/gmond.conf
        doins gmetad/gmetad.conf
        doman mans/{gmetad.1,gmetric.1,gmond.1,gstat.1}
        doman gmond/gmond.conf.5
        dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
        keepdir /var/lib/ganglia/rrds
        fowners nobody:nobody /var/lib/ganglia/rrds
        exeinto /etc/init.d
        newexe ${FILESDIR}/gmond.rc gmond
        newexe ${FILESDIR}/gmetad.rc gmetad

}

------- Comment #4 From kaaZoo 2007-03-25 22:08:46 0000 -------
Created an attachment (id=114434) [edit]
ebuild for ganglia-3.0.4

------- Comment #5 From kaaZoo 2007-06-20 08:39:31 0000 -------
please test and/or make comments about it.

------- Comment #6 From Jeffrey Lensen 2007-07-30 08:11:44 0000 -------
Created an attachment (id=126425) [edit]
Ganlgia-3.0.4 ebuild, with 'minimal' use-flag

Ganlgia-3.0.4 ebuild, with 'minimal' use-flag

------- Comment #7 From Jeffrey Lensen 2007-07-30 08:14:53 0000 -------
I've edited the 3.0.4 ebuild to allow the use of a 'minimal' use-flag. When
specified, it supresses the installation of the gmetad daemon and it has no
need for rrdtool.

I've attached the new ebuild.

------- Comment #8 From Carlo Marcelo Arenas Belon 2007-09-26 19:00:23 0000 -------
ganglia 3.0.5 is soon to be released, still this bump request is still open
even if there are 2 proposed ebuilds and just changing the name on the last
unstable one is all that is really needed, is this package on a need of a
maintainer?

------- Comment #9 From Jakub Moc (RETIRED) 2007-10-05 17:13:52 0000 -------
*** Bug 194815 has been marked as a duplicate of this bug. ***

------- Comment #10 From Carlo Marcelo Arenas Belon 2007-10-06 05:21:10 0000 -------
Created an attachment (id=132703) [edit]
ebuild for ganglia 3.0.5

which adds all suggested improvements (including support for USE="minimal") 
plus :

* changes newexe calls with newinit calls for latest portage support (as done
in the last ebuilds)
* adds USE="test" support
* adds dependency for "check" when FEATURE="test" as it is required by the
integrated libconfuse.
* fixes wrong capitalization of Grids in DESCRIPTION
* uses ${P} instead of ${PV} for the SRC_URI (not needed since the package was
renamed as ganglia)
* uses econf instead of ./configure simplifying the logic and fixing the
installation of 64bit libraries in architectures that support 2 different ABIs
(like amd64)
* splits DEPEND and RDEPEND so that the dependency on check is only required at
build time (when USE=test")
* adds a post install message explaining how to autogenerate a configuration
template for gmond

------- Comment #11 From Carlo Marcelo Arenas Belon 2007-10-06 05:38:57 0000 -------
ebuild for ganglia 3.0.5 tested in ~amd64 and ~x86 and available (including fix
for bug 194815) from the following external overlay :

  layman -f -o http://tapir.sajinet.com.pe/gentoo/layman.xml -a sajinet

------- Comment #12 From Carlo Marcelo Arenas Belon 2007-12-17 15:40:56 0000 -------
Ganglia 3.0.6 released

this one including a fix for a cross side scripting vulnerability in the
frontend as reported in :

  http://secunia.com/advisories/28116/

------- Comment #13 From Carlo Marcelo Arenas Belon 2007-12-17 17:25:27 0000 -------
Created an attachment (id=138743) [edit]
ebuild for ganglia 3.0.6

including the following changes when compared with ganglia-3.0.5.ebuild :

* add ~x86-fbsd as requested by bug 202497

tested in ~amd64 and ~x86 and available from the following external overlay :

  layman -f -o http://tapir.sajinet.com.pe/gentoo/layman.xml -a sajinet

------- Comment #14 From Carlo Marcelo Arenas Belon 2007-12-23 10:01:50 0000 -------
so that the summary for this ticket and the security report match, could
someone with enough bugzilla priviledge update the summary to reflect this is
now a version bump for 3.0.6?

------- Comment #15 From kaaZoo 2008-01-03 01:31:32 0000 -------
version 3.0.6 works on MIPS.

thanks

------- Comment #16 From Justin Bronder 2008-01-05 01:43:08 0000 -------
ganglia-3.0.6 added to cvs excluding the additional keywords that I cannot
test.  Thanks all for your work.

First Last Prev Next    No search results available      Search page      Enter new bug