[dev-python/pysoundfile] Bump for the not-a-release-just-a-tag v0.9.0.

This commit is contained in:
Nils "holgersson" Freydank 2017-03-31 16:57:00 +02:00
parent fb0084a944
commit 57a6fe2dda
No known key found for this signature in database
GPG Key ID: 389761F3E6B0AABE
2 changed files with 31 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST pysoundfile.0.8.0.tar.gz 1717737 SHA256 bee4fa0a4e991cfe3d56fe8fd5598a0bf3df82a59cb60ba9eb7832491521dd68 SHA512 efba0dd07d5c5e8a30b5c06ebd3fb344078783c800c8e01f5b72429e5f2353ac5f48470482956eec83ea948ad2e3a6b5521b48e405096f04f33144ac84776c15 WHIRLPOOL cb9da4ebccf7781ab977f200453c5d6a52b321dd288da6d4f04d5af9c703c5a4392d59afe9fff2d1c9df8892cb40728bccada621d8480e70c823c6bba768f517
DIST pysoundfile.0.9.0.tar.gz 3403841 SHA256 fb56e86985df6ca126af7627e870075320db177e5793f4fe2866c50e60f415fd SHA512 57d1e5d60a52a9d12044d95dee60459b9cfd69e8eca1a077bb3973e05b470d0ad615a91fbdff20b117fb760f88c014d66cea62d6bc5de7918cd9e1f94c555fc8 WHIRLPOOL bb66000d8dbf4292dce0e00f26d3aea63269cc4f1a7562d9fb8739578cf41b9e24d4216f304a1fb274faac0c36910838b11c49a3944b802ccba7a8b231661cb0

View File

@ -0,0 +1,30 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
inherit distutils-r1
MY_PN="PySoundFile"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="PySoundFile is an audio library based on libsndfile, CFFI, and NumPy"
HOMEPAGE="https://github.com/bastibe/PySoundFile"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${PN}.${PV}.tar.gz"
LICENSE="PySoundFile-BSD-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="dev-python/cffi
dev-python/numpy
media-libs/libsndfile"
S="${WORKDIR}/${MY_P}"
python_test() {
esetup.py test
}