cleanup, add new Python Targets, Letter 'A-C' all Integrations

This commit is contained in:
2021-07-16 20:27:23 +02:00
committed by onkelbeh
parent 79cd170b33
commit 34f518b7f4
60 changed files with 99 additions and 501 deletions
+1 -3
View File
@@ -1,5 +1,3 @@
DIST python-clementine-remote-1.0.1.tar.gz 31115 BLAKE2B c23d6a86e23d325c86c2b74c7a09d6281c916d1a6e0825a5b643c852c240058f5878cb8a1bb614aaaa1ce3266950a745e2dc6c1f4a7190f7b321461ccf6e264f SHA512 5496e877bd1f699ff401dc3adc2ca1c7051288d1d6aa731e1daa86109cc0e54fc2cf8ad19207878e2bc25dfd570a93274b3ef96f147d9d063d75a30f85956c45
DIST python-clementine-remote-1.0.3.tar.gz 18649 BLAKE2B 7a0ce3f79835c88e92d5dc37d6a270b39f167c4925112d16bb5a7df1df9ce5529a8fcbe1edb5eec197394193aa32d72209aeacd8afe9648bd7f01df5e5b38050 SHA512 c8d73b95b3beecbee1352bb3ed4cc09a71a592e04e2dc4e6ab57d1dea4cf15d9e30fa924759a848619fc877006cb9ee628724868ea8fa6bd386741db9e362b69
EBUILD python-clementine-remote-1.0.1.ebuild 800 BLAKE2B b1e5f15c90a5ce2e651ca2e713ff9d802e0b21de9b346908a38597820cb9608de708b57a22bc3293d9049f444877dac6e806b845c71b60803d87defaef9ccb46 SHA512 5bc294f3f0bc84eb02f8ec85531926b80ee277b4100a4445c34c7ef49608674cf1796895a325d342c12322fcb5c34079483c28d25c0153a8b86c6005c45c962e
EBUILD python-clementine-remote-1.0.3.ebuild 800 BLAKE2B b1e5f15c90a5ce2e651ca2e713ff9d802e0b21de9b346908a38597820cb9608de708b57a22bc3293d9049f444877dac6e806b845c71b60803d87defaef9ccb46 SHA512 5bc294f3f0bc84eb02f8ec85531926b80ee277b4100a4445c34c7ef49608674cf1796895a325d342c12322fcb5c34079483c28d25c0153a8b86c6005c45c962e
EBUILD python-clementine-remote-1.0.1.ebuild 799 BLAKE2B 8b25f795f0c226972fbccc2a04d14ec4fe6b4756d0f047f3079a51ea8895f47ebd4ce19fdc4d7bf8265879821d1971161aa9594ba6541bebbc74ee64ca01ecd3 SHA512 74d95c5848ff269c8302ee9868e31dd5821d0ef0342ec8921b2310208ee14f41e2007d33035921c53e2f3a7d82d3be78c4ae77aef4f83b5b1946fc8cb5d23d28
MISC metadata.xml 471 BLAKE2B b4fa4aa884b2dd0e870e25c476aac6a616989baeb8982754064e1b5167c06175348956b9d05192e47764c31a630613462e12476465ff78f02206f9b634f2855d SHA512 7466dba24022697377b9ff328149e61b751c38d172dd5da38885bfd561fceb21b4cff5e60ea32035a7f9d132cd3b2fe779661e14922ac254de9319c518b92bac
@@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -16,8 +16,10 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS=""
RDEPEND="dev-python/protobuf-python[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
@@ -1,30 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Python library and CLI for the Clementine Music Player remote protocol."
HOMEPAGE="https://github.com/jjmontesl/python-clementine-remote https://pypi.org/project/python-clementine-remote/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/protobuf-python[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
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
}