diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2017-06-19 10:40:31 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2017-06-19 11:29:38 -0700 |
commit | 803d6351422bf53ae046482da07b86d353503966 (patch) | |
tree | d7968f8e23a647cd9ceac5d0d2f60bf00d97efab /dev-util/buildbot-www | |
parent | dev-util/buildbot-pkg: Version bump (diff) | |
download | gentoo-803d6351422bf53ae046482da07b86d353503966.tar.gz gentoo-803d6351422bf53ae046482da07b86d353503966.tar.bz2 gentoo-803d6351422bf53ae046482da07b86d353503966.zip |
dev-util/buildbot-www: Version bump
Package-Manager: Portage-2.3.6_p2, Repoman-2.3.2_p70
Diffstat (limited to 'dev-util/buildbot-www')
-rw-r--r-- | dev-util/buildbot-www/Manifest | 1 | ||||
-rw-r--r-- | dev-util/buildbot-www/buildbot-www-0.9.8.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/dev-util/buildbot-www/Manifest b/dev-util/buildbot-www/Manifest index a33592836f05..9f879f179348 100644 --- a/dev-util/buildbot-www/Manifest +++ b/dev-util/buildbot-www/Manifest @@ -1,2 +1,3 @@ DIST buildbot-www-0.9.4.tar.gz 691706 SHA256 eb2f48aabee5e840aa8a4fce1f95f2fe4e2ae98045f9465d275ee5e263ae04b3 SHA512 522716f4200c00c1fbf196834279caef0fa2d805c7020d31890ce4d95ade85c5fa4a605d343a4fbf0d404f3088d98a7fd3c39bea58f3b02bc9e4a6daa9e3f6c6 WHIRLPOOL 6991e6052b3e5c3fffb83f2808f0b7da4f2267c0b4aa9b3cf3b665ba2046e5f123baf18d8dfbe25780782e9230b488edf1cfee8b3c07241aa59ce99509bb735c DIST buildbot-www-0.9.7.tar.gz 691849 SHA256 3123b1518976edbf285c2c0791719dafda59baab0103e533a54eb6ed134b78c9 SHA512 be9eaef167d354e1a028552792047ba31b475f57fc19204076f125552b5ee84770987d16894bc78ebc281b69d480e7b204d8cdaf5a4041af9ae09fb7785721ba WHIRLPOOL abee257ab8df9851bdcb047432d48648176a423337c1dbcc9c45832cb905bc58df8ba3d359b9de7367df36a251375f94f2579a984353a8747e1d256efb691676 +DIST buildbot-www-0.9.8.tar.gz 691945 SHA256 d3384b942b9194f52d8855df066ae355417a52cb69dc02ba061ebeb0f996f06b SHA512 819fa74219f27c0a8a7d4b05f099d4a92e1211cd6cf212dd9db4df3fb3d2ec3bf29bd4de8a463bedb611fec5e7c82e64b3a139b77505b0b9955ee3ed1cde205f WHIRLPOOL cdfa636af9aaaee8d42425b0269cd77c2c87846333d9b62cbdae9dc513ad37bc52ebc631b4f1284e2c27f94aed78a01df84114dfa1c766102e49ead1d7806505 diff --git a/dev-util/buildbot-www/buildbot-www-0.9.8.ebuild b/dev-util/buildbot-www/buildbot-www-0.9.8.ebuild new file mode 100644 index 000000000000..fbe239548392 --- /dev/null +++ b/dev-util/buildbot-www/buildbot-www-0.9.8.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +PYTHON_REQ_USE="sqlite" +PYTHON_COMPAT=( python2_7 python3_5 ) + +EGIT_REPO_URI="git://github.com/buildbot/buildbot.git" + +[[ ${PV} == *9999 ]] && inherit git-r3 +inherit distutils-r1 + +DESCRIPTION="BuildBot base web interface, use with buildbot-{console-view,waterfall-view}..." +HOMEPAGE="http://buildbot.net/ https://github.com/buildbot/buildbot https://pypi.python.org/pypi/buildbot-www" + +MY_V="${PV/_p/p}" +MY_P="${PN}-${MY_V}" +[[ ${PV} == *9999 ]] || SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" + +if [[ ${PV} == *9999 ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64" +fi + +IUSE="test" + +RDEPEND="" + +DEPEND="${RDEPEND} + >=dev-python/setuptools-21.2.1[${PYTHON_USEDEP}] + ~dev-util/buildbot-${PV}[${PYTHON_USEDEP}] + ~dev-util/buildbot-pkg-${PV}[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] +" + +S="${WORKDIR}/${MY_P}" +#[[ ${PV} == *9999 ]] && S=${S}/www/base + +python_test() { + distutils_install_for_testing + + esetup.py test || die "Tests failed under ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all +} |