EBUILD nagios-plugin-1.6.11.2-r2.ebuild 1695 SHA256 839f51b7570a21707728aaa7c2ff2d521292b7d555ffc69c846c910eb2a3dcb9 SHA512 e86dd4b51293fb47e4fab3e1008679f1c18c032445a69281c7209f3dcf1df9a9bf0b9939af26de9a3f90620a1117fccb047d21290f19c2723b7d1210491aab76 WHIRLPOOL d2005f97225d7e11dbc0f3d42d6f029040676d5bbeec9a041938695751fbb5cc3de186915323acdb2a88ea64a0bc2fd94b8220a50c9a7fa19c9ab4f7f46f5b14
EBUILD nagios-plugin-1.7.2-r1.ebuild 1704 SHA256 ca15fe059abe67390e4cac34ab679345df3dd835849a97ac4582c5cbbcca3de9 SHA512 add626c37242337e832424eff316e77a0f33eae0011bd426f5e23e2567979c415212910a6d7f871483466b6728cbbf1611aedd7cd23668c4aea4ef0c555b3aa6 WHIRLPOOL 5cb108aad57351a60e549bd1053a4367b930daf6d04a70f3540ff78adffb0e45b9ce2c77c5dc6cb5026bf59f1053282c2145c6a9c25a4be05a0281505fe33963
-EBUILD nagios-plugin-9999.ebuild 1372 SHA256 648bfef04e987ceb74b64d2188e5ca8aa0981f09deaffdf9550d00d4525a1493 SHA512 d247599e1c2cefefcd87af8888cd9f67c3571b941e61a857677990434709efa49e43ad05f0ab78e05a81e17c64d3c0b89bd834efa287b87621e9ce26f202d4af WHIRLPOOL 332a2a4dc87b4da17f22e76a2954efd9b3bb0fa785b3fee6fc38ddc69a8f8cd0e94c1ff76817175c08376e334d1569a5d34835dc667e2d3aef55048875d5adf9
+++ /dev/null
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=4
-
-DESCRIPTION="Python modules streamline writing Nagios plugins."
-HOMEPAGE="http://git.profitbricks.localdomain/gitweb/?p=python/nagios-plugin;a=summary"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/fbrehm/nagios-plugin.git"
-
-inherit git-2 distutils user python
-
-LICENSE="LGPL-3"
-SLOT="0"
-#KEYWORDS="~amd64"
-IUSE="doc"
-PYTHON_DEPEND="2::2.7"
-
-EGIT_BRANCH="develop"
-
-DOCS="debian/changelog README.txt"
-
-RDEPEND="
- dev-python/argparse
-"
-DEPEND="
- ${RDEPEND}
- doc? ( dev-python/epydoc
- dev-python/docutils
- )
-"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_install() {
- distutils_src_install
- #python_clean_installation_image
-
- if use doc; then
- einfo "Installing documentation ..."
- dodir "/usr/share/doc/${PF}"
- dodir "/usr/share/doc/${PF}/html"
- dodir "/usr/share/doc/${PF}/pdf"
-
- einfo "Creating epydoc html documentation"
- epydoc --html -v -o "${ED}/usr/share/doc/${PF}/html" "${S}/nagios" || ewarn "Could not create epydoc html documentation"
- einfo "Creating epydoc pdf documentation"
- epydoc --pdf -o "${ED}/usr/share/doc/${PF}/pdf" "${S}/nagios" || ewarn "Could not create epydoc pdf documentation"
-
- fi
-
-}
-
-pkg_postinst() {
- python_mod_optimize nagios
-}
-
-pkg_postrm () {
- python_mod_cleanup nagios
-}
-