1
0

dev-python/ffpyplayer: add 4.5.1

This commit is contained in:
Ryan Fox 2023-10-28 15:41:38 -07:00
parent 15e5ea83ea
commit fd62408fd8
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
3 changed files with 36 additions and 1 deletions

View File

@ -1,2 +1,3 @@
DIST ffpyplayer-4.4.0.gh.tar.gz 3695913 BLAKE2B be0c4063a108cbd637ffca0a9a73f41759b755486d46503bd8ccfbc84d42edffbfdb3fd5a9093708dff9c34b7493c90b1f6dacdce622226ae4bfcf8535b705b0 SHA512 da2cc2e81a7a21c4aeb6667756a645b3e3db82a66f998a3505d24f431306b113f60faae848a2e36c037c473414da0400be65e0844c081d9eb811de4d7d708b4e
DIST ffpyplayer-4.5.0.gh.tar.gz 3695929 BLAKE2B 0b1f48e510bf3ae89a87002f77d4eaae4537fb8f0e7596cf6078abca949c4966d786f58d54247bd9a8612e8e1eb2b9dbc9d999c98780dc041fc83ab8421dfd35 SHA512 63678f54ab16d0b3070f83c7ff84c4a99a0fbf7eb3130c0863064571e11d1061a407265e2d7f1096a9c782f8bf7b2c6baabf803fd2cb11fe76b83e8c1d9e318f
DIST ffpyplayer-4.5.1.gh.tar.gz 3696576 BLAKE2B bac0123d8292ee4cb8fb986dc09b8d3a53ea272caee1541e51f9101775cd515939be376e20c0670b11ea44b1827ebe0d3108cabc3c9c5755754a244ee7a6db77 SHA512 009a98e11e2c83121d0e6ac583ebbdfc9ca63fd6b9d41fbc66125558ae6e06aabba2c654b2354650c761a8fd197b904e5762f7d90830d53d4927b03c512764d8

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..12} )
inherit distutils-r1
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/matham/ffpyplayer.git"
else
SRC_URI="https://github.com/matham/ffpyplayer/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Python bindings for the FFmpeg media player"
HOMEPAGE="https://matham.github.io/ffpyplayer/"
LICENSE="LGPL-3"
SLOT="0"
DEPEND="
media-video/ffmpeg[postproc]
media-libs/libsdl2
media-libs/sdl2-mixer
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
distutils_enable_tests setup.py

View File

@ -3,8 +3,9 @@
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )
PYTHON_COMPAT=( python3_{8..12} )
inherit distutils-r1