summaryrefslogtreecommitdiff
path: root/dev-python/python-mpd
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
commit908778078736bd36f7a60a2d576d415cb8e000fa (patch)
treec6a4796c48b608c14dc7e9674cdbd38f905e3c15 /dev-python/python-mpd
parent185fa19bbf68a4d4dca534d2b46729207a177f16 (diff)
gentoo resync : 22.05.2021
Diffstat (limited to 'dev-python/python-mpd')
-rw-r--r--dev-python/python-mpd/Manifest4
-rw-r--r--dev-python/python-mpd/python-mpd-1.1.0-r1.ebuild48
-rw-r--r--dev-python/python-mpd/python-mpd-3.0.4.ebuild2
3 files changed, 2 insertions, 52 deletions
diff --git a/dev-python/python-mpd/Manifest b/dev-python/python-mpd/Manifest
index f5dceccf7c0a..bc934e982d96 100644
--- a/dev-python/python-mpd/Manifest
+++ b/dev-python/python-mpd/Manifest
@@ -1,5 +1,3 @@
-DIST python-mpd-1.1.0.tar.gz 61104 BLAKE2B 274a829a3fc1404a4e3beb4df3eb563c1f781325590702761d3b3b5bc42e3cd9f63809aab14bb98e4879c10ccd55bb9d7306485ec22d37538cc2e36006a3039a SHA512 65b17ae34b2c731b7d45801211e49eacfc18239d5575075be0c11ace350da19b82dd151fefc42077454a988d3deb1b489471f739ddea2d915cb3c241669dbe32
DIST python-mpd2-3.0.4.tar.gz 66173 BLAKE2B f92a97512f19ac5f71846d3997240e5a37a4fd9bc353e131c582547ddc6e9520d2d09a02b4de62168707ba4a2cbfc28a019cba7e0a113242ecc38ecdc86c19a9 SHA512 7adf0daf64c6132dcd4d347f0772e9cbef903f9f5fba5315b745708dd2179090f53c5303b7ce905c685076861d21f7a14951e598c88eb65be423dea627dbb26a
-EBUILD python-mpd-1.1.0-r1.ebuild 1018 BLAKE2B 783f979d5b5c81ec40e7640090270c20c2c13fe46df0976a1cf733aaa2242b55a6004ceb682e5dded105497392bbfe41a883c7f71b19825fd7cd1c43a094d18b SHA512 773b5221e9947275421db704478526a182089f3e430140fac7d55e425f042df8b216d419cf0ac908fb4e835114b80a4567df6fcd55a458268889ccc4c20552a1
-EBUILD python-mpd-3.0.4.ebuild 964 BLAKE2B 2be1c94bd5feb7e3cec3d8edafc8a5987a9dde43c72b2e3ba576a05cde34c7dd5fdfa267fe9526b1a741537328729316dc8acd20a3edfe699f9f533acb35c9c4 SHA512 bb7e740ec38e50938af2d4a4a41496f85d70311856a5fa97091c8b435777225413faa4c35b41d674414e21237a0748b3a3b5e3c9e71cecba3c5ab488b06ccd1a
+EBUILD python-mpd-3.0.4.ebuild 960 BLAKE2B 211e523be26b5918452ee80ceb7dff9b8fab3acead23d7d788f5445eb5cb34a90e9a73f787bc140b4056e3af23855e9ccd4eb4f46943d30923f3f34319c8594e SHA512 9cc43f289f6f88df17dd8b987af1cef59d293790e1022fff515d14fa8663f71c4894db0d5d419161ff083d76df54f5c46c84ea0a051ded8e0ea2b3e009ba4114
MISC metadata.xml 463 BLAKE2B 9f711c66d5ac55f12770a73ec22e9f444ce861532624a17efd2ad8e31bbb77eee4d4608a8bac331eef5e9da009a840cb03c4723a5ee52c547089c6c61a248a94 SHA512 98ffedc8e05168b8a2a0e193655c20d41e40d69e652ca0d443c932f8c35630434e93aa76c2a03029c96f2c96f54c432c384ece12c6645f8cada73f8a76263710
diff --git a/dev-python/python-mpd/python-mpd-1.1.0-r1.ebuild b/dev-python/python-mpd/python-mpd-1.1.0-r1.ebuild
deleted file mode 100644
index d3f32530bf27..000000000000
--- a/dev-python/python-mpd/python-mpd-1.1.0-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS="bdepend"
-PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python MPD client library"
-HOMEPAGE="https://github.com/Mic92/python-mpd2"
-SRC_URI="https://github.com/Mic92/${PN}2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-3+"
-KEYWORDS="amd64 ppc ppc64 x86"
-SLOT="0"
-IUSE="examples +twisted"
-
-REQUIRED_USE="test? ( twisted )"
-
-RDEPEND="twisted? ( dev-python/twisted[${PYTHON_USEDEP}] )"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/toml[${PYTHON_USEDEP}]
- )
-"
-
-DOCS=( README.rst doc/{changes.rst,commands_header.txt} doc/topics/. )
-
-S="${WORKDIR}/${PN}2-${PV}"
-
-distutils_enable_sphinx doc --no-autodoc
-distutils_enable_tests pytest
-
-python_test() {
- pytest mpd/tests.py -vv || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- use examples && dodoc -r examples/.
-}
diff --git a/dev-python/python-mpd/python-mpd-3.0.4.ebuild b/dev-python/python-mpd/python-mpd-3.0.4.ebuild
index 82c66c86e910..6c748ccf6b0c 100644
--- a/dev-python/python-mpd/python-mpd-3.0.4.ebuild
+++ b/dev-python/python-mpd/python-mpd-3.0.4.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
S=${WORKDIR}/${MY_P}
LICENSE="LGPL-3+"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
SLOT="0"
IUSE="examples +twisted"