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-python/cli_helpers: version bump to 1.0.0 (bug 636824)
Bug: https://bugs.gentoo.org/636824 Package-Manager: Portage-2.3.13, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
23 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 +1,2 @@ | ||
DIST cli_helpers-0.2.0.tar.gz 33855 SHA256 cbaeaf5da217d5cbc53d7750aaec75eab14410510c3c4afefc2d809015af4fab SHA512 7dfa9791f472ccba3d49d0e87daf859257e74349cfbd8920a624f3e8d6905d8c8b7fa7be70eda97091963e548fa16dfbb1171e198cbbaa9d7810bff2321ebe54 WHIRLPOOL 8c73ff8f3fe4f248bd90319519928ecf76582a69d5f68b7cee4c15cf2deefbafac612107602af55d83362cb35bd18c4a015aca9045df367dd035ea92f1b1e0f5 | ||
DIST cli_helpers-1.0.0.tar.gz 23269 SHA256 eb584402ca198c4e442fd7e80d586ab361a25f613be8c7427c741d8a41c87b6e SHA512 8137b081cfe3d226c63cc7c17165f884a42147ea184d11a1e0ee5805f2d22bce37ded580a0c15566bcb057df4c39f2685595d74b2e21d46932e2e635f77eec68 WHIRLPOOL 5d003965be32ea79172a665d8a11eed2887f2492d5407e6b8224519e13c02c59bdb9845f45e4eece5bbc1659ace8e982a1dc92bf65a054fc19381ed2ad6d1154 |
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,22 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) | ||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python helpers for common CLI tasks" | ||
|
||
HOMEPAGE="http://cli-helpers.rtfd.io/" | ||
SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" | ||
RDEPEND=" | ||
>=dev-python/tabulate-0.8.0[${PYTHON_USEDEP}] | ||
>=dev-python/terminaltables-3.0.0[${PYTHON_USEDEP}] | ||
>=dev-python/pygments-2.0[${PYTHON_USEDEP}] | ||
" |