mjo 15/06/22 14:53:45 Modified: metadata.xml ChangeLog Added: nagios-check_mysql_health-2.1.9.2.ebuild Log: Version bump fixing bug #541128 in the process. Add myself as a maintainer. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x6F48D3DA05C2DADB!)
Revision Changes Path 1.7 net-analyzer/nagios-check_mysql_health/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/metadata.xml?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/metadata.xml?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/metadata.xml?r1=1.6&r2=1.7 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/metadata.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- metadata.xml 26 Jan 2014 02:59:42 -0000 1.6 +++ metadata.xml 22 Jun 2015 14:53:45 -0000 1.7 @@ -1,15 +1,23 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> <email>and...@ahamilto.net</email> <name>Andrew Hamilton</name> <description>Maintainer. Assign bugs to him.</description> </maintainer> + + <maintainer> + <email>m...@gentoo.org</email> + <name>Michael Orlitzky</name> + <description>Secondary maintainer. CC him on bugs.</description> + </maintainer> + <maintainer> <email>sdamas...@gentoo.org</email> <name>Samuel Damashek</name> <description>Proxy maintainer. CC him on bugs.</description> </maintainer> - <herd>proxy-maintainers</herd> </pkgmetadata> 1.10 net-analyzer/nagios-check_mysql_health/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 26 Jan 2014 02:59:42 -0000 1.9 +++ ChangeLog 22 Jun 2015 14:53:45 -0000 1.10 @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/nagios-check_mysql_health -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog,v 1.9 2014/01/26 02:59:42 creffett Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/ChangeLog,v 1.10 2015/06/22 14:53:45 mjo Exp $ + +*nagios-check_mysql_health-2.1.9.2 (22 Jun 2015) + + 22 Jun 2015; Michael Orlitzky <m...@gentoo.org> + +nagios-check_mysql_health-2.1.9.2.ebuild, metadata.xml: + Version bump fixing bug #541128 in the process. Add myself as a maintainer. 26 Jan 2014; Chris Reffett <creff...@gentoo.org> -nagios-check_mysql_health-2.1.5.ebuild, 1.1 net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.9.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.9.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.9.2.ebuild?rev=1.1&content-type=text/plain Index: nagios-check_mysql_health-2.1.9.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-check_mysql_health/nagios-check_mysql_health-2.1.9.2.ebuild,v 1.1 2015/06/22 14:53:45 mjo Exp $ EAPI=5 inherit multilib MY_PN="${PN#nagios-}" MY_P="${MY_PN}-${PV}" DESCRIPTION="A nagios plugin for checking MySQL server health" HOMEPAGE="https://labs.consol.de/nagios/${MY_PN}/" SRC_URI="https://labs.consol.de/assets/downloads/nagios/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" # Found by grepping for "use " in the built # plugins-scripts/check_mysql_health. RDEPEND="dev-perl/DBD-mysql dev-perl/DBI virtual/perl-Data-Dumper virtual/perl-File-Temp virtual/perl-Net-Ping virtual/perl-Time-HiRes" S="${WORKDIR}/${MY_P}" src_configure(){ # Should match net-analyzer/{monitoring,nagios}-plugins. econf --libexecdir="/usr/$(get_libdir)/nagios/plugins" } # Here we should have a pkg_preinst() that creates the nagios user/group # (using the same command from e.g. net-analyzer/nagios-plugins). But # right now, the build system for check_mysql_health has a bug: it # doesn't use the configured user (INSTALL_OPTIONS aren't passed to # /usr/bin/install), so it's pointless. Don't forget to inherit # user.eclass!