From f70601e0934acd62f6c5d06c5ede4cc607179514 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 7 Jul 2018 11:42:03 +0100 Subject: gentoo resync : 07.07.2018 --- dev-python/pyacoustid/Manifest | 4 +++- dev-python/pyacoustid/metadata.xml | 11 ++++++++- dev-python/pyacoustid/pyacoustid-1.1.5.ebuild | 32 +++++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 dev-python/pyacoustid/pyacoustid-1.1.5.ebuild (limited to 'dev-python/pyacoustid') diff --git a/dev-python/pyacoustid/Manifest b/dev-python/pyacoustid/Manifest index 222ef5c5fcee..25ca9ad972b4 100644 --- a/dev-python/pyacoustid/Manifest +++ b/dev-python/pyacoustid/Manifest @@ -1,3 +1,5 @@ DIST pyacoustid-1.0.0.tar.gz 10476 BLAKE2B 363bf1bee4c124fc57126febf50c34a395ded074df8d3b9661b015b6b653f473ef79837f2078b7b21375d3b3624f75b1070d3c28ab3fa4d619e1ae088129898c SHA512 4eabf32e7d958bf7330e852184f5ddf3105007179ca2c45b75c1a5b0f0898649e703aa333cffccac85eb7b18b54255f2e5d588897adfb9f0ef2596e9c0b2fe5a +DIST pyacoustid-1.1.5.tar.gz 11846 BLAKE2B 920894d914f5eac15bd62fab7a018937691e8eb7774fe65821bd6a8088e81dba19d178866bfd01b991750c6298714a1b51f948da987207a6adad1e0c1689afa4 SHA512 5b71446b9adbc73335b5962081e880365580b8e0aac746e8137e8819ba91d73ec41814eba13fd1b04c5bad5f2b5a3aaad57db118981ab4eac9dea12f709afe91 EBUILD pyacoustid-1.0.0-r1.ebuild 651 BLAKE2B d49dfd64d56756094fdabe2866f4a16fd7c7d4668164c71b91974fd55ec9cddb243442f83d73d84a581bd7e7a8939aa1240b098e75bc6d1b55d119aacc2d74f2 SHA512 105d6c8f1274e15c43f381378ef73dd2aee258b5d5b44d64c0b1977fa08dfe7533b0a35f1a81d9b3e2ae3d9de5912a853ce4c7d513f80dc92cb7e31bcea69bf7 -MISC metadata.xml 589 BLAKE2B e410a92032724f5362d60f5066474afe5559e44fc859c2007c9a3d652c382264f5aa621b069ffe9ede7b3a3d6fd2c3cedc0db48727191f6ef494b640874121ec SHA512 2f98d93a642015c8eeed7879006d5b61a02a937c7846c8f10b636533ee4e4d323016bfd56885e7914b2cf861a0953a4d767d06833b9a3ea3104518184f91704e +EBUILD pyacoustid-1.1.5.ebuild 754 BLAKE2B be73fa3f3084aa6330d9c27a4ce7d2dc771c5c7b8b69044caf292df279c285ead7e0053cd3f9fdd6a2d057a81e4741771194ffff72b2b018e6565e9daaccc21d SHA512 9fe7c6a266d65d8443033319081b4d6574c03e85b0c66011ecbd29ce2f33695f6d6c0510aef64a779865ba08dc836779aa80f628fd65d8d877d93134e7bfe9d0 +MISC metadata.xml 911 BLAKE2B fc4c4a10000f8c9ebe95b4687cfa087b930b9f4ad3b2a94e8e6ef8e3d210ba618824cef6513ecedc4902172b3255b43096cd8e132b7e0a68498fc70b9b9bfb59 SHA512 fa81f319c0c6e6963e8b37570006e411374191551411005945dc64f0c75242a7585aab6830f13b527ab0efc7f2ce56e260571c372c93c8c026a775f49709cbee diff --git a/dev-python/pyacoustid/metadata.xml b/dev-python/pyacoustid/metadata.xml index cc75a3ff5170..2bc252775293 100644 --- a/dev-python/pyacoustid/metadata.xml +++ b/dev-python/pyacoustid/metadata.xml @@ -1,11 +1,20 @@ - + + sir.suriv@gmail.com + Diogo Pereira + + + proxy-maint@gentoo.org + Proxy Maintainers + Chromaprint and its associated Acoustid Web service make up a high-quality, open-source acoustic fingerprinting system. This package provides Python bindings for both the fingerprinting algorithm library, which is written in C but portable, and the Web service, which provides fingerprint lookups. pyacoustid + beetbox/pyacoustid + https://github.com/beetbox/pyacoustid/issues diff --git a/dev-python/pyacoustid/pyacoustid-1.1.5.ebuild b/dev-python/pyacoustid/pyacoustid-1.1.5.ebuild new file mode 100644 index 000000000000..413c07cfff86 --- /dev/null +++ b/dev-python/pyacoustid/pyacoustid-1.1.5.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for Chromaprint and the AcoustID web service" +HOMEPAGE="https://pypi.org/project/pyacoustid/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/audioread[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + media-libs/chromaprint" + +src_install() { + distutils-r1_src_install + + if use examples ; then + docinto examples + dodoc aidmatch.py fpcalc.py + docompress -x /usr/share/doc/${PF}/examples/ + fi +} -- cgit v1.2.3