Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyacoustid/
Date: Fri, 06 Jul 2018 22:58:47
Message-Id: 1530917663.aefa18a4b002a96c1a560d2bcabb1f692dd21256.asturm@gentoo
1 commit: aefa18a4b002a96c1a560d2bcabb1f692dd21256
2 Author: Diogo Pereira <sir.suriv <AT> gmail <DOT> com>
3 AuthorDate: Fri Jul 6 22:34:29 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 6 22:54:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aefa18a4
7
8 dev-python/pyacoustid: version bump to 1.1.5
9
10 Closes: https://bugs.gentoo.org/653966
11 Package-Manager: Portage-2.3.40, Repoman-2.3.9
12
13 dev-python/pyacoustid/Manifest | 1 +
14 dev-python/pyacoustid/pyacoustid-1.1.5.ebuild | 32 +++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/pyacoustid/Manifest b/dev-python/pyacoustid/Manifest
18 index 16fbea4bc06..b2cab13fe92 100644
19 --- a/dev-python/pyacoustid/Manifest
20 +++ b/dev-python/pyacoustid/Manifest
21 @@ -1 +1,2 @@
22 DIST pyacoustid-1.0.0.tar.gz 10476 BLAKE2B 363bf1bee4c124fc57126febf50c34a395ded074df8d3b9661b015b6b653f473ef79837f2078b7b21375d3b3624f75b1070d3c28ab3fa4d619e1ae088129898c SHA512 4eabf32e7d958bf7330e852184f5ddf3105007179ca2c45b75c1a5b0f0898649e703aa333cffccac85eb7b18b54255f2e5d588897adfb9f0ef2596e9c0b2fe5a
23 +DIST pyacoustid-1.1.5.tar.gz 11846 BLAKE2B 920894d914f5eac15bd62fab7a018937691e8eb7774fe65821bd6a8088e81dba19d178866bfd01b991750c6298714a1b51f948da987207a6adad1e0c1689afa4 SHA512 5b71446b9adbc73335b5962081e880365580b8e0aac746e8137e8819ba91d73ec41814eba13fd1b04c5bad5f2b5a3aaad57db118981ab4eac9dea12f709afe91
24
25 diff --git a/dev-python/pyacoustid/pyacoustid-1.1.5.ebuild b/dev-python/pyacoustid/pyacoustid-1.1.5.ebuild
26 new file mode 100644
27 index 00000000000..413c07cfff8
28 --- /dev/null
29 +++ b/dev-python/pyacoustid/pyacoustid-1.1.5.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python bindings for Chromaprint and the AcoustID web service"
41 +HOMEPAGE="https://pypi.org/project/pyacoustid/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="examples"
48 +
49 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
50 +RDEPEND="dev-python/audioread[${PYTHON_USEDEP}]
51 + dev-python/requests[${PYTHON_USEDEP}]
52 + media-libs/chromaprint"
53 +
54 +src_install() {
55 + distutils-r1_src_install
56 +
57 + if use examples ; then
58 + docinto examples
59 + dodoc aidmatch.py fpcalc.py
60 + docompress -x /usr/share/doc/${PF}/examples/
61 + fi
62 +}