forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-util/rbtools: version bump 0.7.8
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
1 parent
2066cf7
commit 90b05e7
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST RBTools-0.7.6.tar.gz 162080 SHA256 b2c5abedc4330534888629558c25ff80cf7b35fea60d1362423e8a9d64e7cf75 SHA512 46a141370f79f4a9bcf417a2fca0fae6f1cc3d0ce2de9fd5f06df7162ecf051b418d12795adce9b12ed8244800da17f87df8b3f04c79c269b3b292a2033bc958 WHIRLPOOL 2ed6cb094c726c7215d4efa8e55855541d19df2bdfe942e4a4628815fdada7babf5d6364e43eb7459683fdd8fded1de4753d02cc4ee08cce75905518e71cfb8f | ||
DIST RBTools-0.7.7.tar.gz 169305 SHA256 98d74c8947bc02d313e34ebee6c7cfd171a818539ea66c104974df984cd2c98a SHA512 f1d40c5a6941903a3253d9bc73f17fd78183dcf9c75074bc3a670af96333c4596260d2f48de3021aeffc57769947c2bb20d765487f426329fd74a970873b90da WHIRLPOOL ee7cc5230a1513f4bd4696509706e2f62c1dac027a7cab3991a640a68ffe93d13328dd6710d55a26c7df27d5d22acfa37452d389ec3fa4b3a7ae1d9176f46f83 | ||
DIST RBTools-0.7.8.tar.gz 169541 SHA256 e6fc5d451a8f33aa959d448948a01a7a588b0b20392e4d14a3bae378ce12ab95 SHA512 ce88d5a76ac72c47dd26a4a1d703185ff932f5a8e15365c0fa4269d3cefa0eadc66c523d5df19fea9cb15065e0594c4078de090c3a763a7b1a478cdf0ea3cd8f WHIRLPOOL f36a5ea8fbdc9134d63b886cbd519b0568a94439ba2955bc58cc262f73a2a0dfed8da6180412eed6697f84313c03b9a3e7ab1b452527f20cd3d36426cb9e88d8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
PYTHON_COMPAT=( python2_7 ) | ||
|
||
inherit distutils-r1 versionator | ||
|
||
MY_PN="RBTools" | ||
MY_P="${MY_PN}-${PV}" | ||
|
||
DESCRIPTION="Command line tools for use with Review Board" | ||
HOMEPAGE="https://www.reviewboard.org/" | ||
SRC_URI="https://downloads.reviewboard.org/releases/${MY_PN}/$(get_version_component_range 1-2)/${MY_P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
>=dev-python/six-1.8.0[${PYTHON_USEDEP}] | ||
dev-python/tqdm[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
" | ||
|
||
DOCS=( AUTHORS NEWS README.md ) | ||
|
||
S=${WORKDIR}/${MY_P} |