aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Healy <lmiphay@gmail.com>2021-01-31 15:09:29 +0000
committerPaul Healy <lmiphay@gmail.com>2021-01-31 15:09:29 +0000
commitc0d71740395679421ea7ba7200a49767e8cdb4f6 (patch)
tree326dc2f4e6fc994e2fad81c16dd802514cd4ed3b /media-sound
parentupdate py verion (diff)
downloadlmiphay-c0d71740395679421ea7ba7200a49767e8cdb4f6.tar.gz
lmiphay-c0d71740395679421ea7ba7200a49767e8cdb4f6.tar.bz2
lmiphay-c0d71740395679421ea7ba7200a49767e8cdb4f6.zip
remove old ebuild
Signed-off-by: Paul Healy <lmiphay@gmail.com>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/squeeze-alexa/Manifest2
-rw-r--r--media-sound/squeeze-alexa/squeeze-alexa-1.0.ebuild78
2 files changed, 0 insertions, 80 deletions
diff --git a/media-sound/squeeze-alexa/Manifest b/media-sound/squeeze-alexa/Manifest
index 9e966cd..add2d6d 100644
--- a/media-sound/squeeze-alexa/Manifest
+++ b/media-sound/squeeze-alexa/Manifest
@@ -1,4 +1,2 @@
AUX lms-status 176 BLAKE2B 8d9673108a4df8598c17578bd70db8638eeb78be56f5e7be131841745a7fe7ce3be6e091ab46d860c41d1e60604fbc6f9041662e9e1190255ec812ecf9cb0daa SHA512 f263891bb1be26dba7abc8305d9fc2ef294e2bbbae71a3631bfd23c22a088b84fb8ecc90a6b5abf7acaf854dc9653600e0f5e9c8aad5c4d59adb7cb6252f517e
-DIST squeeze-alexa-1.0.tar.gz 89415 BLAKE2B c115c5abcf72724e6ca5323ce4268e2b021dc91de4862ca558472d44a8943647acca48c274eb7c6b6234a727ff33f720bd8f10bbad28c8c0344b45489c3fc6f1 SHA512 a024282e62a7ac664d94ae5fa8a18ddc630a48aafa1147cb3ea29d12004426c17741d81a39ada8bb3bbd6c112bf7f6661b1d3229177093794ae41c2d6659d6fe
-EBUILD squeeze-alexa-1.0.ebuild 1727 BLAKE2B 4a0b7bdad80c2cffc93ae25ca5142253d792a3ebb383e7cd2ee931a89fd829c028662c001f8d8f1dd130366232b5d12d0306d8a9e326d69d087dce968b0d91c0 SHA512 55a13f2d3358e3a78c365f43571097233321766658bff7922754732b83b14c03bede921d77686320a9ad6c37960a4e0ce8002cc1f01ed348142331945cdd4e8a
EBUILD squeeze-alexa-20171216.ebuild 1553 BLAKE2B a6b85a4ee9e0ef679cc4e94d78a2d18d55bcc24f31c44084fc57c54cb0de95d52f35d1b75bd9b3efdb69ffc14bc3972adf2fe1910bacda3b0867cfa62a259cc7 SHA512 91b520a6d101900c6f6638bd401a45433a4330921f3c7bbbc63db92c783f3f11bfc3789e7dd4aa2f5e70d383b1061b5c02146367d5256f5a183c69ac78aa9e8a
diff --git a/media-sound/squeeze-alexa/squeeze-alexa-1.0.ebuild b/media-sound/squeeze-alexa/squeeze-alexa-1.0.ebuild
deleted file mode 100644
index 0c44538..0000000
--- a/media-sound/squeeze-alexa/squeeze-alexa-1.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=(python2_7 python3_6)
-
-inherit readme.gentoo-r1 eutils python-single-r1
-
-DESCRIPTION="Squeezebox integration for Amazon Alexa"
-HOMEPAGE="https://github.com/declension/squeeze-alexa"
-SRC_URI="https://github.com/declension/squeeze-alexa/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="mirror"
-
-RDEPEND="
- ${PYTHON_DEPS}
- dev-python/awscli[${PYTHON_USEDEP}]
- =dev-python/fuzzywuzzy-0.12.0[${PYTHON_USEDEP}]
- dev-python/lambda-uploader[${PYTHON_USEDEP}]
- net-analyzer/nmap[ncat]
- net-misc/stunnel
- virtual/logger
-"
-DEPEND="
- test? (
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/pytest-cov[${PYTHON_USEDEP}]
- dev-python/coverage[${PYTHON_USEDEP}]
- dev-python/flake8[${PYTHON_USEDEP}]
- )
- dev-python/setuptools[${PYTHON_USEDEP}]
- ${RDEPEND}
-"
-
-DOCS="
- README.md
- docs/HOWTO.md
- docs/TROUBLESHOOTING.md
- docs/squeeze-alexa-networking.png
- docs/squeeze-alexa-networking.xml
- etc/stunnel.conf
-"
-
-DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS="
-Support thread at:
- http://forums.slimdevices.com/showthread.php?107009-Announce-squeeze-alexa-DIY-secure-Alexa-integration
-"
-src_install() {
- python_domodule squeezealexa
- python_newscript bin/local_test.py ${PN}-local-test
-
- dobin ${FILESDIR}/lms-status
-
- insinto "/usr/share/${PN}"
- doins \
- handler.py \
- lambda.json
- doins -r metadata squeezealexa
-
- dodoc ${DOCS}
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
-
-python_test() {
- py.test -vv || die "Tests failed"
- flake8 --verbose --config="${S}"/setup.cfg "${S}"/squeezealexa
-}