add vol-0.1.1

This commit is contained in:
Andreas Billmeier 2021-01-09 10:47:42 +01:00 committed by Andreas Billmeier
parent b577a2162d
commit 3d24e73a99
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -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

3
dev-python/vol/Manifest Normal file
View File

@ -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

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">vol</remote-id>
<maintainer status="unknown">
<email>bernhard.maeser@gmail.com</email>
<name>Bernhard Maeser</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -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
}