summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2021-10-09 10:16:23 +0200
committerJakov Smolić <jsmolic@gentoo.org>2021-10-09 10:16:23 +0200
commitb1a144b258a82c1b10e7e13d742afcbb769553c3 (patch)
tree1f731c7b9be0d25ce91f85602b63684fe8945f3f /dev-python/pybluez
parentdev-python/lcdproc: treeclean (diff)
downloadgentoo-b1a144b258a82c1b10e7e13d742afcbb769553c3.tar.gz
gentoo-b1a144b258a82c1b10e7e13d742afcbb769553c3.tar.bz2
gentoo-b1a144b258a82c1b10e7e13d742afcbb769553c3.zip
dev-python/pybluez: treeclean
Closes: https://bugs.gentoo.org/717902 Closes: https://bugs.gentoo.org/615198 Closes: https://bugs.gentoo.org/812233 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-python/pybluez')
-rw-r--r--dev-python/pybluez/Manifest1
-rw-r--r--dev-python/pybluez/metadata.xml12
-rw-r--r--dev-python/pybluez/pybluez-0.23.ebuild32
3 files changed, 0 insertions, 45 deletions
diff --git a/dev-python/pybluez/Manifest b/dev-python/pybluez/Manifest
deleted file mode 100644
index 5a383e05a63c..000000000000
--- a/dev-python/pybluez/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST PyBluez-0.23.tar.gz 97562 BLAKE2B 6a234d5c41dc0bb9f08559431eafcf1d1fb1c881d2cb912cc048e2717bfe8a06f09aae045d2961c9ba5e087422cfc8249a1907368eb6dc45942175bcf97b1841 SHA512 78ce2c014d0055d0220163e7df94de5b6e891aa528ecf4f106f9dd0bdeb94244d18c752f93e62a133f3cec7053cb4646599e7588cf7ce5994ae7abe74ed05d47
diff --git a/dev-python/pybluez/metadata.xml b/dev-python/pybluez/metadata.xml
deleted file mode 100644
index 1336a869ab10..000000000000
--- a/dev-python/pybluez/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!--maintainer-needed-->
- <longdescription>PyBluez is an effort to create Python wrappers around bluez to allow Python
-developers to use system bluetooth resources. It works on machines running the
-GNU/Linux operating system and the bluez bluetooth stack.</longdescription>
- <upstream>
- <remote-id type="pypi">PyBluez</remote-id>
- <remote-id type="github">pybluez/pybluez</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pybluez/pybluez-0.23.ebuild b/dev-python/pybluez/pybluez-0.23.ebuild
deleted file mode 100644
index f865c30c8ecd..000000000000
--- a/dev-python/pybluez/pybluez-0.23.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-MY_P="PyBluez-${PV}"
-
-DESCRIPTION="Python bindings for Bluez Bluetooth Stack"
-HOMEPAGE="https://github.com/pybluez/pybluez"
-SRC_URI="mirror://pypi/P/PyBluez/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="examples"
-
-RDEPEND="net-wireless/bluez"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${MY_P}
-
-python_install_all() {
- distutils-r1_python_install_all
- if use examples; then
- dodoc -r examples
- docompress -x usr/share/doc/${PF}/examples
- fi
-}