diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 80c1035f6..68d485ad9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -27,6 +27,7 @@ * update zm-py-0.5.2 * add pyairnow-1.1.0 * bump vsure-1.6.1 + * add vol-0.1.1 2020-12-21 * update meteofrance-api-1.0.1 diff --git a/dev-python/vol/Manifest b/dev-python/vol/Manifest new file mode 100644 index 000000000..964840c4f --- /dev/null +++ b/dev-python/vol/Manifest @@ -0,0 +1,3 @@ +DIST vol-0.1.1.tar.gz 4012 BLAKE2B ab60a4b71091997135ad0f6dac9ac7cd190bc804e498d78d520675f65b4bfabe9c69726da4fd128ff74efe46b68a6b93bbc8cf05c1a60be061e9a8c675d5ddda SHA512 7c37439a9837f305a297e4a85c65181cc4eb93e5f3e4769d6af5df04088ec551fe93229e7dfb6537511ff9f39ee08d3772726d81a7c82aaf2fbdf56b5e61c0af +EBUILD vol-0.1.1.ebuild 717 BLAKE2B 7793b133bc2ca8c14d6f2cea21943a823b0788299e607fac9766763515fa5d7a686719b9fc0911539124a20a7f533966455c4d1285dc074b5b4035edc37af874 SHA512 e15af81001a44dbf3810e99c3325c37af905911a3436a140702be4f1a960af91a415d99d6e4a951fc0234e9e7efeadd01b535e52c9b6a389b1e4051b2655cb7e +MISC metadata.xml 456 BLAKE2B 25927a16b296b092616f540081f92c605eeafb4e2b551e641e09ccd03f535522429e8dbf319e4ad18036cd3a20c9d3bab3e407a3331ae5af24d290c6a5fc6cd9 SHA512 17c09a54547bf9b8d51278f1c01342dc8a4240b5d6f431bbc5f9e9545eb3e6f593209e58f75b3ddd9afb653669e6cf3513ba3610d13092d3b0b9840522205020 diff --git a/dev-python/vol/metadata.xml b/dev-python/vol/metadata.xml new file mode 100644 index 000000000..474d14439 --- /dev/null +++ b/dev-python/vol/metadata.xml @@ -0,0 +1,15 @@ + + + + + b@edevau.net + Andreas Billmeier + + + vol + + bernhard.maeser@gmail.com + Bernhard Maeser + + + diff --git a/dev-python/vol/vol-0.1.1.ebuild b/dev-python/vol/vol-0.1.1.ebuild new file mode 100644 index 000000000..b617499fa --- /dev/null +++ b/dev-python/vol/vol-0.1.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="volume control in the shell for your mac" +HOMEPAGE="https://github.com/bmaeser/vol https://pypi.org/project/vol/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="README.rst" + +RDEPEND="dev-python/docopt[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}