diff --git a/dev-python/python-report/Manifest b/dev-python/python-report/Manifest index b99fe6a5a..a391e61c2 100644 --- a/dev-python/python-report/Manifest +++ b/dev-python/python-report/Manifest @@ -1,2 +1,3 @@ +AUX bugs.sabayon.org.ini 171 RMD160 87fd58ee98c30e9924c569e65bbf7c4b03707095 SHA1 d3769ff4c5d2418bab0128291d337d535ba66b16 SHA256 84060de5c596e836a58d166c12fc373852cfe104da78853b4499acebbc3e92b5 AUX python-report-0.10-sabayon-defaults.patch 2816 RMD160 16cd841db8789c664c5a3cc2d595e735ecf0fa6b SHA1 3b0ef79a491c5e4bd91d16fee35392762c244e68 SHA256 7e662cea4143c5d3f27646c6250cf57f3e91b29d58bb0aff883e60e1d1478830 -EBUILD python-report-0.10.ebuild 1028 RMD160 ac15f3eb08e57517ee144dbe73ea2ab5534b1b66 SHA1 9087c496374daa16f3db29fe63fe0c545bf37286 SHA256 4d7c3373e19e9663fe3226028f69c4ba3b60415b1172abdeff2e70a513a8079d +EBUILD python-report-0.10.ebuild 1313 RMD160 d0a74c728b747efba789f8c36781678c54e3f641 SHA1 bb8dec223ec0ff9881a0842366f592ffc43a3457 SHA256 4c5bd7200a033c83813428337d39ab3b4a5e8b06d9e03c8a6b9e46752032be69 diff --git a/dev-python/python-report/files/bugs.sabayon.org.ini b/dev-python/python-report/files/bugs.sabayon.org.ini new file mode 100644 index 000000000..9fa29826f --- /dev/null +++ b/dev-python/python-report/files/bugs.sabayon.org.ini @@ -0,0 +1,9 @@ +[bugs.sabayon.org] +# template +template=bugzilla-template + +# rhbz url +bugzilla_host=bugs.sabayon.org + +# rhbz login, a password is always asked. +# username=user@example.com diff --git a/dev-python/python-report/python-report-0.10.ebuild b/dev-python/python-report/python-report-0.10.ebuild index 617b41427..dd5f8638a 100644 --- a/dev-python/python-report/python-report-0.10.ebuild +++ b/dev-python/python-report/python-report-0.10.ebuild @@ -43,3 +43,16 @@ src_compile() { emake || die "make failed" } + +src_install() { + base_src_install + + # remove Red Hat stuff + rm "${D}"/etc/report.d/RHEL.ini + rm "${D}"/etc/report.d/dropbox.redhat.com.ini + rm "${D}"/etc/report.d/bugzilla.redhat.com.ini + + # install Sabayon configuration + cp "${FILESDIR}"/bugs.sabayon.org.ini "${D}/etc/report.d/" + +}